diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..43f480c7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# http://editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 120 +trim_trailing_whitespace = true + +[*.md] +max_line_length = 0 +trim_trailing_whitespace = false + +[COMMIT_EDITMSG] +max_line_length = 0 diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..e6781473 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,15 @@ +workflow "Hyperion" { + on = "push" + resolves = ["Yarn tests"] +} + +action "Yarn install" { + uses = "docker://node:8" + args = "yarn install" +} + +action "Yarn tests" { + uses = "docker://node:8" + args = "yarn test" + needs = ["Yarn install"] +} diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..14b8177a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +singleQuote: true +trailingComma: es5 +printWidth: 120 diff --git a/__tests__/process/fixtures/0001.json b/__tests__/process/fixtures/0001.json index 665340a2..60d90b94 100644 --- a/__tests__/process/fixtures/0001.json +++ b/__tests__/process/fixtures/0001.json @@ -5,7 +5,11 @@ ], "id": "https://example.org/iiif/book1/manifest", "type": "Manifest", - "label": { "en": [ "Image 1" ] }, + "label": { + "en": [ + "Image 1" + ] + }, "items": [ { "id": "https://example.org/iiif/book1/canvas/p1", diff --git a/__tests__/process/fixtures/0001.ts b/__tests__/process/fixtures/0001.ts new file mode 100644 index 00000000..e7015a2a --- /dev/null +++ b/__tests__/process/fixtures/0001.ts @@ -0,0 +1,10 @@ +import { Manifest } from '../../../src'; +import json from './0001.json'; + +describe('process/fixtures/0001', () => { + test('fixture is correctly typed', () => { + const manifest: Manifest = json as Manifest; + + expect(manifest).toBeDefined(); + }); +}); diff --git a/__tests__/types/resources/annotation.ts b/__tests__/types/resources/annotation.ts index bc79ca11..30812d9a 100644 --- a/__tests__/types/resources/annotation.ts +++ b/__tests__/types/resources/annotation.ts @@ -1,576 +1,566 @@ -import {Annotation} from '../../../src/types/resources/annotation'; +import { Annotation } from '../../../src/types/resources/annotation'; describe('types/resources/annotations', () => { + test('it passes fixtures from W3C', () => { + const fixtures: Annotation[] = [ + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno1', + type: 'Annotation', + body: 'http://example.org/post1', + target: 'http://example.com/page1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno2', + type: 'Annotation', + body: { + id: 'http://example.org/analysis1.mp3', + format: 'audio/mpeg', + language: 'fr', + }, + target: { + id: 'http://example.gov/patent1.pdf', + format: 'application/pdf', + language: ['en', 'ar'], + textDirection: 'ltr', + processingLanguage: 'en', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno3', + type: 'Annotation', + body: { + id: 'http://example.org/video1', + type: 'Video', + }, + target: { + id: 'http://example.org/website1', + type: 'Text', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno4', + type: 'Annotation', + body: 'http://example.org/description1', + target: { + id: 'http://example.com/image1#xywh=100,100,300,300', + type: 'Image', + format: 'image/jpeg', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno5', + type: 'Annotation', + body: { + type: 'TextualBody', + value: "

j'adore !

", + format: 'text/html', + language: 'fr', + }, + target: 'http://example.org/photo1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno6', + type: 'Annotation', + bodyValue: 'Comment text', + target: 'http://example.org/target1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno7', + type: 'Annotation', + body: { + type: 'TextualBody', + value: 'Comment text', + format: 'text/plain', + }, + target: 'http://example.org/target1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno8', + type: 'Annotation', + target: 'http://example.org/ebook1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno9', + type: 'Annotation', + body: [ + 'http://example.org/description1', + { + type: 'TextualBody', + value: 'tag1', + }, + ], + target: ['http://example.org/image1', 'http://example.org/image2'], + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno10', + type: 'Annotation', + body: { + type: 'Choice', + items: [ + { + id: 'http://example.org/note1', + language: 'en', + }, + { + id: 'http://example.org/note2', + language: 'fr', + }, + ], + }, + target: 'http://example.org/website1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno11', + type: 'Annotation', + motivation: 'commenting', + body: { + type: 'TextualBody', + value: 'These pages together provide evidence of the conspiracy', + }, + target: { + type: 'Composite', + items: ['http://example.com/page1', 'http://example.org/page6', 'http://example.net/page4'], + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno12', + type: 'Annotation', + motivation: 'tagging', + body: { + type: 'TextualBody', + value: 'important', + }, + target: { + type: 'List', + items: [ + 'http://example.com/book/page1', + 'http://example.com/book/page2', + 'http://example.com/book/page3', + 'http://example.com/book/page4', + ], + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno13', + type: 'Annotation', + motivation: 'classifying', + body: 'http://example.org/vocab/art/portrait', + target: { + type: 'Independents', + items: [ + 'http://example.com/image1', + 'http://example.net/image2', + 'http://example.com/image4', + 'http://example.org/image9', + ], + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno14', + type: 'Annotation', + creator: 'http://example.org/user1', + created: '2015-01-28T12:00:00Z', + modified: '2015-01-29T09:00:00Z', + generator: 'http://example.org/client1', + generated: '2015-02-04T12:00:00Z', + body: { + id: 'http://example.net/review1', + creator: 'http://example.net/user2', + created: '2014-06-02T17:00:00Z', + }, + target: 'http://example.com/restaurant1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno15', + type: 'Annotation', + creator: { + id: 'http://example.org/user1', + type: 'Person', + name: 'My Pseudonym', + nickname: 'pseudo', + email_sha1: '58bad08927902ff9307b621c54716dcc5083e339', + }, + generator: { + id: 'http://example.org/client1', + type: 'Software', + name: 'Code v2.1', + homepage: 'http://example.org/client1/homepage1', + }, + body: 'http://example.net/review1', + target: 'http://example.com/restaurant1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno16', + type: 'Annotation', + audience: { + id: 'http://example.edu/roles/teacher', + type: 'schema:EducationalAudience', + 'schema:educationalRole': 'teacher', + }, + body: 'http://example.net/classnotes1', + target: 'http://example.com/textbook1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno17', + type: 'Annotation', + motivation: 'commenting', + body: 'http://example.net/comment1', + target: { + id: 'http://example.com/video1', + type: 'Video', + accessibility: 'captions', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno18', + type: 'Annotation', + motivation: 'bookmarking', + body: [ + { + type: 'TextualBody', + value: 'readme', + purpose: 'tagging', + }, + { + type: 'TextualBody', + value: 'A good description of the topic that bears further investigation', + purpose: 'describing', + }, + ], + target: 'http://example.com/page1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno19', + type: 'Annotation', + rights: 'https://creativecommons.org/publicdomain/zero/1.0/', + body: { + id: 'http://example.net/review1', + rights: 'http://creativecommons.org/licenses/by-nc/4.0/', + }, + target: 'http://example.com/product1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno20', + type: 'Annotation', + canonical: 'urn:uuid:dbfb1861-0ecf-41ad-be94-a584e5c4f1df', + via: 'http://other.example.org/anno1', + body: { + id: 'http://example.net/review1', + rights: 'http://creativecommons.org/licenses/by/4.0/', + }, + target: 'http://example.com/product1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno21', + type: 'Annotation', + body: { + type: 'SpecificResource', + purpose: 'tagging', + source: 'http://example.org/city1', + }, + target: { + id: 'http://example.org/photo1', + type: 'Image', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno22', + type: 'Annotation', + body: { + source: 'http://example.org/page1', + selector: 'http://example.org/paraselector1', + }, + target: { + source: 'http://example.com/dataset1', + selector: 'http://example.org/dataselector1', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno23', + type: 'Annotation', + body: { + source: 'http://example.org/video1', + purpose: 'describing', + selector: { + type: 'FragmentSelector', + conformsTo: 'http://www.w3.org/TR/media-frags/', + value: 't=30,60', + }, + }, + target: 'http://example.org/image1', + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno24', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/page1.html', + selector: { + type: 'CssSelector', + value: '#elemid > .elemclass + p', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno25', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/page1.html', + selector: { + type: 'XPathSelector', + value: '/html/body/p[2]/table/tr[2]/td[3]/span', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno26', + type: 'Annotation', + body: 'http://example.org/comment1', + target: { + source: 'http://example.org/page1', + selector: { + type: 'TextQuoteSelector', + exact: 'anotation', + prefix: 'this is an ', + suffix: ' that has some', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno27', + type: 'Annotation', + body: 'http://example.org/review1', + target: { + source: 'http://example.org/ebook1', + selector: { + type: 'TextPositionSelector', + start: 412, + end: 795, + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno28', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/diskimg1', + selector: { + type: 'DataPositionSelector', + start: 4096, + end: 4104, + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno29', + type: 'Annotation', + body: 'http://example.org/road1', + target: { + source: 'http://example.org/map1', + selector: { + id: 'http://example.org/svg1', + type: 'SvgSelector', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno30', + type: 'Annotation', + body: 'http://example.org/road1', + target: { + source: 'http://example.org/map1', + selector: { + type: 'SvgSelector', + value: ' ... ', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno31', + type: 'Annotation', + body: 'http://example.org/comment1', + target: { + source: 'http://example.org/page1.html', + selector: { + type: 'RangeSelector', + startSelector: { + type: 'XPathSelector', + value: '//table[1]/tr[1]/td[2]', + }, + endSelector: { + type: 'XPathSelector', + value: '//table[1]/tr[1]/td[4]', + }, + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno32', + type: 'Annotation', + body: 'http://example.org/comment1', + target: { + source: 'http://example.org/page1', + selector: { + type: 'FragmentSelector', + value: 'para5', + refinedBy: { + type: 'TextQuoteSelector', + exact: 'Selected Text', + prefix: 'text before the ', + suffix: ' and text after it', + }, + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno33', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/page1', + state: { + id: 'http://example.org/state1', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno34', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/page1', + state: { + type: 'TimeState', + cached: 'http://archive.example.org/copy1', + sourceDate: '2015-07-20T13:30:00Z', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno35', + type: 'Annotation', + body: 'http://example.org/description1', + target: { + source: 'http://example.org/resource1', + state: { + type: 'HttpRequestState', + value: 'Accept: application/pdf', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno36', + type: 'Annotation', + body: 'http://example.org/comment1', + target: { + source: 'http://example.org/ebook1', + state: { + type: 'TimeState', + sourceDate: '2016-02-01T12:05:23Z', + refinedBy: { + type: 'HttpRequestState', + value: 'Accept: application/pdf', + refinedBy: { + type: 'FragmentSelector', + value: 'page=10', + conformsTo: 'http://tools.ietf.org/rfc/rfc3778', + }, + }, + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno37', + type: 'Annotation', + stylesheet: 'http://example.org/style1', + body: 'http://example.org/comment1', + target: { + source: 'http://example.org/document1', + styleClass: 'red', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno38', + type: 'Annotation', + stylesheet: { + type: 'CssStylesheet', + value: '.red { color: red }', + }, + body: 'http://example.org/body1', + target: { + source: 'http://example.org/target1', + styleClass: 'red', + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno39', + type: 'Annotation', + body: 'http://example.org/comment1', + target: { + source: 'http://example.edu/article.pdf', + selector: 'http://example.org/selectors/html-selector1', + renderedVia: { + id: 'http://example.com/pdf-to-html-library', + type: 'Software', + 'schema:softwareVersion': '2.5', + }, + }, + }, + { + '@context': 'http://www.w3.org/ns/anno.jsonld', + id: 'http://example.org/anno40', + type: 'Annotation', + body: 'http://example.org/note1', + target: { + source: 'http://example.org/image1', + scope: 'http://example.org/page1', + }, + }, + ]; - test('it passes fixtures from W3C', () => { - const fixtures: Annotation[] = [ - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno1', - 'type': 'Annotation', - 'body': 'http://example.org/post1', - 'target': 'http://example.com/page1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno2', - 'type': 'Annotation', - 'body': { - id: 'http://example.org/analysis1.mp3', - format: 'audio/mpeg', - language: 'fr', - }, - 'target': { - id: 'http://example.gov/patent1.pdf', - format: 'application/pdf', - language: ['en', 'ar'], - textDirection: 'ltr', - processingLanguage: 'en', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno3', - 'type': 'Annotation', - 'body': { - id: 'http://example.org/video1', - type: 'Video', - }, - 'target': { - id: 'http://example.org/website1', - type: 'Text', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno4', - 'type': 'Annotation', - 'body': 'http://example.org/description1', - 'target': { - id: 'http://example.com/image1#xywh=100,100,300,300', - type: 'Image', - format: 'image/jpeg', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno5', - 'type': 'Annotation', - 'body': { - type : 'TextualBody', - value : '

j\'adore !

', - format : 'text/html', - language : 'fr', - }, - 'target': 'http://example.org/photo1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno6', - 'type': 'Annotation', - 'bodyValue': 'Comment text', - 'target': 'http://example.org/target1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno7', - 'type': 'Annotation', - 'body': { - type: 'TextualBody', - value: 'Comment text', - format: 'text/plain', - }, - 'target': 'http://example.org/target1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno8', - 'type': 'Annotation', - 'target': 'http://example.org/ebook1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno9', - 'type': 'Annotation', - 'body': [ - 'http://example.org/description1', - { - type: 'TextualBody', - value: 'tag1', - }, - ], - 'target': [ - 'http://example.org/image1', - 'http://example.org/image2', - ], - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno10', - 'type': 'Annotation', - 'body': { - type: 'Choice', - items: [ - { - id: 'http://example.org/note1', - language: 'en', - }, - { - id: 'http://example.org/note2', - language: 'fr', - }, - ], - }, - 'target': 'http://example.org/website1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno11', - 'type': 'Annotation', - 'motivation': 'commenting', - 'body': { - type: 'TextualBody', - value: 'These pages together provide evidence of the conspiracy', - }, - 'target': { - type: 'Composite', - items: [ - 'http://example.com/page1', - 'http://example.org/page6', - 'http://example.net/page4', - ], - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno12', - 'type': 'Annotation', - 'motivation': 'tagging', - 'body': { - type: 'TextualBody', - value: 'important', - }, - 'target': { - type: 'List', - items: [ - 'http://example.com/book/page1', - 'http://example.com/book/page2', - 'http://example.com/book/page3', - 'http://example.com/book/page4', - ], - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno13', - 'type': 'Annotation', - 'motivation': 'classifying', - 'body': 'http://example.org/vocab/art/portrait', - 'target': { - type: 'Independents', - items: [ - 'http://example.com/image1', - 'http://example.net/image2', - 'http://example.com/image4', - 'http://example.org/image9', - ], - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno14', - 'type': 'Annotation', - 'creator': 'http://example.org/user1', - 'created': '2015-01-28T12:00:00Z', - 'modified': '2015-01-29T09:00:00Z', - 'generator': 'http://example.org/client1', - 'generated': '2015-02-04T12:00:00Z', - 'body': { - id: 'http://example.net/review1', - creator: 'http://example.net/user2', - created: '2014-06-02T17:00:00Z', - }, - 'target': 'http://example.com/restaurant1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno15', - 'type': 'Annotation', - 'creator': { - id: 'http://example.org/user1', - type: 'Person', - name: 'My Pseudonym', - nickname: 'pseudo', - email_sha1: '58bad08927902ff9307b621c54716dcc5083e339', - }, - 'generator': { - id: 'http://example.org/client1', - type: 'Software', - name: 'Code v2.1', - homepage: 'http://example.org/client1/homepage1', - }, - 'body': 'http://example.net/review1', - 'target': 'http://example.com/restaurant1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno16', - 'type': 'Annotation', - 'audience': { - 'id': 'http://example.edu/roles/teacher', - 'type': 'schema:EducationalAudience', - 'schema:educationalRole': 'teacher', - }, - 'body': 'http://example.net/classnotes1', - 'target': 'http://example.com/textbook1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno17', - 'type': 'Annotation', - 'motivation': 'commenting', - 'body': 'http://example.net/comment1', - 'target': { - id: 'http://example.com/video1', - type: 'Video', - accessibility: 'captions', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno18', - 'type': 'Annotation', - 'motivation': 'bookmarking', - 'body': [ - { - type: 'TextualBody', - value: 'readme', - purpose: 'tagging', - }, - { - type: 'TextualBody', - value: 'A good description of the topic that bears further investigation', - purpose: 'describing', - }, - ], - 'target': 'http://example.com/page1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno19', - 'type': 'Annotation', - 'rights': 'https://creativecommons.org/publicdomain/zero/1.0/', - 'body': { - id: 'http://example.net/review1', - rights: 'http://creativecommons.org/licenses/by-nc/4.0/', - }, - 'target': 'http://example.com/product1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno20', - 'type': 'Annotation', - 'canonical': 'urn:uuid:dbfb1861-0ecf-41ad-be94-a584e5c4f1df', - 'via': 'http://other.example.org/anno1', - 'body': { - id: 'http://example.net/review1', - rights: 'http://creativecommons.org/licenses/by/4.0/', - }, - 'target': 'http://example.com/product1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno21', - 'type': 'Annotation', - 'body': { - type: 'SpecificResource', - purpose: 'tagging', - source: 'http://example.org/city1', - }, - 'target': { - id: 'http://example.org/photo1', - type: 'Image', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno22', - 'type': 'Annotation', - 'body': { - source: 'http://example.org/page1', - selector: 'http://example.org/paraselector1', - }, - 'target': { - source: 'http://example.com/dataset1', - selector: 'http://example.org/dataselector1', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno23', - 'type': 'Annotation', - 'body': { - source: 'http://example.org/video1', - purpose: 'describing', - selector: { - type: 'FragmentSelector', - conformsTo: 'http://www.w3.org/TR/media-frags/', - value: 't=30,60', - }, - }, - 'target': 'http://example.org/image1', - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno24', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/page1.html', - selector: { - type: 'CssSelector', - value: '#elemid > .elemclass + p', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno25', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/page1.html', - selector: { - type: 'XPathSelector', - value: '/html/body/p[2]/table/tr[2]/td[3]/span', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno26', - 'type': 'Annotation', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.org/page1', - selector: { - type: 'TextQuoteSelector', - exact: 'anotation', - prefix: 'this is an ', - suffix: ' that has some', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno27', - 'type': 'Annotation', - 'body': 'http://example.org/review1', - 'target': { - source: 'http://example.org/ebook1', - selector: { - type: 'TextPositionSelector', - start: 412, - end: 795, - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno28', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/diskimg1', - selector: { - type: 'DataPositionSelector', - start: 4096, - end: 4104, - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno29', - 'type': 'Annotation', - 'body': 'http://example.org/road1', - 'target': { - source: 'http://example.org/map1', - selector: { - id: 'http://example.org/svg1', - type: 'SvgSelector', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno30', - 'type': 'Annotation', - 'body': 'http://example.org/road1', - 'target': { - source: 'http://example.org/map1', - selector: { - type: 'SvgSelector', - value: ' ... ', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno31', - 'type': 'Annotation', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.org/page1.html', - selector: { - type: 'RangeSelector', - startSelector: { - type: 'XPathSelector', - value: '//table[1]/tr[1]/td[2]', - }, - endSelector: { - type: 'XPathSelector', - value: '//table[1]/tr[1]/td[4]', - }, - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno32', - 'type': 'Annotation', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.org/page1', - selector: { - type: 'FragmentSelector', - value: 'para5', - refinedBy: { - type: 'TextQuoteSelector', - exact: 'Selected Text', - prefix: 'text before the ', - suffix: ' and text after it', - }, - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno33', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/page1', - state: { - id: 'http://example.org/state1', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno34', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/page1', - state: { - type: 'TimeState', - cached: 'http://archive.example.org/copy1', - sourceDate: '2015-07-20T13:30:00Z', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno35', - 'type': 'Annotation', - 'body': 'http://example.org/description1', - 'target': { - source: 'http://example.org/resource1', - state: { - type: 'HttpRequestState', - value: 'Accept: application/pdf', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno36', - 'type': 'Annotation', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.org/ebook1', - state: { - type: 'TimeState', - sourceDate: '2016-02-01T12:05:23Z', - refinedBy: { - type: 'HttpRequestState', - value: 'Accept: application/pdf', - refinedBy: { - type: 'FragmentSelector', - value: 'page=10', - conformsTo: 'http://tools.ietf.org/rfc/rfc3778', - }, - }, - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno37', - 'type': 'Annotation', - 'stylesheet': 'http://example.org/style1', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.org/document1', - styleClass: 'red', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno38', - 'type': 'Annotation', - 'stylesheet': { - type: 'CssStylesheet', - value: '.red { color: red }', - }, - 'body': 'http://example.org/body1', - 'target': { - source: 'http://example.org/target1', - styleClass: 'red', - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno39', - 'type': 'Annotation', - 'body': 'http://example.org/comment1', - 'target': { - source: 'http://example.edu/article.pdf', - selector: 'http://example.org/selectors/html-selector1', - renderedVia: { - 'id': 'http://example.com/pdf-to-html-library', - 'type': 'Software', - 'schema:softwareVersion': '2.5', - }, - }, - }, - { - '@context': 'http://www.w3.org/ns/anno.jsonld', - 'id': 'http://example.org/anno40', - 'type': 'Annotation', - 'body': 'http://example.org/note1', - 'target': { - source: 'http://example.org/image1', - scope: 'http://example.org/page1', - }, - }, - ]; - - fixtures.forEach((fixture: Annotation, n) => { - expect(fixture).toBeDefined(); - }); - + fixtures.forEach((fixture: Annotation, n) => { + expect(fixture).toBeDefined(); }); - + }); }); diff --git a/__tests__/types/resources/manifest.ts b/__tests__/types/resources/manifest.ts new file mode 100644 index 00000000..4f8f7736 --- /dev/null +++ b/__tests__/types/resources/manifest.ts @@ -0,0 +1,120 @@ +import { Manifest } from '../../../src'; + +import ghentManifest from '../../../fixtures/2-to-3-converter/manifests/ghent-university-manifest.json'; +import blManifest from '../../../fixtures/2-to-3-converter/manifests/british-library-manifest.json'; +import princetonManifest from '../../../fixtures/2-to-3-converter/manifests/princeton-manifest.json'; +import ncsuManifest from '../../../fixtures/2-to-3-converter/manifests/ncsu-libraries-manifest.json'; +import nlwNewspaper from '../../../fixtures/2-to-3-converter/manifests/nlw-newspaper-manifest.json'; +import nlwManuscript from '../../../fixtures/2-to-3-converter/manifests/nlw-manuscript-manifest.json'; + +describe('types/manifest', () => { + describe('Manifests converted from Presentation 2', () => { + test('British Library', () => { + const manifest: Manifest = blManifest as Manifest; + + expect(manifest).toBeDefined(); + + expect(manifest.items[0].seeAlso).toEqual([ + { + format: 'application/xml', + id: 'https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001', + label: { '@none': ['ALTO XML'] }, + profile: 'https://www.loc.gov/standards/alto/', + type: 'Dataset', + }, + { + format: 'text/plain', + id: 'https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001', + label: { '@none': ['Plain text OCR'] }, + type: 'Dataset', + }, + ]); + }); + + test('Ghent University Library', async () => { + const manifest: Manifest = ghentManifest as Manifest; + + expect(manifest).toBeDefined(); + + expect(manifest.label).toEqual({ + '@none': ['Document uit het archief van de dichter Dioskoros van Aphrodite (?)[manuscript]'], + }); + }); + + test('NCSU Libraries manifest', () => { + const manifest = ncsuManifest as Manifest; + + expect(manifest).toBeDefined(); + + const idPrefix = 'https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/'; + + expect(manifest.items[0].annotations).toEqual([ + { + id: idPrefix + 'nubian-message-1992-11-30_0001-annotation-list-word.json', + label: { '@none': ['Text of this page (word level)'] }, + type: 'AnnotationPage', + }, + { + id: idPrefix + 'nubian-message-1992-11-30_0001-annotation-list-line.json', + label: { '@none': ['Text of this page (line level)'] }, + type: 'AnnotationPage', + }, + { + id: idPrefix + 'nubian-message-1992-11-30_0001-annotation-list-paragraph.json', + label: { '@none': ['Text of this page (paragraph level)'] }, + type: 'AnnotationPage', + }, + ]); + }); + + test('NLW Manuscript manifest', () => { + const manifest: Manifest = nlwManuscript as Manifest; + + expect(manifest).toBeDefined(); + + expect(manifest.logo).toEqual([ + { + id: 'https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg', + service: [ + { + '@context': ' http://iiif.io/api/image/2/context.json', + id: ' https://damsssl.llgc.org.uk/iiif/2.0/image/logo', + profile: ' http://iiif.io/api/image/2/level1.json', + type: 'Service', + }, + ], + type: 'Image', + }, + ]); + }); + + test('NLW Newspaper manifest', () => { + const manifest: Manifest = nlwNewspaper as Manifest; + + expect(manifest).toBeDefined(); + + const annotationPage = manifest.items[0].annotations; + + expect(annotationPage).toBeDefined(); + + expect(annotationPage![0].partOf).toEqual([ + { + id: 'http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json', + label: { '@none': ['OCR Article Text'] }, + type: 'AnnotationCollection', + }, + ]); + }); + + test('Princeton manifest', () => { + const manifest: Manifest = princetonManifest as Manifest; + + expect(manifest).toBeDefined(); + + expect(manifest.requiredStatement).toEqual({ + label: { '@none': ['Attribution'] }, + value: { '@none': ['Provided by the Blue Mountain Project at Princeton University'] }, + }); + }); + }); +}); diff --git a/__tests__/utility/iiif-traverse-test.ts b/__tests__/utility/iiif-traverse-test.ts new file mode 100644 index 00000000..99ac1f3a --- /dev/null +++ b/__tests__/utility/iiif-traverse-test.ts @@ -0,0 +1,108 @@ +import { Traverse } from '../../src/utility/iiif-traverse'; +import { Manifest } from '../../src'; +import { Canvas } from '../../src/types/resources/canvas'; + +describe('utility/iiif-traverse', () => { + const manifest: Manifest = { + '@context': ['http://www.w3.org/ns/anno.jsonld', 'http://iiif.io/api/presentation/{{ page.major }}/context.json'], + id: 'https://example.org/iiif/book1/manifest', + type: 'Manifest', + label: { en: ['Image 1'] }, + items: [ + { + id: 'https://example.org/iiif/book1/canvas/p1', + type: 'Canvas', + height: 1800, + width: 1200, + items: [ + { + id: 'https://example.org/iiif/book1/page/p1/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/iiif/book1/annotation/p0001-image', + type: 'Annotation', + motivation: 'painting', + body: { + id: 'http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png', + type: 'Image', + format: 'image/png', + height: 1800, + width: 1200, + }, + target: 'https://example.org/iiif/book1/canvas/p1', + }, + ], + }, + ], + }, + ], + }; + + test('it can traverse simple manifest', () => { + const canvasList: string[] = []; + const annotationList: string[] = []; + const traversal = new Traverse({ + canvas: [ + currentCanvas => { + canvasList.push(currentCanvas.id); + return currentCanvas; + }, + ], + annotation: [ + currentAnnotation => { + annotationList.push(currentAnnotation.id); + return currentAnnotation; + }, + ], + }); + + traversal.traverseManifest(manifest); + + expect(canvasList).toEqual(['https://example.org/iiif/book1/canvas/p1']); + expect(annotationList).toEqual(['https://example.org/iiif/book1/annotation/p0001-image']); + }); + + test('it can deference manifests canvases', () => { + const canvasMap: { [id: string]: Canvas } = {}; + const traversal = new Traverse({ + canvas: [ + currentCanvas => { + canvasMap[currentCanvas.id] = currentCanvas; + return { id: currentCanvas.id, type: 'Canvas' }; + }, + ], + }); + + const newManifest = traversal.traverseManifest(manifest); + + expect(newManifest.items).toEqual([ + { + id: 'https://example.org/iiif/book1/canvas/p1', + type: 'Canvas', + }, + ]); + }); + + test('it can traverse all', () => { + const ids: string[] = []; + const traversal = Traverse.all( + (resource: any): any => { + if (resource.id) { + ids.push(resource.id); + } + return resource; + } + ); + + traversal.traverseManifest(manifest); + + expect(ids).toEqual([ + 'https://example.org/iiif/book1/manifest', + 'https://example.org/iiif/book1/canvas/p1', + 'https://example.org/iiif/book1/page/p1/1', + 'https://example.org/iiif/book1/annotation/p0001-image', + 'http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png', + ]); + }); +}); diff --git a/fixtures/2-to-3-converter/annotation-pages/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__list__p0001-0025.json b/fixtures/2-to-3-converter/annotation-pages/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__list__p0001-0025.json new file mode 100644 index 00000000..d90c8619 --- /dev/null +++ b/fixtures/2-to-3-converter/annotation-pages/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__list__p0001-0025.json @@ -0,0 +1,36 @@ +{ + "type": "AnnotationPage", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json", + "items": [ + { + "motivation": "classifying", + "type": "Annotation", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025/1", + "target": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025#xywh=9912,13519,2583,2663", + "body": { + "@id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025/1/1", + "language": "ja", + "format": "text/html", + "type": "TextualBody", + "value": "
大日如來
(仏・如來)
目の数: 二目 : 白毫無 持物: 輪宝 , 臂数: 二臂 台座: 蓮華 , 光背: 炎光 , 顔の向き: 正面
タグ付け担当: 永崎研宣
" + } + }, + { + "motivation": "classifying", + "type": "Annotation", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025/2", + "target": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025#xywh=8457,11791,5583,6317", + "body": { + "@id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025/2/1", + "language": "ja", + "format": "text/html", + "type": "TextualBody", + "value": "
八葉院
(曼荼羅)
目の数: 二目 : 白毫無 臂数: 二臂
タグ付け担当: 永崎研宣
" + } + } + ], + "@context": [ + "http://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/annotation-pages/iiif.io__api__presentation__2.0__example__fixtures__list__65__list1.json b/fixtures/2-to-3-converter/annotation-pages/iiif.io__api__presentation__2.0__example__fixtures__list__65__list1.json new file mode 100644 index 00000000..767af0cc --- /dev/null +++ b/fixtures/2-to-3-converter/annotation-pages/iiif.io__api__presentation__2.0__example__fixtures__list__65__list1.json @@ -0,0 +1,36 @@ +{ + "label": { + "@none": ["Test 65 List 1"] + }, + "type": "AnnotationPage", + "id": "http://iiif.io/api/presentation/2.0/example/fixtures/list/65/list1.json", + "items": [ + { + "motivation": "painting", + "type": "Annotation", + "id": "https://example.org/uuid/12badf4b-9e14-4076-a63b-cb5fb4cc2e22", + "target": { + "selector": { + "value": "xywh=225,70,750,150", + "type": "FragmentSelector" + }, + "type": "SpecificResource", + "source": { + "label": { + "@none": ["Test 65 Canvas: 1"] + }, + "type": "Canvas", + "id": "http://iiif.io/api/presentation/2.0/example/fixtures/canvas/65/c1.json" + } + }, + "body": { + "type": "TextualBody", + "value": "Top of First Page to Display" + } + } + ], + "@context": [ + "http://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/annotation-pages/ocr.lib.ncsu.edu__ocr__nu__nubian-message-1992-11-30_0010__nubian-message-1992-11-30_0010-annotation-list-paragraph.json b/fixtures/2-to-3-converter/annotation-pages/ocr.lib.ncsu.edu__ocr__nu__nubian-message-1992-11-30_0010__nubian-message-1992-11-30_0010-annotation-list-paragraph.json new file mode 100644 index 00000000..5815b097 --- /dev/null +++ b/fixtures/2-to-3-converter/annotation-pages/ocr.lib.ncsu.edu__ocr__nu__nubian-message-1992-11-30_0010__nubian-message-1992-11-30_0010-annotation-list-paragraph.json @@ -0,0 +1,363 @@ +{ + "@label": "OCR text granularity of paragraph", + "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": [ + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/715,678,813,88", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=715,678,813,88", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "November 30, 1992" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/714,822,865,350", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=714,822,865,350", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Halloween... Aggie Style!" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/707,1247,580,590", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=707,1247,580,590", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Slammin’! North Carolina A & T’s homecomming was stacked with top talent from the hip—hop in- dustry; for all of you who missed it, it was all that!" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/699,1867,585,982", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=699,1867,585,982", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Musical flavors for all tastes were present on the Aggies’ cam- pus, as four different groups gave live per- formances (not includ- ing R. Kelley,the pre- vious night.) It was Halloween and Pete Rock & C. L. Smooth stormed the stage wearing masks to open things up." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/868,2865,404,50", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=868,2865,404,50", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "After the soul" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/696,2941,577,122", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=696,2941,577,122", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "brothers frOm M t . V e r n o n" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/695,3089,577,61", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=695,3089,577,61", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "“Straighted It Out,”" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/697,3165,618,62", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=697,3165,618,62", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "sultry songstress Ce Ce ‘" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/678,3243,594,1914", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=678,3243,594,1914", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Peniston took the stage. She had the floor j umpin g with her smash hit, “Finally,” and swooned the crowd with slow fa- vorites such as “As We Lay” by Shirley Murdock. She defi- nitely came off. She was looking good too. Speaking of looks, the next group, TLC, would have had you thinking their name stood for “They Look Corny,” because they sure did. Of all the groups, they were the only gig that got no props. The songs were alright, but they lacked stage skills, and the ploys they used were juvenile. Oh, Well." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1344,1256,590,1450", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1344,1256,590,1450", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Any defeciencies TLC left were made up for, and then some, by the next group, Naughty By Nature. The bad boys from 1 18th Streetrocked the house. They per- formed old hits, as well as two slammin’ new hits off their new a1- bumdue outnext year. Old school lyricist Freddie Foxx was with Treach and his crew. He got busy overa beat box and dropped bombs. They both get much dap." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1334,2722,585,600", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1334,2722,585,600", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "All in all, Home- coming was the joint. People came in peace and everybody en- joyed the show. State was deep, so if you missed it, check it out next year. Peace" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1337,3413,363,50", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1337,3413,363,50", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Glenn French" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1338,3568,260,48", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1338,3568,260,48", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Freshman" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1760,682,879,94", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1760,682,879,94", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "The Nubian Message" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2956,677,848,74", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2956,677,848,74", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Entertainment 10" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2026,826,1828,277", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2026,826,1828,277", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Sister Souljah... ...A Sister with a Cause." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1992,1339,589,1207", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1992,1339,589,1207", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Sister Souljah, rap artist, lecturer and activist, drops bombs every time she opens her mouth. She puts the fury and frustra- tion of our people into words with a style and eloquence few speak- ers can achieve. When addressingourpeople, she refers to us as “Af- ricans” for our lost brothers and sisters who have forgotten their roots." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1981,2574,590,1756", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1981,2574,590,1756", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Born Lisa Williamson in Englewood, New Jer- sey, Souljah grew up on welfare in a public housing project. De- termined not to letpov- erty hold her back, she won many scholar- ships while in high school and attended Rutgers University. While she was there, she was also involved in many community activities. Her wealth of knowledge caught the attention of rapper Carlton Ridenhour, a.k.a. Chuck D. This incident resulted in the birth of Sister Souljah’s rap career." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/1975,4346,588,749", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=1975,4346,588,749", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Souljah has lec- tured all over the world. The Soviet Union, Spain and Zim- babwe are just a few of the countries she has toured. Since 1986, she has founded two youth organizations, coordinated numerous" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2640,1265,586,676", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2640,1265,586,676", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "youth conferences and established a free six- week summer camp for homeless children. Souljah has also ap- peared on numberous talk shows such as Oprah, Donahue and Geraldo; her" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2641,1972,597,127", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2641,1972,597,127", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "arguements were solid! She states, “my" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2660,2108,574,54", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2660,2108,574,54", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "studies make me se-" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/2616,3193,614,1917", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=2616,3193,614,1917", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "cure intellectually, so that nobody can get me on Nightline and have me start wobbling.” Sister Souljah speaks for her people, in her lectures as well as on her records. Fa- mous for saying “We are at war,” in her de- but on Terminator X ’5 single, Buckwilin’. Since then it has be- come her slogan. President elect, Bill Clinton did not know “who he was messin’ with” when he took her comments on the riot out of context and called her racist. Millions of people got the chance to hear Souljah take on the press and in the end," + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3290,1268,581,362", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3290,1268,581,362", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "they all got served. She further ex- plains why she cannot be called a racist in her work. Take this ex-" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3288,1656,577,139", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3288,1656,577,139", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "cerpt from “360 De- grees of Power:”" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3450,2074,431,60", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3450,2074,431,60", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Black racist," + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3300,2149,510,121", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3300,2149,510,121", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Black racist, Black racists!" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3289,2298,595,526", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3289,2298,595,526", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "No Black person or group ofBlack people any place in the world had the power to deny white people or Euro- peans access to any- thing." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3280,2839,596,446", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3280,2839,596,446", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "What can you call me? Call me preju- dice, because I pre- judge situations based on my understanding of history." + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3273,3300,594,992", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3273,3300,594,992", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "Some of the Indians trusted white people. If you ask any brother or sitster today how many Native Ameri- cans do they know, they’ll tell you that they don't know any. Whit e people killed them and they did so in the name of friend- ship, civilization and Christianty!" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/3271,4461,443,211", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=3271,4461,443,211", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "-- Jeff Hudgens and . Glenn French" + } + }, + { + "motivation": "painting", + "type": "Annotation", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph/4564,191,74,1175", + "target": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010#xywh=4564,191,74,1175", + "body": { + "format": "text/plain", + "type": "TextualBody", + "value": "a. _...L,,_._r,fl_,., 7 “ _.—,...._‘.—...rq,‘ ,r m\" ‘ 1\"”. m mwnz-yrfp‘j‘fflw, mr mm W. . Gym“ ‘ am “new r—rr" + } + } + ], + "@context": [ + "http://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/collections/iiif.io__api__presentation__2.1__example__fixtures__collection.json b/fixtures/2-to-3-converter/collections/iiif.io__api__presentation__2.1__example__fixtures__collection.json new file mode 100644 index 00000000..62a41493 --- /dev/null +++ b/fixtures/2-to-3-converter/collections/iiif.io__api__presentation__2.1__example__fixtures__collection.json @@ -0,0 +1,417 @@ +{ + "label": { + "@none": ["Collection of Test Cases"] + }, + "type": "Collection", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "items": [ + { + "label": { + "@none": ["Test 1 Manifest: Minimum Required Fields"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json" + }, + { + "label": { + "@none": ["Test 2 Manifest: Metadata Pairs"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/2/manifest.json" + }, + { + "label": { + "@none": ["Test 3 Manifest: Metadata Pairs with Languages"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/3/manifest.json" + }, + { + "label": { + "@none": [ + "Test 4 Manifest: Metadata Pairs with Multiple Values in same Language" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/4/manifest.json" + }, + { + "label": { + "@none": ["Test 5 Manifest: Description field"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/5/manifest.json" + }, + { + "label": { + "@none": ["Test 6 Manifest: Multiple Descriptions"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/6/manifest.json" + }, + { + "label": { + "@none": ["Test 7 Manifest: Rights Metadata"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/7/manifest.json" + }, + { + "label": { + "@none": ["Test 8 Manifest: SeeAlso link / Manifest"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/8/manifest.json" + }, + { + "label": { + "@none": ["Test 9 Manifest: Service link / Manifest"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/9/manifest.json" + }, + { + "label": { + "@none": ["Test 10 Manifest: Service link as Object"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/10/manifest.json" + }, + { + "label": { + "@none": ["Test 11 Manifest: ViewingDirection: l-t-r"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/11/manifest.json" + }, + { + "label": { + "@none": ["Test 12 Manifest: ViewingDirection: r-t-l"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/12/manifest.json" + }, + { + "label": { + "@none": ["Test 13 Manifest: ViewingDirection: t-t-b"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/13/manifest.json" + }, + { + "label": { + "@none": ["Test 14 Manifest: ViewingDirection: b-t-t"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/14/manifest.json" + }, + { + "label": { + "@none": ["Test 15 Manifest: ViewingHint: paged"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/15/manifest.json" + }, + { + "label": { + "@none": ["Test 16 Manifest: ViewingHint: continuous"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/16/manifest.json" + }, + { + "label": { + "@none": ["Test 17 Manifest: ViewingHint: individuals"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/17/manifest.json" + }, + { + "label": { + "@none": ["Test 18 Manifest: Non Standard Keys"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/18/manifest.json" + }, + { + "label": { + "@none": ["Test 19 Manifest: Multiple Canvases"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/19/manifest.json" + }, + { + "label": { + "@none": ["Test 20 Manifest: Multiple Sequences"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/20/manifest.json" + }, + { + "label": { + "@none": ["Test 21 Manifest: Sequence with Metadata"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/21/manifest.json" + }, + { + "label": { + "@none": [ + "Test 22 Manifest: /Sequence/ with non l-t-r viewingDirection" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/22/manifest.json" + }, + { + "label": { + "@none": ["Test 23 Manifest: /Sequence/ with non paged viewingHint"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/23/manifest.json" + }, + { + "label": { + "@none": ["Test 24 Manifest: Image with IIIF Service"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/24/manifest.json" + }, + { + "label": { + "@none": ["Test 25 Manifest: Image with IIIF Service, embedded info"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/25/manifest.json" + }, + { + "label": { + "@none": ["Test 26 Manifest: Image different size to Canvas"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/26/manifest.json" + }, + { + "label": { + "@none": ["Test 27 Manifest: No Image"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/27/manifest.json" + }, + { + "label": { + "@none": ["Test 28 Manifest: Choice of Image"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/28/manifest.json" + }, + { + "label": { + "@none": ["Test 29 Manifest: Choice of Image with IIIF Service"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/29/manifest.json" + }, + { + "label": { + "@none": ["Test 30 Manifest: Main + Detail Image"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/30/manifest.json" + }, + { + "label": { + "@none": ["Test 31 Manifest: Detail with IIIF Service"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/31/manifest.json" + }, + { + "label": { + "@none": ["Test 32 Manifest: Multiple Detail Images"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/32/manifest.json" + }, + { + "label": { + "@none": ["Test 33 Manifest: Detail Image with Choice"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/33/manifest.json" + }, + { + "label": { + "@none": [ + "Test 34 Manifest: Detail Image with Choice, and 'no image' as option" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/34/manifest.json" + }, + { + "label": { + "@none": ["Test 35 Manifest: Partial Image as Main Image"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/35/manifest.json" + }, + { + "label": { + "@none": [ + "Test 36 Manifest: Partial Image as Main Image with IIIF Service" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/36/manifest.json" + }, + { + "label": { + "@none": ["Test 37 Manifest: Partial Image as Detail Image"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/37/manifest.json" + }, + { + "label": { + "@none": [ + "Test 38 Manifest: Partial Image as Detail Image with IIIF Service" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/38/manifest.json" + }, + { + "label": { + "@none": ["Test 39 Manifest: Image with CSS Rotation"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/39/manifest.json" + }, + { + "label": { + "@none": ["Test 40 Manifest: Multiple Languages for Metadata Labels"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/40/manifest.json" + }, + { + "label": { + "@none": ["Test 41 Manifest: Main Image with Server side Rotation"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/41/manifest.json" + }, + { + "label": { + "@none": ["Test 43 Manifest: Embedded Transcription on Canvas"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/43/manifest.json" + }, + { + "label": { + "@none": [ + "Test 44 Manifest: Embedded Transcription on Fragment Segment" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/44/manifest.json" + }, + { + "label": { + "@none": [ + "Test 45 Manifest: External text/plain Transcription on Canvas" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/45/manifest.json" + }, + { + "label": { + "@none": [ + "Test 46 Manifest: External text/plain Transcription on Segment" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/46/manifest.json" + }, + { + "label": { + "@none": ["Test 47 Manifest: Embedded HTML Transcription on Canvas"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/47/manifest.json" + }, + { + "label": { + "@none": ["Test 48 Manifest: Embedded HTML Transcription on Segment"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/48/manifest.json" + }, + { + "label": { + "@none": ["Test 51 Manifest: Embedded Comment on a Canvas"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/51/manifest.json" + }, + { + "label": { + "@none": ["Test 52 Manifest: Embedded Comment on a Segment"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/52/manifest.json" + }, + { + "label": { + "@none": ["Test 54 Manifest: Comment in HTML"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/54/manifest.json" + }, + { + "label": { + "@none": [ + "Test 61 Manifest: Embedded Transcription on Selector Segment" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/61/manifest.json" + }, + { + "label": { + "fr": ["62: quelque titre"], + "en": ["62: some title"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/62/manifest.json" + }, + { + "label": { + "@none": ["Test 63 Manifest: Description in Multiple Languages"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/63/manifest.json" + }, + { + "label": { + "@none": ["Test 64 Manifest: Description in HTML"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/64/manifest.json" + }, + { + "label": { + "@none": ["Test 65 Manifest: Sequence with startCanvas"] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/65/manifest.json" + } + ], + "@context": [ + "http://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/british-library-manifest.json b/fixtures/2-to-3-converter/manifests/british-library-manifest.json new file mode 100644 index 00000000..2246083b --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/british-library-manifest.json @@ -0,0 +1,34470 @@ +{ + "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" + }, + { + "@context": "http://universalviewer.io/context.json", + "profile": "http://universalviewer.io/share-extensions-profile", + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "@context": "http://universalviewer.io/context.json", + "profile": "http://universalviewer.io/feedback-extensions-profile", + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "@context": "http://universalviewer.io/context.json", + "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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000002", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000003", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000004", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000005", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000006", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000008", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000009", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000010", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000011", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000012", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000013", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000014", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000015", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000016", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000017", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000018", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000019", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000020", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000021", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000022", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000023", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000024", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000025", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000026", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000027", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000028", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000029", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000030", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000031", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000032", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000033", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000034", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000035", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000036", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000037", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000038", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000039", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000040", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000041", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000042", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000043", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000044", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000045", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000046", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000047", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000048", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000049", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000050", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000051", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000052", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000053", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000054", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000055", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000056", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000057", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000058", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000059", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000060", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000061", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000062", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000063", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000064", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000065", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000066", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000067", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000068", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000069", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000070", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000071", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000072", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000073", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000074", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000075", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000076", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000077", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000078", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000079", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000080", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000081", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000082", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000083", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000084", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000085", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000086", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000087", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000088", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000089", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000090", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000091", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000092", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000093", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000094", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000095", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000096", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000097", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000098", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000099", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000ED", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000100", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000101", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000102", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000103", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000104", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000105", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000106", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000107", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000108", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000109", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000110", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000111", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000112", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000113", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000114", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000115", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000116", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000117", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000118", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000119", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000120", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000121", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000122", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000123", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000124", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000125", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000126", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000127", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000128", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000129", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000130", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000131", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000132", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000133", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000134", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000135", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000136", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000137", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000138", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000139", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000140", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000141", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000142", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000143", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000144", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000145", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000146", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000147", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000148", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000149", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000150", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000151", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000152", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000153", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000154", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000155", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000156", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000157", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000158", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000159", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000160", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000161", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000162", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000163", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000164", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000165", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000166", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000167", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000168", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000169", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000170", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000171", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000172", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000173", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000174", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000175", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000176", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000177", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000178", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000179", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000180", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000181", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000182", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000183", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000184", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000185", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000186", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000187", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000188", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000189", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000190", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000191", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000192", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000193", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000194", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000195", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000196", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000197", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000198", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000199", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019A", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019B", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019C", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019D", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019E", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019F", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BE", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BF", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C0", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C1", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C2", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C3", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C4", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C5", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C6", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C7", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C8", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C9", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CA", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CB", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CC", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CD", + "body": { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [1, 2, 4, 8, 16], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/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": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json b/fixtures/2-to-3-converter/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json new file mode 100644 index 00000000..1035e49a --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json @@ -0,0 +1,187 @@ +{ + "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": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json b/fixtures/2-to-3-converter/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json new file mode 100644 index 00000000..d302e855 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json @@ -0,0 +1,237 @@ +{ + "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": [ + { + "@context": "http://iiif.io/api/annex/services/physdim/1/context.json", + "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": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "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" + } + ], + "@context": "http://iiif.io/api/presentation/2/context.json", + "label": { + "@none": ["Current Page Order"] + } + } + ], + "@context": [ + "http://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json b/fixtures/2-to-3-converter/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json new file mode 100644 index 00000000..d62d3304 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json @@ -0,0 +1,1406 @@ +{ + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394#xywh=3949,994,1091,1232", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395#xywh=2618,927,1080,1224", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406#xywh=3953,927,1078,1045", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407#xywh=2632,881,1091,1024", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414#xywh=3928,956,1093,1381", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415#xywh=2683,925,1046,1333", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428#xywh=4053,964,1096,1051", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429#xywh=2695,938,1087,1025", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441#xywh=4007,970,1094,1064", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442#xywh=2758,974,1044,1046", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445#xywh=4005,963,1089,1085", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446#xywh=2726,970,1097,1080", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449#xywh=4077,1028,1055,1015", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450#xywh=2904,956,1030,1008", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542#xywh=4064,1409,976,1026", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543#xywh=2843,1384,990,1039", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549#xywh=4067,2816,961,1027", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550#xywh=2864,2853,1000,1074", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720#xywh=5025,2529,1058,1045", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721#xywh=1093,2503,1085,1060", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776#xywh=4865,2140,1053,1168", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777", + "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": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777#xywh=1019,2146,1077,1185", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json b/fixtures/2-to-3-converter/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json new file mode 100644 index 00000000..a517c012 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json @@ -0,0 +1,119 @@ +{ + "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": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/ghent-university-manifest.json b/fixtures/2-to-3-converter/manifests/ghent-university-manifest.json new file mode 100644 index 00000000..fcda18ec --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/ghent-university-manifest.json @@ -0,0 +1,260 @@ +{ + "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": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "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": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json b/fixtures/2-to-3-converter/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json new file mode 100644 index 00000000..48702e1e --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json @@ -0,0 +1,21077 @@ +{ + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e878cc78-acd3-43ca-ba6e-90a392f15891.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f1ed064-a972-4215-b884-d8d658acefc5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/483ff8ec-347d-4070-8442-dbc15bc7b4de.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d67f1f5-de3f-4f66-8a7d-5063687dd47f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/902c2463-102b-4724-a027-5225e6357a79.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a6cc2017-2315-433f-8eca-51fef5185dbc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f698b098-4701-4aed-946f-659ba4852e4c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f60c45-2254-4b07-9e73-fa045e70deb6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3af0daec-1908-44bc-be53-67654b7c3bf6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b699ce7-482d-47fc-a354-21ee3a4e3a4b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/edd8f68a-9267-475c-800e-2c384d90fc96.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d687b8ef-03e1-41a0-81d0-b024987d6922.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b97eb53-7354-46ea-a84c-3565c9221b2c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c2889c4-cc23-4e74-b45d-2c4368540fe5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/34dc4c0d-8df7-4070-982b-6feac01f6d41.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14fdefa7-21ca-4a3f-a734-b462da5ed45c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/790f4240-9750-4818-8a62-4a88e83e7ab2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e546c5b-afdf-44ed-b574-1f061940cb60.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d3066c0-5cab-4eb0-98f4-1fef57b9f632.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1d35f596-ed13-4d02-afaa-7beec1d539bf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c8413d3-c0bc-4f02-99d9-78dc5b903b99.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1ba1e06-75d6-4b20-bada-cba1ba659ce4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/186de141-8d8b-4637-9779-065a303c4b12.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/05606664-4645-4abf-ba16-74225b1d8e23.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/86a14eac-dc28-466b-b2f8-51b85b6da34b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f450caed-3c81-4d89-8592-3873a94aa24e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fa46cb8-25ee-474b-8c9e-ef3744c941ad.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/44ec358c-6f78-427d-90b4-797eff650fc2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b262168d-25aa-40b4-b97a-3b2b12ee8559.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07b53a5f-8284-4f01-bc10-b07b209de587.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdfee01-b1bb-4058-a7ba-b7d5094531b6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/82332e64-2b88-44a0-b0db-575f5a69e792.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3fd58f09-a557-474a-8bbe-e4285fa07924.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4119f000-d428-4ce1-931a-6b9cd536e7ad.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9015af7-3102-48cc-9762-4b89a43be3b4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c93830b-4b65-4409-834f-8fa981199391.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae1e526a-1f25-4769-ba47-85ae64ba5398.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b417dae-563e-4979-b7b3-01dbc04c3eb1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9eca0d37-4be9-4a84-83be-3632d44da497.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/31db4047-5e15-4deb-b223-7ba50e4b4768.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff18a11f-8279-40d0-b0f6-5ac927450a5f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13981981-06ab-4a06-b1a1-03f116611651.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f3c83ac-96e0-490f-bb03-230cf9bda636.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20664711-ce82-4902-8377-c6921c636ed4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b96119d-e918-4422-be90-361c69c073ef.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b27846a-997a-415a-a247-96d540382297.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/523d1f67-77de-4c03-8197-a1a44d4ae603.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d5062cd-2fdb-489a-85a1-cb3f25b65580.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1847e26-5868-4bbd-a2c2-27d8d7e311fe.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c67e4a1-38a4-445f-857a-932b2fb68fbe.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25def92b-6d81-465a-8379-0e6e6192a170.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea481325-9eb4-4d72-a151-336497e75ec9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/822c146e-6a8e-4054-8604-002754c6b8d5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d25b8d8-126a-45fe-9cb9-279474adaa1f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e5af115-4046-45bc-8898-005904db75af.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48df43ef-7e0a-47c5-b6d7-0548ab1125e7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf1feb36-a333-4f19-9375-8ece6f65fce8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89e6b355-aaac-48ef-8c6f-bc95f3e91d32.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/802877e2-e416-4d0e-8752-28c3cf454509.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950375fa-947f-48b5-b89f-7d72ab9127b5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3d72c265-de4e-40ef-9416-261b896fec88.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8113d484-f571-4932-8b97-19481c4ed672.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92cbd746-0be3-4a8f-b171-32002d1a5ccf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e9bbfbba-3ccf-4394-93ca-1ad762a14306.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/220f5b54-b5cc-44b8-b472-0aa1c9027b6b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e1ee61-0d7d-4db3-87d3-e151dec37126.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89a700b6-b2e1-47c5-bb2b-a242d1448bdb.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8636713f-4abb-43ae-8726-f6d29e25616f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d45ce-4233-410c-b8ef-c784b40ff2a5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1c31639-6855-4f67-8c0b-e26f05a78067.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8992a925-c4b0-469b-9c29-9a81d0686991.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65590e28-eab8-43d6-8c16-3d46dcce17db.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b8d283f4-66de-4ad4-903d-87f6eb8878c9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1ab1f99e-a754-424a-99bd-892013f7af0e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b289ce-4edf-419a-a6f7-fd1be93f6c66.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bbacd88a-bb40-47ae-baca-2ff2e0b6e884.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29360df0-35dc-4e70-b825-5a693212d18f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/00ecc695-d5c6-4ea1-84ae-114abb587f6f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0767f8f7-b613-4614-a152-6fb51fab8ecf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9c9b500-ad8b-4f7c-833d-acdeaca0af98.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a6fa90f-b630-47d9-9e00-d0a205dc33fa.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b0509f89-952a-49e9-ac53-e8690dda763e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1dfcd9c-6550-4023-ac69-9a7403e8ec10.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7cf22052-f342-4d71-af24-5413a106ca2b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e875c2ab-534a-498c-a85e-7fe405df620a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee935938-4b97-4f03-b1c2-6b2596bcc82f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/826dd0f3-0d2e-4e58-8a6c-807746337d02.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/06cedddd-8253-45f9-ad0b-2605a13d176e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92e67504-dd42-4263-af44-30774c63150b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee144a5f-9c3e-4711-a200-a5358ddac2ea.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c5106dd-6355-4c66-97cf-cf30a852999e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a30b97ed-e348-4b70-a55b-252062172178.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef117d19-e1e7-4b6b-ab73-93e2f4838d05.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453018ba-9857-4cab-9a23-5c5277bb5f65.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0cbc733c-a00b-4d64-b027-7f4773707f2c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e2716e7-be34-4d43-9647-f8787fb990e6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03818fac-9ba6-4382-b339-e27a0a075f31.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/976740dd-7304-4603-ad61-2476cf6a2645.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d04440d1-b322-49a3-a6db-7d9a1a345628.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08f87bea-9079-4b80-a898-e31f39e47d3a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/367872af-4672-480a-8d35-5e69687cb531.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdfd0e06-a5c2-4509-98cb-845c2a2efd87.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a268f689-fab8-452d-99e1-85b2cb333175.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b536060-32eb-40d8-bf58-85e38413a838.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e7dea5-64a4-4567-9b29-15ff2182c8bb.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f467df5c-b11b-4a62-888f-b42d11d1e604.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a48d309e-de6c-4e29-b759-5b8f57ed1f00.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b06c824-c01d-4a0c-8a2b-214f2128bfe7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f33b4860-8394-4527-9ccf-81e0233cd363.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa0f198-456f-41ab-a767-451d6b4d9264.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91907681-e425-4106-9d0b-413910441063.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/851bcd6a-06aa-4742-bdbb-5e0426833c45.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8462d708-1ecf-46f1-bcf5-4e9d64225101.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/abce65d9-73d4-43ae-8225-52b43a19505a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53e8014a-2f29-4883-b01b-bcc258656518.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a77b52d9-e29f-4246-b30f-20e3b0e327f2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58eaefe1-3d82-417d-bf75-4a65a2fef4cc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92bf74ac-d4e6-4547-9e51-3159afa5f351.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cd5f179b-dbff-4bb3-9676-0422e83ae574.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b82193d2-d8b7-41eb-910f-95ceaa86f6ec.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ea5e42a-b298-453e-9b4b-d1d4621db9b5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/085671a2-79ba-4107-bb09-834faac8c430.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/15f7a804-dd81-4f80-9f0d-c72b36559f9f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/85e0444f-887b-4a10-8928-629a83a36efd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f31aeade-af54-4354-9ad1-70ed644478ae.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/94c85481-e2d7-4568-bc6a-395dc297ba89.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/45640175-527d-4315-849d-390ff253a3bc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1246128f-12cf-4639-b89e-92a1dc78cec2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/771b0cba-8e3b-4d19-8aad-f3879096ce68.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/254a94e4-4e78-4a9c-99eb-e4df93799f87.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d4427886-add8-437f-a00d-37bfffb4b543.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4105a5e6-0018-40a7-9d97-1eb086addb89.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dde5f6c3-1297-44cd-bea1-9e7e12d79a56.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30258ea7-a5c9-40c8-b91c-e535cbee39f1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/74babfe7-e1fa-4287-befc-021f79e9bf33.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/117746be-fd53-48ce-9600-e0ef7e848c1e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66237a15-ee4c-464f-8515-5441ed89feab.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b77da291-35b8-4400-b241-0b74dbdb3d75.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a8cab02a-e2d8-44fc-9646-3b38e98edcb6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5273966-5b5e-4ac3-be64-b4df4a6cd205.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/094b84b0-f4e7-4d15-ba0e-b469315332a1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ac11a4d3-92fa-4452-8e98-6fdc6375db4c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee570022-ee63-4628-8e4c-6f5024897e88.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f87045b1-4d8b-4114-9497-2cdd8c31f3dc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66d688d2-cec6-4291-8ab6-d6669349ab73.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/69e7f100-4717-4b99-931e-d037ebf5d890.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d2a4a641-e693-4743-ad86-caa1bf0bda54.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1fdeed11-7905-41d7-9975-553d49866162.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/70b3f8c6-c512-47aa-b687-028f57a64046.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff3348f1-b786-4e82-89bf-6647fd05bb47.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d925f250-7c89-44f8-8662-af40406aa47f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b73ac0d8-df67-49d2-bd2e-e39fec952206.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbb46301-41e9-454e-a840-88eb40c6d238.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef76ad43-bc72-465b-b321-3b4082ad81bd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83c01a22-b7dc-4215-89f9-b59807babd6d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dd0bac6b-31af-437c-b9ea-7f481804628b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/203483da-3249-486f-b3e6-7e14fb740485.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b025cd5-0558-4800-aecd-2c5b87d04648.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/879c13a0-4ecc-4bb6-a466-69e4c5e4597e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed9f5bcb-1264-4342-81ed-c88227fdfa8c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113c7197-3de9-4c77-8a90-f616cba6157f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/043a94c4-674a-49ae-9b95-4ebde547a032.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ace2569d-08c0-4dfa-9c72-a5fa66214f54.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/32cbd67a-230a-45ad-94a0-5a6136827c7e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453c3280-3449-498d-afb3-525cbd9fcbaa.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/784aa20a-1650-4df6-83d2-d0018d169d51.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/376ad1e4-70e2-4071-a0c5-c23005a67835.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/63270542-6cf5-4f07-b2b0-3366e45ca8d2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ddd128d5-781b-41fd-9616-65126df52c05.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8456c7e8-fdfa-440a-b34d-397aae400abf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6dc28ac6-3eb3-48ba-b282-bd008d53815c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3ff689eb-99b6-4ad7-a4e5-c2265aafb155.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bce11d66-e900-4caa-aad3-67b21bc197d8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b74055a5-96a7-456b-bc22-c55c1eb04c0a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e26f5b63-20e6-470d-8a36-1613731f9202.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66bc1133-fd0b-459e-923d-8f972d0f44e1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a328191-9de6-41f7-89bd-3c9bd9e06fda.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4bd7efe-afbc-482a-837b-1aef57dfc71f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6caf822d-61c1-48c3-b0c9-6f00a9d921a4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6c68cbbf-e96b-4c67-9cc1-59b84e801e72.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1d7142c-0f87-4011-a90b-5f4a6674a818.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fdd8227b-38ac-4f5e-8bcb-14f2003b7444.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c62d1002-a1ea-45a3-b118-63767f775bf4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9ba222e5-5411-4f89-adbb-427a09c85a94.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b85682d-65a5-42bd-9167-1dadb92bbb87.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/968417ce-dbef-4699-8506-b834ff8a8f8f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b32087a-4c41-4f42-807e-c70e0fbfdde3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14577d89-7870-4cf2-9e0e-e4da260a1ddf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cf2c111-509a-4b21-bf60-9a860d318417.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22e05588-d791-4221-8060-588540e81600.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e84dff7d-c976-4767-8cca-1f1aa4662d7b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa7ea78-d36c-454d-bc1a-e4702be9c150.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/93ab32ff-33ee-4254-a2e5-fc626ee6a269.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869939b0-f33d-48b8-8d05-8ad21f362ac2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff41b966-4b8e-4707-aca5-3c2162096321.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/50c79586-fc14-4a2b-a1d2-3c92f22a7de3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/151ad0cc-75d6-4cb9-9496-34c108c96f28.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/799c3b26-7fbd-417b-b4c6-bd1f347ca247.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76f2b721-e64a-415f-9c0e-35f0956e8e85.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48780b63-490f-4a6c-b884-2d820d075797.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bcd27edc-c3f6-4066-8cfc-8bfbecb41305.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e2cc20dd-e129-4523-8cf8-607b839152f5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6020fdf-b2fe-4431-8219-7d28486b1cf3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b55c06c4-8257-4242-9eac-a8dce32925bf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bc84e4e-278c-4436-a9e6-83505373f58a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8975ddf1-8759-443e-94e8-0b1b0a9712a5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a7171a7-b61a-4205-a185-3fbd542ca6f9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9246f68e-e343-43a3-8c2d-8bf996ce78f3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b255579-8008-4df1-9331-9e7d447c37f9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bceda3e-6d14-45ac-9a8e-fb7e508db901.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4486af6a-0bb1-4431-8aed-bb033595c3f2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6b43d070-4256-45cb-8f3d-abeeb039c812.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36d1a96e-cb8d-4307-b52b-664f4de05013.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/279ec11d-1a8d-4c03-89a8-23ebb56cecc4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/198a9d85-ebd5-4c54-85ed-5b35ea8ab769.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02d26c72-4aec-45f5-9b06-e261c6eb223a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3e8bc8-9ce3-464d-896a-bde50efb17cd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a4772862-fbc7-49fd-895e-2c1261eecb3e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe42a5f-46d9-49f1-8882-7bc52d6465c5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/16019dd7-f485-46d0-889f-09e82612c1b4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aca3eb32-1e70-42f1-94a7-f3a15e192ae8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22082bf2-2aa8-474d-9ea3-056899ba5b24.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4e627ac1-d00e-4a05-83b6-073f4845da0d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebeaf616-0117-4b13-9d9a-2922d93887a3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5951fd7b-f02f-4520-853f-b4d420ecf830.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c11bd76-bac8-4ded-ae17-5710b8cda7a1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/206b95a6-6a3c-4315-80d8-c03cd0a340cd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2856114b-97df-420f-b2dd-a20aca6e847f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b4f651a-e60c-48a3-a679-0c235eda9587.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/41fdfdf6-4be7-42bb-b134-804defa9758c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cf91903-8ded-4c8a-9cad-9d75d15d823a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/67ad3eb8-c53b-48b1-b21c-c9a871399a9c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cc638fc-8104-4d89-a953-c789d1f8d709.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a7e5fda3-3b6a-4af5-9254-8dd3afb07670.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ca9ee054-cf28-4bee-998d-eaf372526204.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fade45dd-a622-4c78-b53f-cddb598620b5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f4ba98e6-ba36-4488-acf1-4decd3d63a3d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea9617f9-2156-44c6-a8ec-2200b1bd7409.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6bad1574-ed46-461c-96fc-850e964842de.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13cdbedb-edde-49e6-8753-fb79763b8ce1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1e4412e-4a43-4f9b-8698-896ec9f040fc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/965053fc-952c-4b68-afe4-a1703c40bd17.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/39428e8c-780a-4e80-916a-01cab71dd240.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b3f95fd-1c07-4941-8144-9d1994c5d20d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8885585a-d77f-4d6b-a23a-61f81a84c964.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b37de8bd-c54f-464d-812a-2d4bfec37cb6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1aee3d82-0566-4fa6-9432-5536ae94c15f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5956bc98-d5cd-4fe2-9e37-03461d4694ba.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49ba497d-9d51-44fe-a09b-1b8e82f9248a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e190612-6f1f-44f9-b57c-6616c1ed529e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b967cdd-f32f-4104-b5db-ad5780e0607a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25155359-022b-4a49-a1b9-e68373579eea.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52bb594e-b23b-4e82-80fb-c03ce144c2d0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/95be1c13-f77a-4982-918c-e6dd06696d11.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fd7ff25a-c14c-455b-8de2-bf0843b22155.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/832c218b-edfc-48cd-9774-b2b74fe74977.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dfd92e5a-e995-4273-9c3e-710c37259d98.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f539557d-23aa-497d-afca-dfd78a6bfbe2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e70b4a3d-13fe-43f2-a3f5-26fa63028923.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fa3663b9-d6fa-4006-bb1c-612054be67ca.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8579d21a-da6a-4214-b889-bc93047db96d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/585b4d74-22b4-423d-8a58-337482d1571b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cff5cf70-0c2b-43ff-b473-93f7818f4251.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/875496d5-57ea-48f8-af6f-90846e8c023e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c7889b9c-6172-47e9-a147-5820c56981db.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9fc4371b-fa5a-4095-ad62-b55153fbc6f3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bf756a1-684d-4ddc-a9da-30eee210399f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3054518c-2199-44f9-a268-6e79d1fa8657.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4affb95b-9f12-43f6-8dc1-6eba18749c23.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/444b2254-b73a-4b69-befe-fd93f45e4fdc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/778e0ff2-7758-4862-a7d7-c471540332e7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77dac026-f7f9-41b3-82dc-e76406c407d0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52a46e68-40fc-492e-9adf-33ce4d840217.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9baf653-e405-4ef2-9ee6-e5e95b633b99.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76119670-1005-47e0-8967-11720d15de95.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab32e855-8f56-4cce-992d-a5eaebcb33ff.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/04a8371d-6cc6-4994-ab92-70513827a491.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/097cbaa1-0cdc-40ca-964c-7cb1c3af1893.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dec21ff8-d64b-44a2-b96e-236a6d9a981f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5de9f01-1d6f-41e8-b867-004ea887cc15.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff96ac09-c73b-410f-9cda-39ab1f18ecb1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cedaa258-3a7a-4d61-9a25-acd63925e44b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b298de49-dd25-49e3-9011-8f2591ec92e0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4ed8c63a-948a-494a-9e59-b62dd338dac9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03746518-3148-43df-8a4e-cc37fb356290.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/10d93369-5e10-4ec7-b98f-e5597ef46aa4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fe2248d-ed9e-4c80-864e-4585a04a0cf7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/78e2130a-0431-47d3-b322-c680f4fa321e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e9eaf53-d78f-406c-9e4d-05e5caa37678.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/448ca725-b4ed-468e-9b2c-db8c1ed8335e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/de1e6901-772c-47ac-afd0-4614a15390ec.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bf46ca62-8e4c-4c56-b2e7-55962807b5ee.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2107e134-6e1f-43c5-ad19-8ae9bd955388.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88df527e-4d42-478d-81f4-223b6b741d34.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/33f6373c-42f5-44d5-bc00-fb73341ac4a0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48e368a1-e825-403d-a0d6-91d7c0c33a13.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f6a0228-de63-4c98-8443-461314967f6b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7ce033bc-cbde-4509-968a-d5f43a1e29bb.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/870057dc-dc28-487c-b04b-1aa07edbc7fc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b6d73f-ea20-4993-a6b9-a786caf1f395.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1f6036fd-96f8-430d-92c4-b5e670b9b16b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49244b3f-5ebc-466a-9261-d40b21a7ae90.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd73063b-34b8-4c3f-9ae0-75a20b874d2e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/193ee4b5-d970-4c61-bc30-4c0d9fe6a390.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a13e95a-392d-4e33-9640-89f7bec42bbc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c709111-e6ba-4956-a9d7-8166a8fa5789.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/17a11ad6-713e-40cd-9e35-587b6a10644b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef780cca-7be2-466d-8d8a-9b2b88003dd8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be4fb4f0-8f2a-4911-bee1-13e1740e11a8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4568fea1-fcc1-42e9-a141-a41636c2116a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/da92904c-8e36-43b1-ad23-6b1df79617d0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d61c8df-92d7-4c3f-a361-b973f15fb143.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36bb6b6d-90be-4069-9ce4-a55254873e8e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e0c03bd-7c48-43dc-a539-5c00705fa30c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bba7b2b-bf90-4099-8d01-38e9998978b4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/377816e8-8bc6-4a00-bc02-70258da7064f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/295299a3-2cc8-41cc-8f0c-223bbb09ce31.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f04f24-e275-4976-9833-b461d97f8054.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7703e3c2-cdc7-4630-b9ae-58b2546f87a7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b14ff899-3c15-4ce5-8493-a61de6372eb9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f653faf-a469-41cc-9e8e-4f239bf6b416.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cace0a20-d73c-4782-a0db-3ee278bce098.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d270d231-d27e-41a3-9741-2ab9f64d74c3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d587f6d-db5c-4cdb-a553-5c89cd80945b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453553bc-6f70-4af4-b5ec-63cffc34afb4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fc2704ee-7cce-47a9-b61d-30d7b84f24a6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2c6718c4-37eb-4306-9ede-63262c552560.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fcf48a8-df38-4105-a1ac-a72389a3962c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ff0babf-32a8-43b3-85b7-01f6db041514.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48f4fd33-d2dc-4a8e-83de-557059be254c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/277a81e7-601e-4db2-9bca-b1713c252a9f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bff4cf4-4517-489f-aef9-e5d1cf96bca9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113d21b5-b695-4a8d-b545-1cc88c5982da.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/37a6b1ce-48d8-4833-8c20-51f02f9031a2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bf038e7-59a4-44fb-9945-fc0e5b5497ca.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f903e1-749f-4008-a0d0-bbfc8dcae28a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f89c1cc-af59-4e75-8195-161a526a7995.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a87038c7-0051-4bc3-bb08-30235894e466.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e0db442c-c1be-4879-8186-3f67ac604746.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3189fa7f-94c4-4507-8f74-4cb482a783f6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20109674-6efd-422c-85c1-2ecaaf9bb403.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe7e4e0-b71e-41c3-9afc-f39fcd894379.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e8f2c426-cbfc-4e4a-9b45-25c5920905bd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43b4e9d1-554b-4fb4-83ec-7b5770f1f289.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b1a4ea95-d428-43ef-a439-908428de8db9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28e8b37-5b6f-4198-b9ca-c119a800cff6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90dcd298-ac5b-4963-9cfa-1b250e86e0ff.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28c296b-154d-4f78-80e5-89f1c2735098.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4daeb8ad-e8e4-4f62-ac11-511d42b275bf.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5f731c1a-b1fb-4f91-b9c1-711c0473ea77.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8fb52868-c2b4-4191-bc07-bb14afbd631e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8379aff4-2cc4-4476-9118-46473d9da261.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ba501afe-ea8c-433e-a4f0-261e8c6899f9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aa954489-b8f6-4239-bd29-2f27b0cd18ca.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46a7f026-cf8e-462b-81b0-d5e6385d2c00.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e531f57a-eb3e-4faa-954a-10b50437c5c9.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2303b00b-3588-4d11-955b-5ef6b84bc403.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1a827be-9987-47e7-a855-f6c8765f5b42.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/01954b32-44c1-4443-a8c3-67b8a2282e9d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671742d4-099a-4012-a96e-36bbdcbb0ae1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fb8b863-a5f9-42a7-b340-d34f4fbde10a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4a9a8a9-e976-4017-a100-8ba99858b520.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65073074-f7cf-4e8b-aef0-a9c2558d9cb6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58496061-8a46-4319-926a-d52e0d35eadc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/492f6aac-46ff-48dc-af9b-2418a9907d4b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91aaa075-1c4e-4e0e-a255-d78cae041f65.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a801f766-44ec-45b7-8c6a-070ac61a97cc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4b4e1e3-db94-42d0-b767-0b26fd2806b0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950da988-0d97-4852-9cd3-bf7053a61283.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e881d1c-c508-4aa8-b554-14c6f22cbff3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83335519-6006-4050-b21c-9c37fb699535.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fddb4ff-c322-450f-92bd-80a5af2a87aa.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ba9a6a3-9e97-49ec-867f-26df66c2dd61.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/633d7599-0af4-4753-86cc-c8a0065772dd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be21b29f-3eb8-4a40-b2bb-2e167d574802.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0822b70a-024b-4bfb-90c7-e3a67bea345a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0da74f-42e8-4d68-8a98-26fe0ae064b2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/856ca501-43af-426b-b676-45c050b88479.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7321541a-9fcb-4504-acb4-5cbe791a223c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5811e126-2d82-4a14-ba43-42e9d2436ab0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/80bacb57-0b6b-4099-afae-84c87babe6a6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aabd80b7-f357-4167-8912-82a574750734.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/614febd4-71d3-49ab-9fd7-4306ecfe38f0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d7c3470-ee46-4c48-abbe-93c5e0f085a3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/029fe17b-9026-4c23-b85f-b7a8465396f7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6a23cd9b-0f30-4146-9207-adceac5312e0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12f8c777-0542-4152-8067-b07f801fe87d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/994d2cee-0892-4921-a20b-704ee84e8aa3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38510524-62e2-4de0-95da-607aa2d4522e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b3c9f33-1a79-46d1-9be4-68949bc94ae6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/541d9f74-856a-4f73-8f3b-9dbb2cfe0083.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a8871b3-10cd-42cf-a7ee-14ce216c3234.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/947b462e-8bfe-43f7-95fa-cfa00ba44250.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/afae2f7d-4d83-4961-b979-f8521cd884cb.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fdf5e83-ab4a-4e13-b921-8a664ee994bd.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29667798-095b-4b04-9022-1b23f35d9b3d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9f012d79-d177-48bf-86cf-87bc8e376c17.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a11ee5a-b965-4591-9cec-c67ce94f65c1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08be2da0-b456-4f58-83dd-d26636312512.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9f32fc9-3f62-4352-acb3-f41918f78811.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46637303-db5c-4f5c-a62e-776f7a96cf4b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d7161165-f474-4ae2-b2eb-1f76ce1c3481.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/181530f3-678f-4e4e-9344-5c41e9a17b3b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/159961f2-68f3-4072-8553-521fe57091f3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/57fb9a56-5702-492f-9a6c-9b84b1bc23a1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c22b962-3f90-4c3b-9b84-4f53444cad18.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/252a097b-2e29-432a-91db-b984346a2d5d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d08de2e9-67c2-426c-ab67-2cfb19315f6a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9b8b251-07ee-4514-95ad-222cc07f1395.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ae40103-7423-4720-87f6-f004a3c1003c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebe237d0-726d-4f40-af59-a22b0aa33162.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdc7366-7dc6-48c8-a9f5-9f443fc82344.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1290d5c-d329-4ac6-9207-e727828aad02.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88e9c3c8-dc28-41b2-aacc-84501a0ba950.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1e05c89-3146-4707-a113-2177cd2d7721.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30765071-bfad-403f-82e9-6054e29cd0f6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4292fcef-5b16-4db7-965e-ec1000981e36.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fb308b92-4133-4537-a7ae-6a29932e7e7e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fed2cb4-6388-488a-bae4-2cc79d50b999.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/116da7b6-2529-4213-a6bc-957324894cc7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e566db5-2055-4b47-bed1-8cc702dce658.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c3d4877b-f955-4245-8638-1ffb57e2b538.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbecf64d-e37b-4601-9797-d631a04335b6.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77073d61-71a4-47c6-b322-8a29db67cb44.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/503f6921-6b38-46f2-bc5a-30a2001da52a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bc1a0fce-2804-4700-b367-e2ae2a6bafac.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9a7ae841-f0b0-4ed6-b618-a564bd043086.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c03701e6-722e-4f4a-b779-8860fb0185bc.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bda32605-ed71-45b9-b3df-8816dd6d2665.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a16f7b6d-3d86-452e-bb33-9e660259b39b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c8773604-9b45-4b67-adbd-827b68292616.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f0d2fc41-40a9-4b00-b95c-54f044e95e49.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cc69ec01-fe98-4775-ac0c-e7472208fa62.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bcb2f8-1b00-4f4c-967a-fd940bac809f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d10b5245-bb78-4eb6-9810-315608be3953.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f28c09fa-0ae5-4712-86f9-0daf58b63014.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c181e317-a69b-471e-ba21-35bfa4e2d428.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a36e35a-eeaf-4838-9fcd-7d52971380b2.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f6f9900-d545-45ec-8de4-edaefe02d4a5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b9d8c875-6781-47fe-8b19-0970a5952042.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869c2862-ef20-47c4-bdce-e405112d5252.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e629071-081c-4471-9b72-29528a28f540.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3495c593-7ef2-4dba-b3cd-77387a9c4c90.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d25edbc-81fb-4b9d-9753-1afb13f78792.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/51dd98f9-0119-4d27-84f3-c5a3af58a351.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25618087-9133-4458-96ff-2e9f0061be04.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ccbe16a6-b3c0-4833-aecd-099ab8f2374d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c34addf3-27bd-4020-bdbd-0a2fa86caab1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9921e86-e105-487a-a653-f36984b65d3c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fef3b68-0865-453e-a990-80fb1f705f85.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671db830-87cc-4d55-af40-cffeea4d888b.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8becdf13-471c-4378-b78a-4a4603d7d3ea.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e61cdb8-9060-4330-85bb-1292e19c1495.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a0093055-cff0-40b7-96d7-237402d1597e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4930ff2c-a826-475d-81c5-bfe978620f81.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/71881d1b-a237-48bc-912b-dce43fedbaa0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91c4c10f-f472-4d95-a565-71c8b99d93be.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96b70e87-c3ce-4548-9b49-be5e62acb87e.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/def50125-781c-40f0-b1e8-746df4304f27.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf6176cf-0e99-410c-8346-23769b40253f.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89819d69-bfea-4407-adb5-e1b026b2b950.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d2f88-8df0-498d-9796-8eb2b23f3366.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4f8e3a98-1984-4a85-a777-849b20834d1d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/078955ff-cd88-40ce-bfb5-721b3ea11eab.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f2b54aac-549d-4488-a777-06814ac9a05a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12a4ff98-e887-4278-8f96-d40418dbc1d0.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6ff8721f-9517-463d-a191-66ddc3199b79.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e5a98636-d568-440e-8da1-2dbac46fe7c8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/81f408b0-b34b-43cd-9da8-33a08957e08a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0b54715c-33a8-4799-8814-8868084863c1.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ad9f3ece-0ca4-41b2-b54c-b163005bc376.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7edd2c6d-dd23-43ef-8fb1-836b5a784c23.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c01fb38-abc6-491b-b42b-3fd26b656d46.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c774e77-2d95-4e32-80cd-810750e41221.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5b51996-fffb-44b1-ac4c-168bb4ecc94c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f76bc3bf-9608-4015-98f3-69bf3af6edf4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a76a4cd9-5857-4b80-9ef5-cf20f474ea46.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/543fd15c-d644-41e3-b735-d611e33b899a.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4020b107-ab09-4959-b911-e150d33cd042.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff2e43bd-b9c1-4d32-b736-bf7ec8057471.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e731b9d3-3f31-4a2b-8b89-2192d75b2466.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a299b3dc-032b-42fd-8597-440a6180e2d7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/164a74ea-a50f-4db1-a114-2b0d90f010c4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1348a6ff-1324-4813-bf5e-292d3ae19c5c.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ffe79fbc-1229-415e-a461-7cf6c0bb42f5.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07263c2d-5742-485d-a5e2-e442f9a28bf3.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d28069d9-d72a-4a26-8a4b-3bca3e636845.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bc1255-721b-4072-a442-595e603e71e7.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2618f8e6-99cd-4113-80d9-ecfbef0a293d.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d01bc1d-f89b-44a9-9a04-901ad2d62f68.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e774645-6049-4539-87ac-f6e91fca6514.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4f131c6-7148-4f5a-a8d7-9df13e56d494.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48dc2f6e-f4c4-4fb2-b44d-41277dbed078.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e17b0ea5-bafd-4aff-8f43-49fec921ba73.json", + "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": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json b/fixtures/2-to-3-converter/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json new file mode 100644 index 00000000..2c4fbe0a --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json @@ -0,0 +1,414 @@ +{ + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "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": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json b/fixtures/2-to-3-converter/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json new file mode 100644 index 00000000..cc8536ad --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json @@ -0,0 +1,48 @@ +{ + "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": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json b/fixtures/2-to-3-converter/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json new file mode 100644 index 00000000..92654659 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json @@ -0,0 +1,2356 @@ +{ + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "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": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json b/fixtures/2-to-3-converter/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json new file mode 100644 index 00000000..859177b2 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json @@ -0,0 +1,949 @@ +{ + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p2", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p3", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p4", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p5", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p6", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p7", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p8", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p9", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p10", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p11", + "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": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p12", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/manifests.britishart.yale.edu__manifest__1474.json b/fixtures/2-to-3-converter/manifests/manifests.britishart.yale.edu__manifest__1474.json new file mode 100644 index 00000000..7477dad2 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/manifests.britishart.yale.edu__manifest__1474.json @@ -0,0 +1,389 @@ +{ + "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": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "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": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "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": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "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": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "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": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json b/fixtures/2-to-3-converter/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json new file mode 100644 index 00000000..d6f64694 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json @@ -0,0 +1,14403 @@ +{ + "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": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "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": "http://manifests.ydc2.yale.edu/canvas/adc8a547-d3c2-4caa-96b3-e42bc7b539e5", + "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": "http://manifests.ydc2.yale.edu/canvas/b0118c8f-ac6d-4ddf-b2dd-5c6123ff8c27", + "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": "http://manifests.ydc2.yale.edu/canvas/239207e1-925f-42bb-b75d-f0b1e5bed79a", + "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": "http://manifests.ydc2.yale.edu/canvas/28f8e99f-b80d-4eea-8506-7d2716fee953", + "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": "http://manifests.ydc2.yale.edu/canvas/bab74636-b2ca-4a63-abcf-f8bae1490d0c", + "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": "http://manifests.ydc2.yale.edu/canvas/de3cf018-1db8-4b5e-bb67-1b093eec85d7", + "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": "http://manifests.ydc2.yale.edu/canvas/8a057755-a141-45ff-9302-ddc0df164d58", + "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": "http://manifests.ydc2.yale.edu/canvas/b86be1b8-b27d-4f13-a0f1-ba145f679096", + "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": "http://manifests.ydc2.yale.edu/canvas/2b5bcd39-0649-49d4-aabe-9f613f54da11", + "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": "http://manifests.ydc2.yale.edu/canvas/33d390af-2d10-43eb-8aff-32c66985543c", + "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": "http://manifests.ydc2.yale.edu/canvas/0b511cb3-f6c3-467a-9fca-30570c0be4ee", + "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": "http://manifests.ydc2.yale.edu/canvas/22cc8b54-974f-4d2e-91ca-6255f8c60b34", + "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": "http://manifests.ydc2.yale.edu/canvas/d87c2491-5866-4041-90da-e058906ce5e2", + "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": "http://manifests.ydc2.yale.edu/canvas/0b71d843-fb0b-4fba-a93a-7686543e8596", + "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": "http://manifests.ydc2.yale.edu/canvas/7a9e7356-1546-478a-8227-62580b1fcda7", + "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": "http://manifests.ydc2.yale.edu/canvas/b76834fd-514c-4733-a8ce-40233bdc8dc9", + "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": "http://manifests.ydc2.yale.edu/canvas/bb14bcdc-def9-4f72-8c40-c5a37b550bf6", + "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": "http://manifests.ydc2.yale.edu/canvas/5f910bc5-c1ac-4ccf-b31e-b41e7ec82e79", + "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": "http://manifests.ydc2.yale.edu/canvas/40694da6-c0d0-4afd-b36f-e9782e897af0", + "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": "http://manifests.ydc2.yale.edu/canvas/1747771b-3435-4e11-b3ae-95d74a4acdce", + "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": "http://manifests.ydc2.yale.edu/canvas/61536335-18e1-4cbc-80bf-ab1fbd3c28f7", + "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": "http://manifests.ydc2.yale.edu/canvas/58d17284-89ec-44fa-848c-30635adf9b0d", + "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": "http://manifests.ydc2.yale.edu/canvas/e2b1c5aa-a1a7-4942-a07f-77ac29cbeeb6", + "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": "http://manifests.ydc2.yale.edu/canvas/f7c3a817-afef-4514-a403-2de4d05e63e5", + "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": "http://manifests.ydc2.yale.edu/canvas/a5a0120a-6f9b-4f1c-ba0c-4a92d8de362d", + "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": "http://manifests.ydc2.yale.edu/canvas/994bcb88-ad63-4908-9a97-dc8001bde106", + "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": "http://manifests.ydc2.yale.edu/canvas/c7c88d3f-4d77-4487-8c51-26b5fa27b24d", + "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": "http://manifests.ydc2.yale.edu/canvas/d4cb58a9-8b5a-4fee-afbf-797ebd1b9acf", + "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": "http://manifests.ydc2.yale.edu/canvas/b45c3088-7062-4df8-8587-7d8b8da5ae9f", + "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": "http://manifests.ydc2.yale.edu/canvas/a9567b70-5ded-4869-8f1d-aa842bdf133c", + "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": "http://manifests.ydc2.yale.edu/canvas/a7fade6d-5661-4739-bfeb-10e70a521f62", + "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": "http://manifests.ydc2.yale.edu/canvas/53875476-8f20-4486-9f6c-33d39bbab76d", + "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": "http://manifests.ydc2.yale.edu/canvas/2cb656ef-be26-48ad-8047-2f299f8b518c", + "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": "http://manifests.ydc2.yale.edu/canvas/c4335d30-8d07-4921-bfd8-10604fd69fd3", + "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": "http://manifests.ydc2.yale.edu/canvas/7848f0d2-00f4-42bf-8016-4dd67d3c05a6", + "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": "http://manifests.ydc2.yale.edu/canvas/2abe28b3-0ab8-4307-9a7f-1656d326ea60", + "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": "http://manifests.ydc2.yale.edu/canvas/d034e2b9-415f-4aee-9d4d-bcba59fd6476", + "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": "http://manifests.ydc2.yale.edu/canvas/ed80a4c1-35d1-4dfb-85c3-15b1274f321d", + "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": "http://manifests.ydc2.yale.edu/canvas/b3f8bc98-a044-47ce-a2fb-db56adcac244", + "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": "http://manifests.ydc2.yale.edu/canvas/734a2ad8-4aa9-4b2d-b90c-d2360e692d90", + "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": "http://manifests.ydc2.yale.edu/canvas/6a2a7e50-931b-414b-98e4-90cd7a31e875", + "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": "http://manifests.ydc2.yale.edu/canvas/89e05127-263c-4607-ba5b-78f64ace061b", + "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": "http://manifests.ydc2.yale.edu/canvas/b25ef3ac-2e15-4982-ada0-490afdeaa6a6", + "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": "http://manifests.ydc2.yale.edu/canvas/ae915386-2882-4215-8737-66dac0999a93", + "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": "http://manifests.ydc2.yale.edu/canvas/35410476-da03-4d42-ae76-0caf1a41cf1b", + "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": "http://manifests.ydc2.yale.edu/canvas/f7c2cbc4-46b6-4b60-83a1-2b65edafd0f7", + "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": "http://manifests.ydc2.yale.edu/canvas/4e163fff-0b86-4f7b-979f-7dc0bf09ff71", + "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": "http://manifests.ydc2.yale.edu/canvas/c10269eb-76c6-4438-adb6-22f609e90e64", + "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": "http://manifests.ydc2.yale.edu/canvas/cc7c7c1d-e544-476c-8fb8-26770e7df89f", + "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": "http://manifests.ydc2.yale.edu/canvas/17000274-e76c-43f9-928f-b4947a086e6e", + "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": "http://manifests.ydc2.yale.edu/canvas/a6b6ee73-0ebb-42f6-b8bc-d61836ac4012", + "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": "http://manifests.ydc2.yale.edu/canvas/60d69a54-7a9f-4a08-8e9b-6242f4c88240", + "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": "http://manifests.ydc2.yale.edu/canvas/2be6bcd2-f4e5-4bc1-a147-47d368c02e04", + "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": "http://manifests.ydc2.yale.edu/canvas/e3481b9d-0c32-4439-9ca1-2bd53fe8358e", + "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": "http://manifests.ydc2.yale.edu/canvas/590fe1f2-7797-4271-8bf5-ee69d000a70e", + "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": "http://manifests.ydc2.yale.edu/canvas/8bc1b1bb-63c4-4917-8ac2-bccc8b3815fb", + "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": "http://manifests.ydc2.yale.edu/canvas/935f471d-377b-464e-b040-c7899b26d2a9", + "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": "http://manifests.ydc2.yale.edu/canvas/d8539f54-142e-416c-9cc6-9dcb9a092002", + "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": "http://manifests.ydc2.yale.edu/canvas/2a5a6a82-a817-4f24-99cf-a8a3414ad621", + "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": "http://manifests.ydc2.yale.edu/canvas/0028d3b7-42fe-41aa-ac84-1cf144d2b847", + "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": "http://manifests.ydc2.yale.edu/canvas/2c6f0369-4ab7-4b20-8ec7-f0ec4b295270", + "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": "http://manifests.ydc2.yale.edu/canvas/89f1af93-5ea1-4181-b24c-05e51f0b31fa", + "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": "http://manifests.ydc2.yale.edu/canvas/52d9ee3a-3433-493c-a9be-13d4e5fc16ae", + "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": "http://manifests.ydc2.yale.edu/canvas/29ff2350-e4bc-4061-b5dc-1ec4fe51b259", + "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": "http://manifests.ydc2.yale.edu/canvas/9ef8537f-c4a1-415a-b2b7-3940892a9f1b", + "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": "http://manifests.ydc2.yale.edu/canvas/f560f395-10ee-4700-9c8f-01b09eddd9c5", + "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": "http://manifests.ydc2.yale.edu/canvas/ec8ba49e-3976-4a78-aa10-860851dcab8b", + "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": "http://manifests.ydc2.yale.edu/canvas/2e764dc7-2dc7-496c-9519-ec34c76e8765", + "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": "http://manifests.ydc2.yale.edu/canvas/b986c9e9-289a-4595-9644-ede22efbf7bc", + "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": "http://manifests.ydc2.yale.edu/canvas/a57bb850-7c05-440c-a4fa-515441bab09d", + "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": "http://manifests.ydc2.yale.edu/canvas/bd34a4d4-f376-4c04-a2d1-0465bfab30fc", + "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": "http://manifests.ydc2.yale.edu/canvas/3a65d95c-6439-420d-8c41-81781dbd7f29", + "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": "http://manifests.ydc2.yale.edu/canvas/cf33aac3-dc32-49f1-b8cb-baa972e07578", + "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": "http://manifests.ydc2.yale.edu/canvas/e1e02786-26df-4c94-addc-38cbf9f088a4", + "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": "http://manifests.ydc2.yale.edu/canvas/766e8aa6-c85d-4528-9837-8c3000c5c65d", + "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": "http://manifests.ydc2.yale.edu/canvas/7f562135-8d15-4ad0-b541-abc252350902", + "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": "http://manifests.ydc2.yale.edu/canvas/f3a16388-19db-4385-aeb0-47b198d8e0a1", + "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": "http://manifests.ydc2.yale.edu/canvas/18a3fbc9-e80c-4d68-8373-819e618b00ea", + "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": "http://manifests.ydc2.yale.edu/canvas/7d21786f-ae96-41dc-aa70-eecd664a915f", + "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": "http://manifests.ydc2.yale.edu/canvas/bc078587-5650-4629-a6a3-661d7b0f6acf", + "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": "http://manifests.ydc2.yale.edu/canvas/04e921e9-9853-46ce-b948-a928c4361a7c", + "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": "http://manifests.ydc2.yale.edu/canvas/2344e76c-5087-4370-b94c-b8798f7e0d10", + "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": "http://manifests.ydc2.yale.edu/canvas/7171cc13-8fe1-478e-a00c-8a738c767975", + "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": "http://manifests.ydc2.yale.edu/canvas/bb9c84c7-9198-439c-a4a5-cd891a472f77", + "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": "http://manifests.ydc2.yale.edu/canvas/5f0e779e-64f3-4207-9a42-325ca6f086e2", + "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": "http://manifests.ydc2.yale.edu/canvas/d650f079-42c3-4289-b322-c2af8ffe913b", + "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": "http://manifests.ydc2.yale.edu/canvas/22fabac2-0349-4bc0-bf64-281ae6eb12d6", + "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": "http://manifests.ydc2.yale.edu/canvas/1528ce23-45ac-4648-8dfa-96c931071dd0", + "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": "http://manifests.ydc2.yale.edu/canvas/c1bd80b6-cb9d-48ab-a5ac-129195ad34bf", + "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": "http://manifests.ydc2.yale.edu/canvas/82589282-3bfc-44d5-a9da-791d86e19c3b", + "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": "http://manifests.ydc2.yale.edu/canvas/02cfb875-c8fc-41eb-afdf-975853b9051e", + "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": "http://manifests.ydc2.yale.edu/canvas/4dd87833-782a-4ec1-a7d8-02247070b7a7", + "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": "http://manifests.ydc2.yale.edu/canvas/b00c7a73-925c-4077-a774-6833c71ea42d", + "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": "http://manifests.ydc2.yale.edu/canvas/08c9c3d4-d075-4ff7-8f92-d88cb90f96c4", + "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": "http://manifests.ydc2.yale.edu/canvas/7d8b1d13-e9fe-469d-a989-d9eadfa94329", + "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": "http://manifests.ydc2.yale.edu/canvas/ed965c3a-092b-4e90-b98c-342ce0296098", + "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": "http://manifests.ydc2.yale.edu/canvas/8574160e-a9b6-4d00-ad2a-ba1f00a2da6b", + "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": "http://manifests.ydc2.yale.edu/canvas/1fcfb9f2-f196-4592-b4b0-e77400feee5a", + "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": "http://manifests.ydc2.yale.edu/canvas/4a5635da-51df-4963-a752-45150be95d14", + "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": "http://manifests.ydc2.yale.edu/canvas/0058de20-cc39-466d-9697-c7c97afc18aa", + "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": "http://manifests.ydc2.yale.edu/canvas/1bb6fd79-b98d-484d-a524-05b82dd41a62", + "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": "http://manifests.ydc2.yale.edu/canvas/d4914ba4-846d-44ad-9cea-493efa0dc655", + "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": "http://manifests.ydc2.yale.edu/canvas/94e68335-50bc-48b3-bfd6-9487d12d7725", + "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": "http://manifests.ydc2.yale.edu/canvas/0cae9d48-4ea9-42ba-ac26-e233362f08a1", + "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": "http://manifests.ydc2.yale.edu/canvas/fe5a74bb-36a0-48a2-a1cc-702b4da46775", + "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": "http://manifests.ydc2.yale.edu/canvas/26d7585d-35f7-448e-9ccb-569104aceeb6", + "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": "http://manifests.ydc2.yale.edu/canvas/93cdac5e-15ac-4a6e-841e-8828248f008b", + "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": "http://manifests.ydc2.yale.edu/canvas/dec35c41-54b2-46a8-b141-c5129626e0f6", + "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": "http://manifests.ydc2.yale.edu/canvas/60c5d9df-2697-4a13-a690-a6fac8d996f3", + "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": "http://manifests.ydc2.yale.edu/canvas/c4d07c51-cf4f-4070-a0e3-cde10b7929f9", + "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": "http://manifests.ydc2.yale.edu/canvas/0dd2110c-bcc6-472d-91a3-e834f9165efb", + "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": "http://manifests.ydc2.yale.edu/canvas/0b9d68a9-4474-45bc-aa96-b39060291d4d", + "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": "http://manifests.ydc2.yale.edu/canvas/ef3b5e43-dff1-45af-8297-867bc84deec4", + "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": "http://manifests.ydc2.yale.edu/canvas/4e4d1d4b-1d99-4c3d-9444-3efc92cdadc2", + "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": "http://manifests.ydc2.yale.edu/canvas/ca036e22-dc7b-4f26-8564-5ffda1056af3", + "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": "http://manifests.ydc2.yale.edu/canvas/ba5784d9-707f-471d-ace0-e122f04cc6c5", + "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": "http://manifests.ydc2.yale.edu/canvas/e3714ae0-ea88-4474-b8e1-93c1100448d9", + "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": "http://manifests.ydc2.yale.edu/canvas/23ecdea3-7ef5-4fa1-8ce9-db00fb27f38b", + "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": "http://manifests.ydc2.yale.edu/canvas/e51e053c-866f-4cdb-aeca-3839c5167b65", + "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": "http://manifests.ydc2.yale.edu/canvas/e8e51623-7364-439a-92c3-7b0da0128dc5", + "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": "http://manifests.ydc2.yale.edu/canvas/2b1e6796-7407-4f99-af2e-3ad32da19140", + "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": "http://manifests.ydc2.yale.edu/canvas/4de76df7-1613-4f5b-b68b-04bd57f0a9c6", + "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": "http://manifests.ydc2.yale.edu/canvas/1d3eb66e-0933-4992-a4b2-b3b6a855a83b", + "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": "http://manifests.ydc2.yale.edu/canvas/0b04f174-3de5-4c33-bb97-b254c63203b1", + "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": "http://manifests.ydc2.yale.edu/canvas/2d426098-fe8c-40ab-836c-34e34598415a", + "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": "http://manifests.ydc2.yale.edu/canvas/b09f7b22-167c-4b9e-8b76-70b057ed36a2", + "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": "http://manifests.ydc2.yale.edu/canvas/26714d77-7c1e-4522-8ea8-e236dd0c9b6d", + "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": "http://manifests.ydc2.yale.edu/canvas/778862a9-2f6b-4ecb-b9b8-f86059bd8e19", + "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": "http://manifests.ydc2.yale.edu/canvas/57fc9da2-0334-4fdf-8f24-4c98d9d6b06b", + "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": "http://manifests.ydc2.yale.edu/canvas/66cf66ad-4275-4458-a166-3dfb79487796", + "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": "http://manifests.ydc2.yale.edu/canvas/62618bfd-ace9-43ed-a87f-d47fd2d549a9", + "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": "http://manifests.ydc2.yale.edu/canvas/1e1e8a26-be99-4c3b-9fb1-e1a3ad974ef4", + "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": "http://manifests.ydc2.yale.edu/canvas/4877a58b-9276-4423-88e3-09bede27be14", + "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": "http://manifests.ydc2.yale.edu/canvas/02898b91-9dd2-4327-aa0f-3a4bb4743e8e", + "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": "http://manifests.ydc2.yale.edu/canvas/10d1044b-19b4-4017-b60a-b991cd08ed2b", + "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": "http://manifests.ydc2.yale.edu/canvas/1f1c58fa-59f2-4ca8-8f22-82a1a2f0db14", + "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": "http://manifests.ydc2.yale.edu/canvas/0e6b88c0-b53c-4971-86dc-f3ee8b962173", + "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": "http://manifests.ydc2.yale.edu/canvas/5587beb0-bb48-4d59-af87-862c054a884e", + "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": "http://manifests.ydc2.yale.edu/canvas/f8dac05f-1d64-43a1-82cc-59a44972e392", + "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": "http://manifests.ydc2.yale.edu/canvas/7cab9028-ff34-4b43-9176-c9235c0120e3", + "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": "http://manifests.ydc2.yale.edu/canvas/c18e9699-0126-45b3-9ed7-a9dd744c969f", + "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": "http://manifests.ydc2.yale.edu/canvas/7c7fcec4-12dd-4db5-b4c8-6f6f7b7458f6", + "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": "http://manifests.ydc2.yale.edu/canvas/b37b640e-e4f3-4755-ade1-9b04c535517e", + "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": "http://manifests.ydc2.yale.edu/canvas/5608d03b-4d1f-4d04-a4f4-32b426363a62", + "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": "http://manifests.ydc2.yale.edu/canvas/3dfd306d-022a-44f5-ad37-5184839f4a26", + "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": "http://manifests.ydc2.yale.edu/canvas/8ecf16dd-0612-4ae9-8362-ead545865f34", + "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": "http://manifests.ydc2.yale.edu/canvas/70ea870e-c549-4b2a-9244-e1e8d40723e9", + "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": "http://manifests.ydc2.yale.edu/canvas/e9286ff8-0540-4073-9ecd-674ea4b7df0d", + "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": "http://manifests.ydc2.yale.edu/canvas/ae96fa64-c3d0-4a9d-b278-119331fe4ed6", + "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": "http://manifests.ydc2.yale.edu/canvas/4816f984-4824-44bc-85b3-f581c7f53a8a", + "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": "http://manifests.ydc2.yale.edu/canvas/b4e2cc11-0029-4038-945b-82c74b59301a", + "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": "http://manifests.ydc2.yale.edu/canvas/201bef0b-3792-4520-839a-f152d13ca1db", + "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": "http://manifests.ydc2.yale.edu/canvas/3d6b2fce-023d-48c9-b8cf-5836d04e1b8b", + "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": "http://manifests.ydc2.yale.edu/canvas/377f0962-d264-4fb4-8c83-933b069d0df6", + "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": "http://manifests.ydc2.yale.edu/canvas/f2e5ba6c-596c-4f31-a19d-7c5bcce76f97", + "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": "http://manifests.ydc2.yale.edu/canvas/880f801e-d16b-4b8e-9b42-14c79007fc20", + "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": "http://manifests.ydc2.yale.edu/canvas/95ee93a5-6668-41d3-ba23-d866ea10c675", + "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": "http://manifests.ydc2.yale.edu/canvas/c43cfa1f-ebdf-4078-afbb-3c891bcf0995", + "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": "http://manifests.ydc2.yale.edu/canvas/2ed1b1bb-cc6b-4506-bc29-1d07a8ebcdca", + "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": "http://manifests.ydc2.yale.edu/canvas/b4659a90-b6ff-4a55-a44a-f5dcfdbf2882", + "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": "http://manifests.ydc2.yale.edu/canvas/86513669-f032-4d8d-b0a8-753f583d8552", + "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": "http://manifests.ydc2.yale.edu/canvas/7b3e58fe-8446-4c60-b4ee-ad3aab1dd5c3", + "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": "http://manifests.ydc2.yale.edu/canvas/2d45662c-c524-436f-a598-688923d7f7ad", + "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": "http://manifests.ydc2.yale.edu/canvas/e65d7bfd-74c3-4536-8578-468583f7a979", + "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": "http://manifests.ydc2.yale.edu/canvas/daef16eb-b70a-4e64-bb7c-4aeecd67a29b", + "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": "http://manifests.ydc2.yale.edu/canvas/3ed0daf5-d48a-4d47-97c2-9fda0bf8f65f", + "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": "http://manifests.ydc2.yale.edu/canvas/c5e14b37-5b59-4846-a4fe-51772c0693f5", + "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": "http://manifests.ydc2.yale.edu/canvas/dca3638a-c739-416c-9810-3d1c9720bd16", + "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": "http://manifests.ydc2.yale.edu/canvas/d4733c77-eaed-44bb-8f80-941880f039b4", + "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": "http://manifests.ydc2.yale.edu/canvas/4a8880ed-cb9f-4cd3-9372-c3eed99fac3c", + "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": "http://manifests.ydc2.yale.edu/canvas/4c0823e6-5102-4478-84c7-022f0174bd0e", + "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": "http://manifests.ydc2.yale.edu/canvas/6e20982e-25d7-4c48-8eac-d4fed18dd23f", + "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": "http://manifests.ydc2.yale.edu/canvas/92cad896-ac24-48ea-926d-ce4863870c42", + "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": "http://manifests.ydc2.yale.edu/canvas/bf5c39c5-d22f-4f6d-963c-4fee383836a3", + "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": "http://manifests.ydc2.yale.edu/canvas/c5eb37dc-8446-4cee-a313-88d65f28912a", + "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": "http://manifests.ydc2.yale.edu/canvas/adc161da-dace-404f-a129-5d02ae6ef831", + "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": "http://manifests.ydc2.yale.edu/canvas/05ce306c-cb99-4cea-bff2-f7c8ae07d052", + "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": "http://manifests.ydc2.yale.edu/canvas/70c7143f-3454-455e-ab39-c1e6762b294c", + "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": "http://manifests.ydc2.yale.edu/canvas/54e1c21a-79ef-4fbb-8758-7e33a301b786", + "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": "http://manifests.ydc2.yale.edu/canvas/4ee85d9b-8d26-4518-bb9c-9c11441d3a85", + "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": "http://manifests.ydc2.yale.edu/canvas/9f4e682e-8589-4aad-a4a8-4a29e89afb8c", + "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": "http://manifests.ydc2.yale.edu/canvas/c895538a-503a-4f1f-96ea-a908142c0421", + "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": "http://manifests.ydc2.yale.edu/canvas/60371730-4fb5-4c67-a7a6-5b9031da00ae", + "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": "http://manifests.ydc2.yale.edu/canvas/d7fba7c1-81b8-4854-af18-4119f0e2f066", + "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": "http://manifests.ydc2.yale.edu/canvas/8ce16980-93dd-4c95-9196-058ae2a5ddfb", + "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": "http://manifests.ydc2.yale.edu/canvas/2bb4379a-87ff-4e95-b09a-9c9b4c8642d0", + "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": "http://manifests.ydc2.yale.edu/canvas/977ff8d0-0073-4a83-a032-b5e1e8eb84b8", + "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": "http://manifests.ydc2.yale.edu/canvas/179adb85-03ef-44d7-be7a-023a4b154088", + "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": "http://manifests.ydc2.yale.edu/canvas/31c9d0df-be42-48a5-9ca3-0efec9c40a9b", + "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": "http://manifests.ydc2.yale.edu/canvas/94bd1db1-7e25-4d0d-b565-1f0a6d7b3113", + "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": "http://manifests.ydc2.yale.edu/canvas/2d16f2fa-adca-4b00-a7e3-27a64956707e", + "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": "http://manifests.ydc2.yale.edu/canvas/679ed008-d675-45f0-87ed-46cecc8718f2", + "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": "http://manifests.ydc2.yale.edu/canvas/b054047c-cfb1-4e13-a4f2-be5e9566a315", + "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": "http://manifests.ydc2.yale.edu/canvas/0cbf6f35-6469-42a1-a240-7ee7ff6dc155", + "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": "http://manifests.ydc2.yale.edu/canvas/393bbbf1-5bce-4254-82f3-bc725a0b8c30", + "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": "http://manifests.ydc2.yale.edu/canvas/978f01f9-6d52-400c-8687-f725425b0203", + "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": "http://manifests.ydc2.yale.edu/canvas/bac01066-4929-49a2-942b-9f9973b08207", + "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": "http://manifests.ydc2.yale.edu/canvas/2f92a53f-a126-4072-ad4e-40738597d897", + "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": "http://manifests.ydc2.yale.edu/canvas/66e1e3e7-5739-47a0-ac14-041312ff3363", + "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": "http://manifests.ydc2.yale.edu/canvas/008a9393-f0b5-405d-bfb0-69d1152ae18f", + "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": "http://manifests.ydc2.yale.edu/canvas/ad4f8dfc-28be-482b-8c2e-e8d0eece02ca", + "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": "http://manifests.ydc2.yale.edu/canvas/c1ea1b67-8719-404f-8bca-242ece776c8b", + "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": "http://manifests.ydc2.yale.edu/canvas/637ddcad-28a5-490f-be8d-ce335def7e9b", + "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": "http://manifests.ydc2.yale.edu/canvas/cacc3b7b-b45d-4eb6-8061-7f981c5a0494", + "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": "http://manifests.ydc2.yale.edu/canvas/c49d8d51-5feb-4531-a586-9eeaf8b5db4c", + "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": "http://manifests.ydc2.yale.edu/canvas/fa20d579-1821-4bf3-9f1a-26e2406d482f", + "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": "http://manifests.ydc2.yale.edu/canvas/37aa02fd-41da-49d1-83b7-da8ecaefa9a0", + "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": "http://manifests.ydc2.yale.edu/canvas/1e2d1754-e1fe-40fd-9b7e-d1ac5fbf312c", + "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": "http://manifests.ydc2.yale.edu/canvas/39737150-ba88-44b8-bad3-769ab5e868ef", + "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": "http://manifests.ydc2.yale.edu/canvas/5cb7e5b0-84d2-4a4b-87b2-14b5fc88d171", + "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": "http://manifests.ydc2.yale.edu/canvas/1433f1f0-c733-4bc7-8f8f-60619020c814", + "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": "http://manifests.ydc2.yale.edu/canvas/42e6581a-380f-46a8-ad20-481000bb01d1", + "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": "http://manifests.ydc2.yale.edu/canvas/3eb0127d-0351-4052-8957-04ffa1fc6c41", + "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": "http://manifests.ydc2.yale.edu/canvas/a12cfe56-0aaf-4ad5-8f9e-9ae5ba98c42b", + "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": "http://manifests.ydc2.yale.edu/canvas/9bbbea9e-e1ea-40a7-a4bd-9d4ee63f615f", + "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": "http://manifests.ydc2.yale.edu/canvas/1f46a33c-1218-409d-8c71-5629e00970de", + "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": "http://manifests.ydc2.yale.edu/canvas/c25beaa2-a84b-4f61-bcf8-d5ff6b5b433f", + "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": "http://manifests.ydc2.yale.edu/canvas/81d67184-d81b-4ee7-a3da-09455b221407", + "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": "http://manifests.ydc2.yale.edu/canvas/7c5cba64-5013-4e5a-98bc-8afe91ade02a", + "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": "http://manifests.ydc2.yale.edu/canvas/76f2bf6e-2b2e-437e-a109-a4365c0f8777", + "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": "http://manifests.ydc2.yale.edu/canvas/bf048ed9-ab1c-4fec-badd-e19538e89d7f", + "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": "http://manifests.ydc2.yale.edu/canvas/0485efa8-e2a6-4fd7-983f-de759b3819ff", + "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": "http://manifests.ydc2.yale.edu/canvas/957e8fae-ceed-4f9e-baea-44c412956c9d", + "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": "http://manifests.ydc2.yale.edu/canvas/4c74367f-1aa0-49eb-8dd2-296fa4ce2e76", + "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": "http://manifests.ydc2.yale.edu/canvas/9de4ea93-993d-4a59-a7b9-e59ee812c728", + "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": "http://manifests.ydc2.yale.edu/canvas/b17854ed-60b5-4dea-bd4f-3dc39bc98a63", + "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": "http://manifests.ydc2.yale.edu/canvas/14f227c2-ed6e-429b-a750-c69763af9813", + "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": "http://manifests.ydc2.yale.edu/canvas/03de3d1e-42c0-4d4d-821a-5e5f694bc811", + "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": "http://manifests.ydc2.yale.edu/canvas/c67a7846-8c35-4280-baed-ee9b8716ec87", + "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": "http://manifests.ydc2.yale.edu/canvas/35d11480-f717-4383-ac3e-7b75abe230b2", + "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": "http://manifests.ydc2.yale.edu/canvas/95ddfde8-0bd4-49b5-8f39-56fd52d48d41", + "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": "http://manifests.ydc2.yale.edu/canvas/725d0bbd-fcd7-4976-bf59-09aefdd58a73", + "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": "http://manifests.ydc2.yale.edu/canvas/8a92b306-ac62-4b54-89da-ab73a752dca4", + "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": "http://manifests.ydc2.yale.edu/canvas/816dd843-ba2e-4227-aa03-a9511fbea50c", + "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": "http://manifests.ydc2.yale.edu/canvas/023e16a6-40bb-40e9-bcd9-74e4caa21ad0", + "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": "http://manifests.ydc2.yale.edu/canvas/0f7154c8-a417-4afd-9c68-13b6a4a0792e", + "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": "http://manifests.ydc2.yale.edu/canvas/ae70763b-6c9e-4a9e-b1d1-d309acb496f2", + "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": "http://manifests.ydc2.yale.edu/canvas/ec19ead8-3104-4a01-b522-7d3f719529f2", + "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": "http://manifests.ydc2.yale.edu/canvas/f55123d2-1815-48af-a7ba-7724ca65891a", + "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": "http://manifests.ydc2.yale.edu/canvas/8b1200f1-0bbd-4416-b580-71c2eb320a56", + "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": "http://manifests.ydc2.yale.edu/canvas/d0411890-0802-47d1-acd4-279e1a3da50b", + "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": "http://manifests.ydc2.yale.edu/canvas/2ceafe8b-aca3-4cb5-8ecf-bb832a02181a", + "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": "http://manifests.ydc2.yale.edu/canvas/dd00362c-3877-455e-95f8-91aae32cff43", + "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": "http://manifests.ydc2.yale.edu/canvas/992bb53b-07e2-41b5-937e-604d56783d48", + "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": "http://manifests.ydc2.yale.edu/canvas/bee7b128-67d4-49f0-88c0-3e8441f3b801", + "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": "http://manifests.ydc2.yale.edu/canvas/74471612-dcd4-432e-9807-9acbcdb2ad99", + "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": "http://manifests.ydc2.yale.edu/canvas/2f03a212-9553-4ab9-a3c2-fdc21792defc", + "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": "http://manifests.ydc2.yale.edu/canvas/5e4ca71c-e432-4e19-bf54-20e26dc7ab50", + "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": "http://manifests.ydc2.yale.edu/canvas/b6b9aaea-142d-443f-8de6-7b1185c4f6a2", + "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": "http://manifests.ydc2.yale.edu/canvas/1527bbcf-b1e6-4570-8c33-071f4dd493e7", + "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": "http://manifests.ydc2.yale.edu/canvas/a205226a-4940-4c11-8f2b-ffa9ef3b90ab", + "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": "http://manifests.ydc2.yale.edu/canvas/0a235a67-1b1d-47f8-abec-e7a9bb852ce6", + "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": "http://manifests.ydc2.yale.edu/canvas/446147b8-f648-4939-b23a-c1ecbc87e74e", + "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": "http://manifests.ydc2.yale.edu/canvas/0736be26-7014-48ee-b9ea-232640f9c4b8", + "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": "http://manifests.ydc2.yale.edu/canvas/350a55d1-51b2-47ad-b3d4-9c8ec3274b3c", + "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": "http://manifests.ydc2.yale.edu/canvas/9650b997-9f34-4100-9c39-39ba645dedb6", + "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": "http://manifests.ydc2.yale.edu/canvas/43695100-51a9-4c3d-9581-d3067f93ad3b", + "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": "http://manifests.ydc2.yale.edu/canvas/e11d7078-c440-496b-849d-1bbeb773c4d8", + "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": "http://manifests.ydc2.yale.edu/canvas/4016b085-1a68-4799-bc47-4497efe86175", + "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": "http://manifests.ydc2.yale.edu/canvas/648cfb32-29fe-42ac-9ed8-8241be42b087", + "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": "http://manifests.ydc2.yale.edu/canvas/9ed4ea4b-081c-4410-b570-5e17899c80bb", + "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": "http://manifests.ydc2.yale.edu/canvas/9dda1ba3-71cf-4b58-86e4-29b31be6ec5a", + "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": "http://manifests.ydc2.yale.edu/canvas/af8c5634-c6ce-4d42-b5e1-1a60e46ab5f0", + "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": "http://manifests.ydc2.yale.edu/canvas/9392c2fa-ac80-4045-afe5-ad58eb4399de", + "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": "http://manifests.ydc2.yale.edu/canvas/a899141e-c2c2-4a12-9cee-6a4fb32c81c6", + "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": "http://manifests.ydc2.yale.edu/canvas/8ca67e7d-e01e-4dab-94e9-56dc47f5924d", + "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": "http://manifests.ydc2.yale.edu/canvas/4bfc5dd1-0588-4289-aba9-5326dda6aad4", + "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": "http://manifests.ydc2.yale.edu/canvas/7ba9976f-f6cc-4910-a1ec-faea3fbc1a7f", + "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": "http://manifests.ydc2.yale.edu/canvas/393b1e59-caf0-4242-b218-38c358516473", + "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": "http://manifests.ydc2.yale.edu/canvas/d0da678d-e136-4adf-90f4-f9950ecab2f7", + "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": "http://manifests.ydc2.yale.edu/canvas/63f36441-886a-41dc-b131-76dcf3faef6a", + "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": "http://manifests.ydc2.yale.edu/canvas/90ec2816-3ddd-4ffa-bbf9-496ad981032c", + "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": "http://manifests.ydc2.yale.edu/canvas/ace2e5e5-43b4-4c82-8b16-2c15b5238b12", + "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": "http://manifests.ydc2.yale.edu/canvas/995a9a7a-53bf-45c9-abf5-cf6d6ab25aa4", + "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": "http://manifests.ydc2.yale.edu/canvas/bc50cff4-2e13-4156-8604-7f841e85c849", + "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": "http://manifests.ydc2.yale.edu/canvas/39e36fc8-ce89-46e7-9e48-0042e9405872", + "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": "http://manifests.ydc2.yale.edu/canvas/52d6cc98-4754-4bea-929c-c592ee7c421d", + "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": "http://manifests.ydc2.yale.edu/canvas/78bad6df-0e13-4442-9a4b-0ce3e70f5b38", + "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": "http://manifests.ydc2.yale.edu/canvas/8df8730f-43d2-4647-bfc1-49de87c88889", + "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": "http://manifests.ydc2.yale.edu/canvas/29fcbc66-50d9-4b25-b8ad-b3721b9a2fc4", + "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": "http://manifests.ydc2.yale.edu/canvas/b2fb1287-e089-4962-a8de-0c987b437040", + "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": "http://manifests.ydc2.yale.edu/canvas/4a4bd26b-7e67-482f-9730-00977c7119db", + "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": "http://manifests.ydc2.yale.edu/canvas/9b405b11-9db0-41df-84e7-57c6ee3a4336", + "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": "http://manifests.ydc2.yale.edu/canvas/320a0357-4109-4cc6-9f49-211e1d11aef3", + "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": "http://manifests.ydc2.yale.edu/canvas/388026d5-bc1c-4662-ac2e-88aea0b51480", + "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": "http://manifests.ydc2.yale.edu/canvas/5a59d868-a14f-4828-9ee3-dcaf831c0ade", + "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": "http://manifests.ydc2.yale.edu/canvas/9cdd17af-2475-4edc-a9d5-8a832374f87b", + "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": "http://manifests.ydc2.yale.edu/canvas/69dcd476-1ead-4015-b0b4-7e3429484129", + "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": "http://manifests.ydc2.yale.edu/canvas/a0b5bd9b-c103-4fb9-bfd2-83748f220e28", + "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": "http://manifests.ydc2.yale.edu/canvas/25aec133-f37f-44a4-a18a-dac1b78a0f11", + "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": "http://manifests.ydc2.yale.edu/canvas/cc473e6f-a389-4395-ae4c-1cb72a888925", + "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": "http://manifests.ydc2.yale.edu/canvas/7fc32989-6458-4673-9316-0e92fc98e9e1", + "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": "http://manifests.ydc2.yale.edu/canvas/b3d2a451-05a0-4700-b3e9-735d56b5b0b3", + "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": "http://manifests.ydc2.yale.edu/canvas/238b6710-4f89-40bf-92f4-9a367f4d6dd8", + "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": "http://manifests.ydc2.yale.edu/canvas/0897dcff-251a-4dec-87e6-fcdfc0b93c00", + "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": "http://manifests.ydc2.yale.edu/canvas/2c2a29b0-c05e-4882-bc3b-bba0a6e8bffa", + "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": "http://manifests.ydc2.yale.edu/canvas/04b73d2e-401b-4128-b709-1fa30c5ab4a1", + "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": "http://manifests.ydc2.yale.edu/canvas/0085d09d-c626-47ac-a65b-0143cde967bc", + "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": "http://manifests.ydc2.yale.edu/canvas/53e86d18-92e8-4609-81bf-4933e1d8e4c5", + "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": "http://manifests.ydc2.yale.edu/canvas/6c67277a-0ae8-47d8-8980-de01a7a97497", + "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": "http://manifests.ydc2.yale.edu/canvas/49c21d90-c244-44b0-a2b4-c2ce5b66b1ad", + "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": "http://manifests.ydc2.yale.edu/canvas/b92306c2-8dc4-4b2b-b5d7-2350ae2cdbde", + "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": "http://manifests.ydc2.yale.edu/canvas/15be234a-0dc8-4144-a166-e95d7d958c3f", + "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": "http://manifests.ydc2.yale.edu/canvas/5f529753-f297-447c-8c81-c671f614e572", + "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": "http://manifests.ydc2.yale.edu/canvas/541db314-dc1e-49dc-8ff3-853a23989b46", + "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": "http://manifests.ydc2.yale.edu/canvas/9bfc7813-53c7-4af9-a2b5-41a1667e6fda", + "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": "http://manifests.ydc2.yale.edu/canvas/c3c5030f-043e-4df4-a8a5-342f6032717b", + "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": "http://manifests.ydc2.yale.edu/canvas/86f1ec54-f7e0-488d-9eb1-0177f165d0ed", + "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": "http://manifests.ydc2.yale.edu/canvas/cc4ab7a9-284f-4d75-85ae-1708749a0366", + "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": "http://manifests.ydc2.yale.edu/canvas/5901c420-5841-45fc-a48c-d555ce6e8eea", + "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": "http://manifests.ydc2.yale.edu/canvas/f5c93f6b-1e14-4def-9343-f0953cb2b28d", + "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": "http://manifests.ydc2.yale.edu/canvas/ac589d85-0289-4427-9827-d0abb60e5e2a", + "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": "http://manifests.ydc2.yale.edu/canvas/84626fb9-d17f-456e-b9c5-ad57a3cc82cb", + "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": "http://manifests.ydc2.yale.edu/canvas/7331beea-6fa0-4547-a968-2c3e9a73d7da", + "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": "http://manifests.ydc2.yale.edu/canvas/e2bc3790-ace4-438a-9b66-ffb3d1ee720c", + "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": "http://manifests.ydc2.yale.edu/canvas/565d561a-352a-4b24-ae24-3d8fdaf2b1e2", + "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": "http://manifests.ydc2.yale.edu/canvas/92eec5d9-9404-472e-a1e9-2df5d12f69cb", + "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": "http://manifests.ydc2.yale.edu/canvas/82d85530-dc09-458b-bdce-185565da3767", + "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": "http://manifests.ydc2.yale.edu/canvas/d3f950e0-a1c9-4f6f-ae16-81001a94c8d0", + "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": "http://manifests.ydc2.yale.edu/canvas/40f73b6f-df5d-4775-bcf2-faf89ad889f1", + "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": "http://manifests.ydc2.yale.edu/canvas/03f4c07f-93ae-4c03-a5cd-680e45a68657", + "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": "http://manifests.ydc2.yale.edu/canvas/02b1ed35-be31-4c8b-8caf-4e4d875f5813", + "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": "http://manifests.ydc2.yale.edu/canvas/6fdf1b0c-52ab-43dd-826d-5dcd90616823", + "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": "http://manifests.ydc2.yale.edu/canvas/5ae77269-c85d-414d-9038-c43f7a052690", + "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": "http://manifests.ydc2.yale.edu/canvas/c6133d4e-57dc-4d28-aa3a-1acceeb2adce", + "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": "http://manifests.ydc2.yale.edu/canvas/47f73890-fff4-4ca8-9dd9-c77417ff5c4e", + "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": "http://manifests.ydc2.yale.edu/canvas/c6dcb14b-9c4a-44a4-a69f-c5fc0b10ab3e", + "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": "http://manifests.ydc2.yale.edu/canvas/2a9421b2-1587-4462-ad51-706b3662d824", + "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": "http://manifests.ydc2.yale.edu/canvas/bc6f62f2-1935-430b-9985-615aae321efb", + "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": "http://manifests.ydc2.yale.edu/canvas/42f7cfe3-812d-4064-8582-f5d98ad6372c", + "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": "http://manifests.ydc2.yale.edu/canvas/3997a44e-9a33-4a4c-b3d8-01c6c0188186", + "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": "http://manifests.ydc2.yale.edu/canvas/6fd46a90-eb74-4ccd-938d-7ff6f15a3b6b", + "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": "http://manifests.ydc2.yale.edu/canvas/1f726b4a-bbab-4811-80c8-186e60b4534f", + "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": "http://manifests.ydc2.yale.edu/canvas/f1b2526f-0714-4628-85fc-73259994efbe", + "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": "http://manifests.ydc2.yale.edu/canvas/d6d035f3-00d3-4f87-a559-a4c5e9878eb1", + "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": "http://manifests.ydc2.yale.edu/canvas/4e575a1e-87b7-40f4-9a8f-22d0aaca833d", + "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": "http://manifests.ydc2.yale.edu/canvas/4031a98a-6481-4b9c-8a9b-4fdee25b3848", + "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": "http://manifests.ydc2.yale.edu/canvas/2acc68cb-e4db-460a-9bb7-e2bf3a3ee66a", + "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": "http://manifests.ydc2.yale.edu/canvas/232fbedb-710a-410d-9446-a0eef30ac745", + "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": "http://manifests.ydc2.yale.edu/canvas/918ff66b-2201-4c8c-bea2-bd6ce3de29a9", + "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": "http://manifests.ydc2.yale.edu/canvas/e213ab89-790e-41b9-986b-bed32daa3690", + "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": "http://manifests.ydc2.yale.edu/canvas/30b7c994-f2a5-4d59-a4e8-83cb0670609b", + "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": "http://manifests.ydc2.yale.edu/canvas/4202af7e-8167-48c0-8dfd-5022d0052db1", + "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": "http://manifests.ydc2.yale.edu/canvas/11409a83-c78b-4896-8685-e4492c450623", + "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": "http://manifests.ydc2.yale.edu/canvas/0f374228-eafb-4d06-b5da-613a45ba2d11", + "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": "http://manifests.ydc2.yale.edu/canvas/9ce95fdf-b833-4403-b249-d72beaab07cd", + "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": "http://manifests.ydc2.yale.edu/canvas/0396678e-11f4-4902-ba9f-bcf26e2d2cd5", + "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": "http://manifests.ydc2.yale.edu/canvas/026e66da-4b0a-4ae3-be44-3c3b13d7811c", + "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": "http://manifests.ydc2.yale.edu/canvas/82843086-498a-4a29-96c3-834094d66eda", + "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": "http://manifests.ydc2.yale.edu/canvas/0b214dfa-e9cb-461d-a893-f0d28a371029", + "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": "http://manifests.ydc2.yale.edu/canvas/bba0df63-05d2-4f66-9dad-702d518d5a2b", + "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": "http://manifests.ydc2.yale.edu/canvas/b184f0a3-34a8-48e0-b043-7d7a66876abe", + "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": "http://manifests.ydc2.yale.edu/canvas/c5dc122d-e071-4a54-ad15-74f680ff13e7", + "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": "http://manifests.ydc2.yale.edu/canvas/e2e49974-3790-4c46-9cd8-1470f0ce8eef", + "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": "http://manifests.ydc2.yale.edu/canvas/787d8772-f53b-4fe0-bac7-b5e2e25e7a5e", + "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": "http://manifests.ydc2.yale.edu/canvas/90e69b5d-0ed8-44fd-9a6b-0d416787d53a", + "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": "http://manifests.ydc2.yale.edu/canvas/490c7fe5-f10b-4583-8f83-bd34dd9c3516", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/media.nga.gov__public__manifests__nga_highlights.json b/fixtures/2-to-3-converter/manifests/media.nga.gov__public__manifests__nga_highlights.json new file mode 100644 index 00000000..b69e101e --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/media.nga.gov__public__manifests__nga_highlights.json @@ -0,0 +1,1454 @@ +{ + "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": "https://media.nga.gov/public/manifests/canvas/106382.json", + "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": "https://media.nga.gov/public/manifests/canvas/61371.json", + "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": "https://media.nga.gov/public/manifests/canvas/52178.json", + "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": "https://media.nga.gov/public/manifests/canvas/46626.json", + "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": "https://media.nga.gov/public/manifests/canvas/1138.json", + "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": "https://media.nga.gov/public/manifests/canvas/46159.json", + "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": "https://media.nga.gov/public/manifests/canvas/33253.json", + "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": "https://media.nga.gov/public/manifests/canvas/1231.json", + "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": "https://media.nga.gov/public/manifests/canvas/37003.json", + "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": "https://media.nga.gov/public/manifests/canvas/576.json", + "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": "https://media.nga.gov/public/manifests/canvas/79.json", + "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": "https://media.nga.gov/public/manifests/canvas/1236.json", + "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": "https://media.nga.gov/public/manifests/canvas/46303.json", + "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": "https://media.nga.gov/public/manifests/canvas/46471.json", + "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": "https://media.nga.gov/public/manifests/canvas/46114.json", + "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": "https://media.nga.gov/public/manifests/canvas/1147.json", + "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": "https://media.nga.gov/public/manifests/canvas/1225.json", + "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": "https://media.nga.gov/public/manifests/canvas/52450.json", + "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": "https://media.nga.gov/public/manifests/canvas/12198.json", + "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": "https://media.nga.gov/public/manifests/canvas/43624.json", + "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": "https://media.nga.gov/public/manifests/canvas/74796.json", + "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": "https://media.nga.gov/public/manifests/canvas/46627.json", + "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": "https://media.nga.gov/public/manifests/canvas/134485.json", + "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": "https://media.nga.gov/public/manifests/canvas/66409.json", + "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": "https://media.nga.gov/public/manifests/canvas/398.json", + "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": "https://media.nga.gov/public/manifests/canvas/164923.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/ncsu-libraries-manifest.json b/fixtures/2-to-3-converter/manifests/ncsu-libraries-manifest.json new file mode 100644 index 00000000..ed90c6ab --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/ncsu-libraries-manifest.json @@ -0,0 +1,1392 @@ +{ + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015", + "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": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/nlw-manuscript-manifest.json b/fixtures/2-to-3-converter/manifests/nlw-manuscript-manifest.json new file mode 100644 index 00000000..2fddae56 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/nlw-manuscript-manifest.json @@ -0,0 +1,10190 @@ +{ + "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": [ + { + "@context": " http://iiif.io/api/image/2/context.json", + "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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389769.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389770.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389771.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389772.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389773.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389774.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389775.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389776.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389777.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389778.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389779.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389780.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389781.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389782.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389783.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389784.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389785.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389786.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389787.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389788.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389789.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389790.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389791.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389792.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389793.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389794.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389795.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389796.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389797.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389798.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389799.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389800.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389801.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389802.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389803.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389804.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389805.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389806.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389807.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389808.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389809.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389810.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389811.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389812.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389813.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389814.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389815.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389816.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389817.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389818.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389819.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389820.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389821.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389822.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389823.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389824.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389825.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389826.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389827.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389828.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389829.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389830.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389831.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389832.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389833.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389834.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389835.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389836.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389837.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389838.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389839.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389840.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389841.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389842.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389843.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389844.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389845.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389846.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/784535/canvas/4389847.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389848.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389849.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389850.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389851.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389852.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389853.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389854.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389855.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389856.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389857.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389858.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389859.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389860.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389861.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389862.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389863.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389864.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389865.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389866.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389867.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389868.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389869.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389870.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389871.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389872.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389873.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389874.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389875.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389876.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389877.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389878.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389879.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389880.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389881.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389882.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389883.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389884.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389885.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389886.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389887.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389888.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389889.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389890.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389891.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389892.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389893.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389894.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389895.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389896.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389897.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389898.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389899.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389900.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389901.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389902.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389903.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389904.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389905.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389906.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389907.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389908.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389909.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389910.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389911.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389912.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389913.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389914.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389915.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389916.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389917.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389918.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389919.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389920.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389921.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389922.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389923.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389924.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389925.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389926.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389927.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389928.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389929.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389930.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389931.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389932.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389933.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389934.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389935.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389936.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389937.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389938.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389939.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389940.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389941.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389942.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389943.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389944.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389945.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389946.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389947.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389948.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389949.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389950.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389951.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389952.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389953.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389954.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389955.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389956.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389957.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389958.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389959.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389960.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389961.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389962.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389963.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389964.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389965.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389966.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389967.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389968.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389969.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389970.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389971.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389972.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389973.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389974.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389975.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389976.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389977.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389978.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389979.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389980.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389981.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389982.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389983.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389984.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389985.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389986.json", + "body": { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/nlw-newspaper-manifest.json b/fixtures/2-to-3-converter/manifests/nlw-newspaper-manifest.json new file mode 100644 index 00000000..8d1ec857 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/nlw-newspaper-manifest.json @@ -0,0 +1,1001 @@ +{ + "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": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "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": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642", + "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": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643", + "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": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/princeton-manifest.json b/fixtures/2-to-3-converter/manifests/princeton-manifest.json new file mode 100644 index 00000000..9667fb1a --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/princeton-manifest.json @@ -0,0 +1,1395 @@ +{ + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "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": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json b/fixtures/2-to-3-converter/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json new file mode 100644 index 00000000..0b413501 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json @@ -0,0 +1,17827 @@ +{ + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_2", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_3", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_4", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_5", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_6", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_7", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_8", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_9", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_10", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_11", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_12", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_13", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_14", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_15", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_16", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_17", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_18", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_19", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_20", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_21", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_22", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_23", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_24", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_25", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_26", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_27", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_28", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_29", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_30", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_31", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_32", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_33", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_34", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_35", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_36", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_37", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_38", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_39", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_40", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_41", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_42", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_43", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_44", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_45", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_46", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_47", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_48", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_49", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_50", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_51", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_52", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_53", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_54", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_55", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_56", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_57", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_58", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_59", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_60", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_61", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_62", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_63", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_64", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_65", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_66", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_67", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_68", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_69", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_70", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_71", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_72", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_73", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_74", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_75", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_76", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_77", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_78", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_79", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_80", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_81", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_82", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_83", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_84", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_85", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_86", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_87", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_88", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_89", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_90", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_91", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_92", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_93", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_94", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_95", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_96", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_97", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_98", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_99", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_100", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_101", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_102", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_103", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_104", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_105", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_106", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_107", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_108", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_109", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_110", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_111", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_112", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_113", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_114", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_115", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_116", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_117", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_118", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_119", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_120", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_121", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_122", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_123", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_124", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_125", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_126", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_127", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_128", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_129", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_130", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_131", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_132", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_133", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_134", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_135", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_136", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_137", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_138", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_139", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_140", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_141", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_142", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_143", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_144", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_145", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_146", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_147", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_148", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_149", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_150", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_151", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_152", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_153", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_154", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_155", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_156", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_157", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_158", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_159", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_160", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_161", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_162", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_163", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_164", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_165", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_166", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_167", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_168", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_169", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_170", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_171", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_172", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_173", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_174", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_175", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_176", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_177", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_178", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_179", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_180", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_181", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_182", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_183", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_184", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_185", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_186", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_187", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_188", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_189", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_190", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_191", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_192", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_193", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_194", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_195", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_196", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_197", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_198", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_199", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_200", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_201", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_202", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_203", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_204", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_205", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_206", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_207", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_208", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_209", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_210", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_211", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_212", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_213", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_214", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_215", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_216", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_217", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_218", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_219", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_220", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_221", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_222", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_223", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_224", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_225", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_226", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_227", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_228", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_229", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_230", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_231", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_232", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_233", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_234", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_235", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_236", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_237", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_238", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_239", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_240", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_241", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_242", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_243", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_244", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_245", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_246", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_247", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_248", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_249", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_250", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_251", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_252", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_253", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_254", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_255", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_256", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_257", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_258", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_259", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_260", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_261", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_262", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_263", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_264", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_265", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_266", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_267", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_268", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_269", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_270", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_271", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_272", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_273", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_274", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_275", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_276", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_277", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_278", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_279", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_280", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_281", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_282", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_283", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_284", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_285", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_286", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_287", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_288", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_289", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_290", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_291", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_292", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_293", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_294", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_295", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_296", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_297", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_298", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_299", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_300", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_301", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_302", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_303", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_304", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_305", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_306", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_307", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_308", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_309", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_310", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_311", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_312", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_313", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_314", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_315", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_316", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_317", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_318", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_319", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_320", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_321", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_322", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_323", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_324", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_325", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_326", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_327", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_328", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_329", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_330", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_331", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_332", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_333", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_334", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_335", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_336", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_337", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_338", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_339", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_340", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_341", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_342", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_343", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_344", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_345", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_346", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_347", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_348", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_349", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_350", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_351", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_352", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_353", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_354", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_355", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_356", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_357", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_358", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_359", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_360", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_361", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_362", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_363", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_364", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_365", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_366", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_367", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_368", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_369", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_370", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_371", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_372", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_373", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_374", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_375", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_376", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_377", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_378", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_379", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_380", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_381", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_382", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_383", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_384", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_385", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_386", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_387", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_388", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_389", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_390", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_391", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_392", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_393", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_394", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_395", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_396", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_397", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_398", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_399", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_400", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_401", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_402", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_403", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_404", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_405", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_406", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_407", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_408", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_409", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_410", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_411", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_412", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_413", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_414", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_415", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_416", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_417", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_418", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_419", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_420", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_421", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_422", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_423", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_424", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_425", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_426", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_427", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_428", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_429", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_430", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_431", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_432", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_433", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_434", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_435", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_436", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_437", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_438", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_439", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_440", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_441", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_442", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_443", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_444", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_445", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_446", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_447", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_448", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_449", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_450", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_451", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_452", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_453", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_454", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_455", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_456", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_457", + "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": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_458", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json b/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json new file mode 100644 index 00000000..eb804097 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json @@ -0,0 +1,5951 @@ +{ + "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": [ + { + "@context": "https://www.w3.org/ns/webmention", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "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": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json b/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json new file mode 100644 index 00000000..828e9dc4 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json @@ -0,0 +1,15126 @@ +{ + "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": [ + { + "@context": "https://www.w3.org/ns/webmention", + "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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e005.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000b.json", + "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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000a.json", + "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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120ar.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120av.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193r.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193v.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e006.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e003.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e002.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e004.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e007.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e008.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassE.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassS.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilE.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilS.json", + "body": { + "format": "image/jpeg", + "height": 6496, + "width": 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": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilSG.json", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/2-to-3-converter/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json b/fixtures/2-to-3-converter/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json new file mode 100644 index 00000000..6f9420b3 --- /dev/null +++ b/fixtures/2-to-3-converter/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json @@ -0,0 +1,2155 @@ +{ + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p2", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p3", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p4", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p5", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p6", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p7", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p8", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p9", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p10", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p11", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p12", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p13", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p14", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p15", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p16", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p17", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p18", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p19", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p20", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p21", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p22", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p23", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p24", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p25", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p26", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p27", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p28", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p29", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p30", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p31", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p32", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p33", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p34", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p35", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p36", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p37", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p38", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p39", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p40", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p41", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p42", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p43", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p44", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p45", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p46", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p47", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p48", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p49", + "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": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p50", + "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://www.w3.org/ns/anno.jsonld", + "http://iiif.io/api/presentation/3/context.json" + ] +} diff --git a/fixtures/v-a/ocean-liners.json b/fixtures/v-a/ocean-liners.json new file mode 100644 index 00000000..efbb3ac0 --- /dev/null +++ b/fixtures/v-a/ocean-liners.json @@ -0,0 +1,314 @@ +{ + "@context": [ + "http://iiif.io/api/presentation/3/context.json", + "http://www.w3.org/ns.anno.jsonld" + ], + "id": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "type": "Manifest", + "viewingDirection": "left-to-right", + "behavior": ["individuals"], + "items": [ + { + "items": [ + { + "items": [ + { + "body": { + "service": [ + { + "profile": "level1", + "type": "ImageService2", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911" + } + ], + "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": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0" + } + ], + "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/package.json b/package.json index 5b7c01a6..0b53d764 100644 --- a/package.json +++ b/package.json @@ -16,14 +16,19 @@ "@types/jest": "^23.3.12", "jest": "^23.6.0", "microbundle": "^0.9.0", + "prettier": "^1.15.3", + "ts-jest": "^23.10.5", "tslib": "^1.9.3", "tslint": "^5.12.0", - "ts-jest": "^23.10.5" + "tslint-plugin-prettier": "^2.0.1" }, "dependencies": { + "@types/object-hash": "^1.2.0", + "@types/traverse": "^0.6.32", "normalizr": "^3.3.0", "object-hash": "^1.3.1", "traverse": "^0.6.6", + "tslint-config-prettier": "^1.17.0", "typesafe-actions": "^3.0.0" } } diff --git a/src/index.ts b/src/index.ts index 131eba3f..4fe493d2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,23 +1,2 @@ -import {Collection} from './types/resources/collection'; - -const collection: Collection = { - id: 'http://...', - type: 'Collection', - label: {en: ['testing']}, - items: [ - { - id: 'http://...', - type: 'Manifest', - label: {en: ['my manifest']}, - items: [ - { - id: 'http://...', - type: 'Canvas', - label: {en: ['my canvas']}, - }, - ], - }, - ], -}; - -console.log(collection); +export * from './types/resources/collection'; +export * from './types/resources/manifest'; diff --git a/src/process/schema.ts b/src/process/schema.ts index 52fc7492..d8dbafc2 100644 --- a/src/process/schema.ts +++ b/src/process/schema.ts @@ -1,399 +1,378 @@ -import {schema, normalize} from 'normalizr'; -import {parseSelectorTarget} from '../utility/annotations'; -import {addMissingIds, buildProcess} from '../utility/compatibility'; +import { schema, normalize } from 'normalizr'; +import { addMissingIds, buildProcess } from '../utility/compatibility'; const collection = new schema.Entity('collections'); const manifest = new schema.Entity('manifests'); const canvas = new schema.Entity('canvases'); -const annotation = new schema.Entity('annotations', {}, { - processStrategy: (original: any): any => { - const body = Array.isArray(original.body) ? original.body : [original.body]; - const target = Array.isArray(original.target) ? original.target : [original.target]; - const newObj = {...original}; - if (original.body) { - newObj.body = body; - } - if (original.target) { - newObj.target = target; - } - return newObj; - }, -}); +const annotation = new schema.Entity('annotations'); const annotationPage = new schema.Entity('annotationPages'); const annotationCollection = new schema.Entity('annotationCollections'); const range = new schema.Entity('ranges'); const contentResource = new schema.Entity('contentResources'); const choice = new schema.Entity('choices'); const canvasReference = new schema.Entity('canvasReferences'); -const selector = new schema.Entity( - 'selectors', - { - id: canvas, - }, - { - processStrategy(value: any): any { - const id = value['@id'] || value.id; - if (id) { - return parseSelectorTarget(id); - } - return value; - }, - } -); +const selector = new schema.Entity('selectors', { + id: canvas, +}); // Unofficial types const service = new schema.Entity('services'); // Union types const partOf = new schema.Array( - { - collection, - manifest, - contentResource, - annotationCollection, - }, - entity => { - switch (entity.type) { - case 'Collection': - return 'collection'; - case 'Manifest': - return 'manifest'; - case 'AnnotationCollection': - return 'annotationCollection'; - default: - return 'contentResource'; - } + { + collection, + manifest, + contentResource, + annotationCollection, + }, + entity => { + switch (entity.type) { + case 'Collection': + return 'collection'; + case 'Manifest': + return 'manifest'; + case 'AnnotationCollection': + return 'annotationCollection'; + default: + return 'contentResource'; } + } ); const canvasOrReference = new schema.Union( - { - selector, - canvasReference, - canvas, - }, - entity => { - if (entity && entity.id && entity.id.indexOf('#') !== -1) { - return 'selector'; - } - if (entity.type === 'SpecificResource') { - return 'canvasReference'; - } - return 'canvas'; + { + selector, + canvasReference, + canvas, + }, + entity => { + if (entity && entity.id && entity.id.indexOf('#') !== -1) { + return 'selector'; + } + if (entity.type === 'SpecificResource') { + return 'canvasReference'; } + return 'canvas'; + } ); -const annotationBodyMappings = { - Choice: 'choice', - Application: 'contentResource', - Dataset: 'contentResource', - Image: 'contentResource', - Sound: 'contentResource', - Text: 'contentResource', - Video: 'contentResource', - TextualBody: 'contentResource', +type AnnotationBodyTypes = 'choice' | 'contentResource'; + +const annotationBodyMappings: { [index: string]: AnnotationBodyTypes } = { + Choice: 'choice', + List: 'choice', + Independents: 'choice', + Application: 'contentResource', + Dataset: 'contentResource', + Image: 'contentResource', + Sound: 'contentResource', + Text: 'contentResource', + Video: 'contentResource', + TextualBody: 'contentResource', }; const annotationBody = new schema.Union( - { - contentResource, - choice, - }, - (input: any): 'choice' | 'contentResource' => { - if (annotationBodyMappings[input.type]) { - return annotationBodyMappings[input.type]; - } - return 'contentResource'; + { + contentResource, + choice, + }, + (input: any): AnnotationBodyTypes => { + if (annotationBodyMappings[input.type]) { + return annotationBodyMappings[input.type]; } + return 'contentResource'; + } ); const rangeItem = new schema.Union( - { - canvas, - selector, - range, - canvasReference, - }, - input => { - if (input && input.id && input.id.indexOf('#') !== -1) { - return 'selector'; - } - - switch (input.type) { - case 'Canvas': - return 'canvas'; - case 'Range': - return 'range'; - case 'SpecificResource': - default: - // @todo default? - return 'canvasReference'; - } + { + canvas, + selector, + range, + canvasReference, + }, + input => { + if (input && input.id && input.id.indexOf('#') !== -1) { + return 'selector'; + } + + switch (input.type) { + case 'Canvas': + return 'canvas'; + case 'Range': + return 'range'; + case 'SpecificResource': + default: + // @todo default? + return 'canvasReference'; } + } ); // Root resource -/** - * Dereferencable resources: - * - * - Collection (Required) - * - Manifest (Required) - * - Canvas (Recommended) - * - Annotation (Recommended) - * - AnnotationPage (Required) - * - AnnotationCollection (Optional) - * - Content Resource (Required) - * - Range (Optional) - */ -const RESOURCE_TYPE_MAP = { - Collection: 'collection', - Sequence: 'sequence', - Manifest: 'manifest', - Canvas: 'canvas', - AnnotationCollection: 'annotationCollection', - AnnotationPage: 'annotationPage', - Annotation: 'annotation', - Range: 'range', - // Content resources. - Application: 'contentResource', - Dataset: 'contentResource', - Image: 'contentResource', - Sound: 'contentResource', - Text: 'contentResource', - Video: 'contentResource', - TextualBody: 'contentResource', + +type DereferencableResourceTypes = + | 'collection' + | 'sequence' + | 'manifest' + | 'canvas' + | 'annotationCollection' + | 'annotationPage' + | 'annotation' + | 'range' + | 'contentResource' + | 'service'; + +const RESOURCE_TYPE_MAP: { [index: string]: DereferencableResourceTypes } = { + Collection: 'collection', + Sequence: 'sequence', + Manifest: 'manifest', + Canvas: 'canvas', + AnnotationCollection: 'annotationCollection', + AnnotationPage: 'annotationPage', + Annotation: 'annotation', + Range: 'range', + // Content resources. + Application: 'contentResource', + Dataset: 'contentResource', + Image: 'contentResource', + Sound: 'contentResource', + Text: 'contentResource', + Video: 'contentResource', + TextualBody: 'contentResource', }; const resource = new schema.Union( - { - collection, - manifest, - canvas, - annotationCollection, - annotationPage, - annotation, - range, - contentResource, - service, - }, - entity => { - if (RESOURCE_TYPE_MAP[entity.type]) { - return RESOURCE_TYPE_MAP[entity.type]; - } - if (entity.profile) { - return 'service'; - } - throw Error('Unknown entity type'); + { + collection, + manifest, + canvas, + annotationCollection, + annotationPage, + annotation, + range, + contentResource, + service, + }, + (entity: any): DereferencableResourceTypes => { + if (RESOURCE_TYPE_MAP[entity.type]) { + return RESOURCE_TYPE_MAP[entity.type]; + } + if (entity.profile) { + return 'service'; } + throw Error('Unknown entity type'); + } ); // =========================================================================== // 1) Collections // =========================================================================== collection.define({ - // Structural - items: new schema.Array( - { - collection, - manifest, - }, - entity => (entity.type === 'Manifest' ? 'manifest' : 'collection') - ), - annotations: [annotationPage], - - // Linking. - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - - // Extra. - thumbnail: [contentResource], - posterCanvas: canvas, + // Structural + items: new schema.Array( + { + collection, + manifest, + }, + entity => (entity.type === 'Manifest' ? 'manifest' : 'collection') + ), + annotations: [annotationPage], + + // Linking. + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + + // Extra. + thumbnail: [contentResource], + posterCanvas: canvas, }); // =========================================================================== // 2) Manifests // =========================================================================== manifest.define({ - items: [canvas], - structures: [range], - annotations: [annotationPage], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - start: canvasOrReference, - - // Extra - thumbnail: [contentResource], - posterCanvas: canvas, + items: [canvas], + structures: [range], + annotations: [annotationPage], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + start: canvasOrReference, + + // Extra + thumbnail: [contentResource], + posterCanvas: canvas, }); // =========================================================================== // 3) Canvases // =========================================================================== canvas.define({ - // Structural. - items: [annotationPage], - annotations: [annotationPage], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - - // Extra - thumbnail: [contentResource], - posterCanvas: canvas, + // Structural. + items: [annotationPage], + annotations: [annotationPage], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + + // Extra + thumbnail: [contentResource], + posterCanvas: canvas, }); // =========================================================================== // 4) Annotation // =========================================================================== annotation.define({ - // Structural. - body: [annotationBody], - target: [selector], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - - // Extra - thumbnail: [contentResource], + // Structural. + body: [annotationBody], + target: [selector], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + + // Extra + thumbnail: [contentResource], }); // =========================================================================== // 5) Annotation Collection // =========================================================================== annotationCollection.define({ - // Structural. - items: [annotationPage], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - - // extra - thumbnail: [contentResource], - - // Paging. - first: annotationPage, - last: annotationPage, + // Structural. + items: [annotationPage], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + + // extra + thumbnail: [contentResource], + + // Paging. + first: annotationPage, + last: annotationPage, }); // =========================================================================== // 6) Annotation Page // =========================================================================== annotationPage.define({ - // Structural. - items: [annotation], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - - // Extra - thumbnail: [contentResource], - - // Paging. - next: annotationPage, - previous: annotationPage, + // Structural. + items: [annotation], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + + // Extra + thumbnail: [contentResource], + + // Paging. + next: annotationPage, + previous: annotationPage, }); // =========================================================================== // 7) Range // =========================================================================== range.define({ - // Structural. - items: [rangeItem], - annotations: [annotationPage], - - // Linking - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - homepage: contentResource, - rendering: [contentResource], - partOf: partOf, - start: canvasOrReference, - supplementary: annotationCollection, - - // Extra - thumbnail: [contentResource], + // Structural. + items: [rangeItem], + annotations: [annotationPage], + + // Linking + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + homepage: contentResource, + rendering: [contentResource], + partOf: partOf, + start: canvasOrReference, + supplementary: annotationCollection, + + // Extra + thumbnail: [contentResource], }); // =========================================================================== // 8) Content Resource // =========================================================================== contentResource.define({ - // Linking. - seeAlso: [contentResource], - service: [service], - logo: [contentResource], - rendering: [contentResource], - partOf: partOf, - // Structural - annotations: [annotationPage], + // Linking. + seeAlso: [contentResource], + service: [service], + logo: [contentResource], + rendering: [contentResource], + partOf: partOf, + // Structural + annotations: [annotationPage], }); // =========================================================================== // 9) Choice // =========================================================================== choice.define({ - default: annotation, - item: [annotation], + default: annotation, + item: [annotation], }); // =========================================================================== // 10) Canvas Reference // =========================================================================== canvasReference.define({ - source: canvas, + source: canvas, }); const preprocess = buildProcess([addMissingIds]); const normalizeResource = (rawResource: any, customSchema = resource) => - normalize(preprocess(rawResource), customSchema); + normalize(preprocess(rawResource), customSchema); export { - collection, - manifest, - canvas, - annotation, - annotationPage, - annotationCollection, - range, - contentResource, - choice, - canvasReference, - service, - partOf, - annotationBody, - rangeItem, - RESOURCE_TYPE_MAP, - resource, - preprocess, - normalizeResource as normalize, + collection, + manifest, + canvas, + annotation, + annotationPage, + annotationCollection, + range, + contentResource, + choice, + canvasReference, + service, + partOf, + annotationBody, + rangeItem, + RESOURCE_TYPE_MAP, + resource, + preprocess, + normalizeResource as normalize, }; diff --git a/src/types/iiif/descriptive.ts b/src/types/iiif/descriptive.ts index 9870748f..389f0deb 100644 --- a/src/types/iiif/descriptive.ts +++ b/src/types/iiif/descriptive.ts @@ -1,30 +1,30 @@ -import {SingleReference} from '../reference'; -import {OmitProperties} from '../utility'; +import { SingleReference } from '../reference'; +import { OmitProperties } from '../utility'; export type InternationalString = { - [language: string]: string[]; + [language: string]: string[]; }; export type MetadataItem = { - label: InternationalString; - value: InternationalString; + label: InternationalString; + value: InternationalString; }; export type DescriptiveProperties = { - label: InternationalString | null; - metadata: MetadataItem[]; - summary: InternationalString | null; - requiredStatement: MetadataItem | null; - rights: string | null; - navDate: string | null; - language: string[]; - // @todo Thumbnail - thumbnail: any; - // @todo Poster canvas - posterCanvas: any; + label: InternationalString | null; + metadata: MetadataItem[]; + summary: InternationalString | null; + requiredStatement: MetadataItem | null; + rights: string | null; + navDate: string | null; + language: string[]; + // @todo Thumbnail + thumbnail: any; + // @todo Poster canvas + posterCanvas: any; }; export type DescriptiveNormalized = OmitProperties & { - thumbnail: Array>; - posterCanvas: SingleReference<'canvas'> | null; + thumbnail: Array>; + posterCanvas: SingleReference<'canvas'> | null; }; diff --git a/src/types/iiif/linking.ts b/src/types/iiif/linking.ts index db9da715..7d1dfb13 100644 --- a/src/types/iiif/linking.ts +++ b/src/types/iiif/linking.ts @@ -9,25 +9,21 @@ getSeeAlso, getSupplementary, */ -import {Reference, SingleReference} from '../reference'; +import { Reference, SingleReference } from '../reference'; +import { ContentResource } from '../resources/contentResource'; +import { Service } from '../resources/service'; +import { Canvas } from '../resources/canvas'; +import { AnnotationCollection } from '../resources/annotationCollection'; export type LinkingProperties = { - // @todo see also - seeAlso: [any]; - // @todo service - service: [any]; - // @todo logo - logo: [any]; - // @todo homepage - homepage: [any]; - // @todo rendering - rendering: [any]; - // @todo part of - partOf: [any]; - // @todo start - start: [any]; - // @todo supplementary - supplementary: [any]; + seeAlso: ContentResource[]; + service: Service[]; + logo: ContentResource[]; + homepage: ContentResource[]; + rendering: ContentResource[]; + partOf: Array; + start: Canvas[]; + supplementary: ContentResource[]; }; export type LinkingNormalized = { diff --git a/src/types/iiif/structural.ts b/src/types/iiif/structural.ts index e12a9462..ad2a3242 100644 --- a/src/types/iiif/structural.ts +++ b/src/types/iiif/structural.ts @@ -1,11 +1,12 @@ -import {Reference, SingleReference} from '../reference'; +import { Reference, SingleReference } from '../reference'; +import { AnnotationPage } from '../resources/annotationPage'; export type StructuralProperties = { - items: T[]; - // @todo annotations - annotations: [any]; - // @todo structures - structures: [any]; + items: T[]; + // @todo annotations + annotations: AnnotationPage[]; + // @todo structures + structures: Range[]; }; export type StructuralNormalized | Reference

, P> = { diff --git a/src/types/iiif/technical.ts b/src/types/iiif/technical.ts index 31902cf7..1fcc65b9 100644 --- a/src/types/iiif/technical.ts +++ b/src/types/iiif/technical.ts @@ -1,56 +1,46 @@ -type ResourceType = - 'Collection' | - 'Manifest' | - 'Canvas' | - 'Annotation' | - 'AnnotationPage' | - 'AnnotationCollection' | - 'Range' | - 'ContentResource' | - 'Choice' | - 'CanvasReference' | - 'Service'; +export type ResourceType = + | 'Collection' + | 'Manifest' + | 'Canvas' + | 'Annotation' + | 'AnnotationPage' + | 'AnnotationCollection' + | 'Range' + | 'ContentResource' + | 'Choice' + | 'CanvasReference' + | 'Service'; -export enum ViewingDirection { - LeftToRight = 'left-to-right', - RightToLeft = 'right-to-left', - TopToBottom = 'top-to-bottom', - BottomToTop = 'bottom-to-top', -} +export type ViewingDirection = 'left-to-right' | 'right-to-left' | 'top-to-bottom' | 'bottom-to-top'; -export enum SpecificationBehaviours { - AutoAdvance = 'auto-advance', - Continuous = 'continuous', - FacingPages = 'facing-pages', - Individuals = 'individuals', - MultiPart = 'multi-part', - NoNav = 'no-nav', - NonPaged = 'non-paged', - Hidden = 'hidden', - Paged = 'paged', - Repeat = 'repeat', - Sequence = 'sequence', - ThumbnailNav = 'thumbnail-nav', - Together = 'together', - Unordered = 'unordered', -} +export type SpecificationBehaviours = + | 'auto-advance' + | 'continuous' + | 'facing-pages' + | 'individuals' + | 'multi-part' + | 'no-nav' + | 'non-paged' + | 'hidden' + | 'paged' + | 'repeat' + | 'sequence' + | 'thumbnail-nav' + | 'together' + | 'unordered'; -export enum SpecificationTimeMode { - Trim = 'trim', - Scale = 'scale', - Loop = 'loop', -} +export type SpecificationTimeMode = 'trim' | 'scale' | 'loop'; export type TechnicalProperties = { - id: string; - type: ResourceType; - format: string; - profile: string; - height: number; - width: number; - duration: number; - viewingDirection: ViewingDirection; - behaviour: SpecificationBehaviours[] | string[]; - timeMode: SpecificationTimeMode | string; - motivation: string; + id: string; + type: ResourceType; + format: string; + profile: string; + height: number; + width: number; + duration: number; + viewingDirection: ViewingDirection; + behaviour: SpecificationBehaviours[] | string[]; + timeMode: SpecificationTimeMode | string; + motivation: string; }; diff --git a/src/types/reference.ts b/src/types/reference.ts index 3938a918..f7e0463b 100644 --- a/src/types/reference.ts +++ b/src/types/reference.ts @@ -1,6 +1,6 @@ export type Reference = { - schema: T; - id: string; + schema: T; + id: string; }; export type SingleReference = string; diff --git a/src/types/resources/annotation.ts b/src/types/resources/annotation.ts index fc13e06e..173ec5e3 100644 --- a/src/types/resources/annotation.ts +++ b/src/types/resources/annotation.ts @@ -1,237 +1,253 @@ -import {TechnicalProperties} from '../iiif/technical'; -import {DescriptiveNormalized, DescriptiveProperties} from '../iiif/descriptive'; -import {LinkingNormalized, LinkingProperties} from '../iiif/linking'; -import {OmitProperties, SomeRequired} from '../utility'; +import { TechnicalProperties } from '../iiif/technical'; +import { DescriptiveNormalized, DescriptiveProperties } from '../iiif/descriptive'; +import { LinkingNormalized, LinkingProperties } from '../iiif/linking'; +import { OmitProperties, SomeRequired } from '../utility'; +import { ContentResource } from './contentResource'; type OmittedTechnical = 'format' | 'profile' | 'height' | 'width' | 'duration' | 'viewingDirection' | 'motivation'; -type OmittedDescriptive = 'posterCanvas' | 'navDate' | 'language' | 'rights'; -type OmittedLinking = 'start' | 'supplementary'; +type OmittedDescriptive = 'posterCanvas' | 'navDate' | 'language' | 'rights'; +type OmittedLinking = 'start' | 'supplementary'; type Technical = OmitProperties; type Descriptive = OmitProperties; type Linking = OmitProperties; -type W3CMotivation = - 'assessing' | - 'bookmarking' | - 'classifying' | - 'commenting' | - 'describing' | - 'editing' | - 'highlighting' | - 'identifying' | - 'linking' | - 'moderating' | - 'questioning' | - 'replying' | - 'tagging'; - -type AnyMotivation = W3CMotivation | string; - -type LinkedResource = string | {id: string} | any; - -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 W3CMotivation = + | 'assessing' + | 'bookmarking' + | 'classifying' + | 'commenting' + | 'describing' + | 'editing' + | 'highlighting' + | 'identifying' + | 'linking' + | 'moderating' + | 'questioning' + | 'replying' + | 'tagging'; + +export type AnyMotivation = W3CMotivation | string; + +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[]; }; -type ResourceBaseProperties = OtherProperties & { - role?: string; +export type ResourceBaseProperties = OtherProperties & { + role?: string; }; -type ExternalWebResource = ResourceBaseProperties & { - id?: string; - type: 'Dataset' | 'Image' | 'Video' | 'Sound' | 'Text'; - format?: string; - language?: string; - processingLanguage?: string; - textDirection: 'ltr' | 'rtl' | 'auto'; +export type ExternalResourceTypes = 'Dataset' | 'Image' | 'Video' | 'Sound' | 'Text'; + +export type ExternalWebResource = ResourceBaseProperties & { + id?: string; + type: 'Dataset' | 'Image' | 'Video' | 'Sound' | 'Text'; + format?: string; + language?: string | string[]; + processingLanguage?: string; + textDirection?: 'ltr' | 'rtl' | 'auto'; }; -type EmbeddedResource = ResourceBaseProperties & { - id?: string; - type: 'TextualBody' | string; - purpose?: string | string[]; - value?: string; - language?: string | string[]; - format?: string; +export type EmbeddedResource = ResourceBaseProperties & { + id?: string; + type: 'TextualBody' | string; + purpose?: string | string[]; + value?: string; + language?: string | string[]; + format?: string; }; -type SpecificResource = ResourceBaseProperties & { - id?: string; - type?: 'SpecificResource' | string; - state?: State | State[]; - purpose?: AnyMotivation | AnyMotivation[]; - source?: LinkedResource; // @todo change to specific resource. - selector?: Selector | Selector[]; - styleClass?: string; - renderedVia?: Agent | Agent[]; - scope?: LinkedResource; +export type SpecificResource = ResourceBaseProperties & { + id?: string; + type?: 'SpecificResource' | string; + state?: State | State[]; + purpose?: AnyMotivation | AnyMotivation[]; + source?: LinkedResource; // @todo change to specific resource. + selector?: Selector | Selector[]; + styleClass?: string; + renderedVia?: Agent | Agent[]; + scope?: LinkedResource; }; -type Body = string | EmbeddedResource | ExternalWebResource | SpecificResource; -type Target = string | ExternalWebResource | SpecificResource; - -type RefinedBy = { - refinedBy?: string | - FragmentSelector | - CssSelector | - XPathSelector | - TextQuoteSelector | - TextPositionSelector | - DataPositionSelector | - SvgSelector; -}; +export type Body = string | EmbeddedResource | ExternalWebResource | SpecificResource; +export type Target = string | ExternalWebResource | SpecificResource; -type FragmentSelector = RefinedBy & { - type: 'FragmentSelector'; - value: string; - conformsTo?: string; +export type RefinedBy = { + refinedBy?: + | string + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector; }; -type CssSelector = RefinedBy & { - type: 'CssSelector'; - value: string; +export type FragmentSelector = RefinedBy & { + type: 'FragmentSelector'; + value: string; + conformsTo?: string; }; -type XPathSelector = RefinedBy & { - type: 'XPathSelector'; - value: string; + +export type CssSelector = RefinedBy & { + type: 'CssSelector'; + value: string; }; -type TextQuoteSelector = RefinedBy & { - type: 'TextQuoteSelector'; - exact: string; - prefix?: string; - suffix?: string; +export type XPathSelector = RefinedBy & { + type: 'XPathSelector'; + value: string; }; -type TextPositionSelector = RefinedBy & { - type: 'TextPositionSelector'; - start: number; - end: number; +export type TextQuoteSelector = RefinedBy & { + type: 'TextQuoteSelector'; + exact: string; + prefix?: string; + suffix?: string; }; -type DataPositionSelector = RefinedBy & { - type: 'DataPositionSelector'; - start: number; - end: number; +export type TextPositionSelector = RefinedBy & { + type: 'TextPositionSelector'; + start: number; + end: number; }; -type SvgSelector = RefinedBy & { - type: 'SvgSelector'; - value: string; -} | { - type: 'SvgSelector'; - id: string; +export type DataPositionSelector = RefinedBy & { + type: 'DataPositionSelector'; + start: number; + end: number; }; +export type SvgSelector = + | RefinedBy & { + type: 'SvgSelector'; + value: string; + } + | { + type: 'SvgSelector'; + id: string; + }; -type RangeSelector = { - type: 'RangeSelector'; - startSelector: T; - endSelector: T; +export type RangeSelector = { + type: 'RangeSelector'; + startSelector: T; + endSelector: T; }; -type Selector = string | - FragmentSelector | - CssSelector | - XPathSelector | - TextQuoteSelector | - TextPositionSelector | - DataPositionSelector | - SvgSelector | - RangeSelector | - RangeSelector | - RangeSelector | - RangeSelector | - RangeSelector | - RangeSelector | - RangeSelector; - -type State = BasicState | TimeState | RequestHeaderState; - -type BasicState = RefinedByState & { - id: string; -}; +export type Selector = + | string + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector; -type RefinedByState = { - refinedBy?: FragmentSelector | - CssSelector | - XPathSelector | - TextQuoteSelector | - TextPositionSelector | - DataPositionSelector | - SvgSelector | - State; -}; +export type State = BasicState | TimeState | RequestHeaderState; -type TimeState = RefinedByState & { - type: 'TimeState'; - sourceDate: string | string[]; - cached?: string | string[]; -} | RefinedByState & { - type: 'TimeState'; - sourceDateStart: string; - sourceDateEnd: string; - cached?: string | string[]; +export type BasicState = RefinedByState & { + id: string; }; -type RequestHeaderState = RefinedByState & { - type: 'HttpRequestState'; - value: string; +export type RefinedByState = { + refinedBy?: + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector + | State; }; -type Stylesheet = { - id: string; - type: 'CssStylesheet'; -} | { - type: 'CssStylesheet'; - value?: string | string[]; +export type TimeState = + | RefinedByState & { + type: 'TimeState'; + sourceDate: string | string[]; + cached?: string | string[]; + } + | RefinedByState & { + type: 'TimeState'; + sourceDateStart: string; + sourceDateEnd: string; + cached?: string | string[]; + }; + +export type RequestHeaderState = RefinedByState & { + type: 'HttpRequestState'; + value: string; }; -type ChoiceBody = { - id?: string; - type: 'Choice'; - items: Body[]; +export type Stylesheet = + | { + id: string; + type: 'CssStylesheet'; + } + | { + type: 'CssStylesheet'; + format?: string; + value?: string | string[]; + }; + +export type ChoiceBody = { + id?: string; + type: 'Choice'; + items: Body[]; }; -type ChoiceTarget = { - type: 'Choice'; - items: Target[]; +export type ChoiceTarget = { + type: 'Choice'; + items: Target[]; }; -type Creator = string | string[] | Agent | Agent[]; +export type Creator = string | string[] | Agent | Agent[]; + +export type W3CAnnotationBody = Body | ChoiceBody; +export type W3CAnnotationTarget = Target | ChoiceTarget | TargetComposite | TargetList | TargetIndependents; -type AnnotationBody = Body | string | ChoiceBody; -type AnnotationTarget = Target | string | ChoiceTarget | TargetComposite | TargetList | TargetIndependents; +export type AnnotationBody = W3CAnnotationBody | ContentResource; +export type AnnotationTarget = W3CAnnotationTarget | ContentResource; -type TargetComposite = { - type: 'Composite'; - items: Array; +export type TargetComposite = { + type: 'Composite'; + items: Array; }; -type TargetList = { - type: 'List'; - items: Array; +export type TargetList = { + type: 'List'; + items: Array; }; -type TargetIndependents = { - type: 'Independents'; - items: Array; +export type TargetIndependents = { + type: 'Independents'; + items: Array; }; -type Audience = { +export type Audience = { id: string; type: 'Audience' | string; [T: string]: string; }; -type Agent = { +export type Agent = { id?: string; type?: 'Person' | 'Organisation' | 'Software'; name?: string | string[]; @@ -242,25 +258,37 @@ type Agent = { homepage?: string | string[]; }; -type AnnotationW3C = OtherProperties & { +export type AnnotationW3C = OtherProperties & { '@context'?: 'http://www.w3.org/ns/anno.jsonld'; - body?: AnnotationBody | AnnotationBody[]; + body?: W3CAnnotationBody | W3CAnnotationBody[]; bodyValue?: string; - target?: AnnotationTarget | AnnotationTarget[]; + target?: W3CAnnotationTarget | W3CAnnotationTarget[]; canonical?: string; via?: string; stylesheet?: string | Stylesheet; }; -export interface Annotation extends - SomeRequired, +export type AnnotationW3cNormalised = Required & { + '@context': string | string[]; + body: AnnotationBody[] | []; + bodyValue: string; + target: AnnotationTarget[] | []; + canonical: string; + via: string; + stylesheet: Stylesheet; +}; + +export interface Annotation + extends SomeRequired, Partial, Partial, - AnnotationW3C { + Partial> { + body?: AnnotationBody | AnnotationBody[]; + target?: AnnotationTarget | W3CAnnotationTarget[]; } -export interface AnnotationNormalized extends - OmitProperties, +export interface AnnotationNormalized + extends OmitProperties, OmitProperties, - OmitProperties { -} + OmitProperties, + AnnotationW3cNormalised {} diff --git a/src/types/resources/annotationCollection.ts b/src/types/resources/annotationCollection.ts new file mode 100644 index 00000000..e05b50c9 --- /dev/null +++ b/src/types/resources/annotationCollection.ts @@ -0,0 +1,41 @@ +import { W3CAnnotationPage } from './annotationPage'; +import { OmitProperties, 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'; + +type OmittedTechnical = + | 'type' + | 'format' + | 'profile' + | 'height' + | 'width' + | 'duration' + | 'viewingDirection' + | 'timeMode'; +type OmittedDescriptive = 'posterCanvas' | 'navDate' | 'language'; +type OmittedLinking = 'partOf' | 'start' | 'supplementary'; + +type Technical = OmitProperties; +type Descriptive = OmitProperties; +type Linking = OmitProperties; + +export type W3CAnnotationCollection = { + '@context'?: string; + id: string; + type: 'AnnotationCollection'; + label: string | string[]; + total?: number; + first?: string | OmitProperties; + last?: string; +}; + +export interface AnnotationCollection + extends SomeRequired, + Partial, + Partial, + OmitProperties { + partOf: Array; +} diff --git a/src/types/resources/annotationPage.ts b/src/types/resources/annotationPage.ts index a5314a88..fff31538 100644 --- a/src/types/resources/annotationPage.ts +++ b/src/types/resources/annotationPage.ts @@ -1 +1,44 @@ -export interface AnnotationPage {} +import { AnnotationCollection, W3CAnnotationCollection } from './annotationCollection'; +import { OmitProperties, 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'; + +type OmittedTechnical = + | 'type' + | 'format' + | 'profile' + | 'height' + | 'width' + | 'duration' + | 'viewingDirection' + | 'timeMode'; +type OmittedDescriptive = 'posterCanvas' | 'navDate' | 'language'; +type OmittedLinking = 'partOf' | 'start' | 'supplementary'; +type OmittedStructural = 'annotations' | 'structures'; + +type Technical = OmitProperties; +type Descriptive = OmitProperties; +type Linking = OmitProperties; +type Structural = OmitProperties, OmittedStructural>; + +export type W3CAnnotationPage = { + '@context'?: string; + type: 'AnnotationPage'; + partOf?: SomeRequired | string; + items?: Annotation[]; + next?: string; + prev?: string; + startIndex?: number; +}; + +export interface AnnotationPage + extends SomeRequired, + Partial, + Partial, + Partial, + SomeRequired, 'type'> { + partOf?: Array>; +} diff --git a/src/types/resources/canvas.ts b/src/types/resources/canvas.ts index 463c2e41..62248a16 100644 --- a/src/types/resources/canvas.ts +++ b/src/types/resources/canvas.ts @@ -1,16 +1,16 @@ -import {TechnicalProperties} from '../iiif/technical'; -import {DescriptiveNormalized, DescriptiveProperties} from '../iiif/descriptive'; -import {StructuralNormalized, StructuralProperties} from '../iiif/structural'; -import {LinkingNormalized, LinkingProperties} from '../iiif/linking'; -import {OmitProperties, SomeRequired} from '../utility'; -import {SingleReference} from '../reference'; -import {AnnotationPage} from './annotationPage'; +import { TechnicalProperties } from '../iiif/technical'; +import { DescriptiveNormalized, DescriptiveProperties } from '../iiif/descriptive'; +import { StructuralNormalized, StructuralProperties } from '../iiif/structural'; +import { LinkingNormalized, LinkingProperties } from '../iiif/linking'; +import { OmitProperties, SomeRequired } from '../utility'; +import { SingleReference } from '../reference'; +import { AnnotationPage } from './annotationPage'; export type CanvasItems = AnnotationPage; type OmittedTechnical = 'format' | 'profile' | 'viewingDirection' | 'timeMode'; -type OmittedDescriptive = 'language'; -type OmittedLinking = 'start' | 'supplementary'; +type OmittedDescriptive = 'language'; +type OmittedLinking = 'start' | 'supplementary'; type OmittedStructural = 'structures'; type Technical = OmitProperties; @@ -18,18 +18,18 @@ type Descriptive = OmitProperties; type Structural = OmitProperties, OmittedStructural>; type Linking = OmitProperties; -export interface Canvas extends - SomeRequired, - SomeRequired, +export interface Canvas + extends SomeRequired, + Partial, Partial, Partial { + '@context'?: string | string[]; } type ItemSchemas = 'annotationPage'; -export interface CanvasNormalized extends - OmitProperties, +export interface CanvasNormalized + extends OmitProperties, OmitProperties, OmitProperties, ItemSchemas>, OmittedStructural>, - OmitProperties { -} + OmitProperties {} diff --git a/src/types/resources/collection.ts b/src/types/resources/collection.ts index a8e1263a..5a45794e 100644 --- a/src/types/resources/collection.ts +++ b/src/types/resources/collection.ts @@ -1,36 +1,35 @@ -import {TechnicalProperties} from '../iiif/technical'; -import {DescriptiveNormalized, DescriptiveProperties} from '../iiif/descriptive'; -import {StructuralNormalized, StructuralProperties} from '../iiif/structural'; -import {LinkingNormalized, LinkingProperties} from '../iiif/linking'; -import {Manifest} from './manifest'; -import {OmitProperties, SomeRequired} from '../utility'; -import {Reference} from '../reference'; +import { TechnicalProperties } from '../iiif/technical'; +import { DescriptiveNormalized, DescriptiveProperties } from '../iiif/descriptive'; +import { StructuralNormalized, StructuralProperties } from '../iiif/structural'; +import { LinkingNormalized, LinkingProperties } from '../iiif/linking'; +import { Manifest } from './manifest'; +import { OmitProperties, SomeRequired } from '../utility'; +import { Reference } from '../reference'; export type CollectionItems = Collection | Manifest; type OmittedTechnical = 'format' | 'profile' | 'height' | 'width' | 'duration' | 'timeMode'; -type OmittedDescriptive = 'language'; -type OmittedStructural = 'structures'; -type OmittedLinking = 'start' | 'supplementary'; +type OmittedDescriptive = 'language'; +type OmittedStructural = 'structures'; +type OmittedLinking = 'start' | 'supplementary'; type Technical = OmitProperties; type Descriptive = OmitProperties; type Structural = OmitProperties, OmittedStructural>; type Linking = OmitProperties; -export interface Collection extends - SomeRequired, +export interface Collection + extends SomeRequired, SomeRequired, SomeRequired, Partial { + '@context'?: string | string[]; } export type ItemSchemas = 'collection' | 'manifest'; -export interface CollectionNormalized extends - OmitProperties, +export interface CollectionNormalized + extends OmitProperties, OmitProperties, OmitProperties, ItemSchemas>, OmittedStructural>, - OmitProperties { - -} + OmitProperties {} diff --git a/src/types/resources/contentResource.ts b/src/types/resources/contentResource.ts new file mode 100644 index 00000000..1b3d35ea --- /dev/null +++ b/src/types/resources/contentResource.ts @@ -0,0 +1,15 @@ +import { EmbeddedResource, ExternalResourceTypes, ExternalWebResource, SpecificResource } from './annotation'; +import { Service } from './service'; + +export type ContentResource = + | string + | EmbeddedResource + | ExternalWebResource + | SpecificResource + | ExternalWebResource & { + type: ExternalResourceTypes | string; + height?: number; + width?: number; + service?: [Service]; + duration?: number; + }; diff --git a/src/types/resources/manifest.ts b/src/types/resources/manifest.ts index 0354d35f..2afdbe8f 100644 --- a/src/types/resources/manifest.ts +++ b/src/types/resources/manifest.ts @@ -1,34 +1,34 @@ -import {TechnicalProperties} from '../iiif/technical'; -import {DescriptiveNormalized, DescriptiveProperties} from '../iiif/descriptive'; -import {StructuralNormalized, StructuralProperties} from '../iiif/structural'; -import {LinkingNormalized, LinkingProperties} from '../iiif/linking'; -import {OmitProperties, SomeRequired} from '../utility'; -import {SingleReference} from '../reference'; -import {Canvas} from './canvas'; +import { TechnicalProperties } from '../iiif/technical'; +import { DescriptiveNormalized, DescriptiveProperties } from '../iiif/descriptive'; +import { StructuralNormalized, StructuralProperties } from '../iiif/structural'; +import { LinkingNormalized, LinkingProperties } from '../iiif/linking'; +import { OmitProperties, SomeRequired } from '../utility'; +import { SingleReference } from '../reference'; +import { Canvas } from './canvas'; export type ManifestItems = Canvas; type OmittedTechnical = 'format' | 'profile' | 'height' | 'width' | 'duration' | 'timeMode'; -type OmittedDescriptive = 'language'; -type OmittedLinking = 'supplementary'; +type OmittedDescriptive = 'language'; +type OmittedLinking = 'supplementary'; type Technical = OmitProperties; type Descriptive = OmitProperties; type Structural = StructuralProperties; type Linking = OmitProperties; -export interface Manifest extends - SomeRequired, +export interface Manifest + extends SomeRequired, SomeRequired, SomeRequired, Partial { + '@context'?: string | string[]; } type ItemSchemas = 'collection' | 'manifest'; -export interface ManifestNormalized extends - OmitProperties, +export interface ManifestNormalized + extends OmitProperties, OmitProperties, StructuralNormalized, ItemSchemas>, - OmitProperties { -} + OmitProperties {} diff --git a/src/types/resources/range.ts b/src/types/resources/range.ts new file mode 100644 index 00000000..9b4d0766 --- /dev/null +++ b/src/types/resources/range.ts @@ -0,0 +1,32 @@ +import { TechnicalProperties } from '../iiif/technical'; +import { DescriptiveNormalized, DescriptiveProperties } from '../iiif/descriptive'; +import { StructuralNormalized, StructuralProperties } from '../iiif/structural'; +import { LinkingNormalized, LinkingProperties } from '../iiif/linking'; +import { OmitProperties, SomeRequired } from '../utility'; +import { Reference } from '../reference'; +import { Canvas } from './canvas'; + +export type RangeItems = Range | Canvas | string; + +type OmittedTechnical = 'format' | 'profile' | 'height' | 'width' | 'duration' | 'timeMode'; +type OmittedDescriptive = 'language'; +type OmittedStructural = 'structures'; + +type Technical = OmitProperties; +type Descriptive = OmitProperties; +type Structural = OmitProperties, OmittedStructural>; +type Linking = LinkingProperties; + +export interface Range + extends SomeRequired, + SomeRequired, + Partial, + Partial {} + +type ItemSchemas = 'range' | 'canvas'; + +export interface RangeNormalized + extends OmitProperties, + OmitProperties, + OmitProperties, ItemSchemas>, OmittedStructural>, + LinkingNormalized {} diff --git a/src/types/resources/service.ts b/src/types/resources/service.ts new file mode 100644 index 00000000..f423ae2e --- /dev/null +++ b/src/types/resources/service.ts @@ -0,0 +1 @@ +export interface Service {} diff --git a/src/types/utility.ts b/src/types/utility.ts index 9a76e955..491a5f45 100644 --- a/src/types/utility.ts +++ b/src/types/utility.ts @@ -1,13 +1,6 @@ -export type Required = - T extends object - ? { [P in keyof T]-?: NonNullable; } - : T; +export type Required = T extends object ? { [P in keyof T]-?: NonNullable } : T; -export type SomeRequired = - (T extends object - ? { [P in K]-?: NonNullable; } - : T) & Partial, Exclude>>; +export type SomeRequired = (T extends object ? { [P in K]-?: NonNullable } : T) & + Partial, Exclude>>; -export type OmitProperties = Pick< - Required, Exclude - >; +export type OmitProperties = Pick>; diff --git a/src/utility/annotations.ts b/src/utility/annotations.ts index 9865d992..57996621 100644 --- a/src/utility/annotations.ts +++ b/src/utility/annotations.ts @@ -1,28 +1,28 @@ type AnnotationSelector = { - unit: 'percent' | 'pixel', - x: number, - y: number, - width: number, - height: number, - id: string, -} + unit: 'percent' | 'pixel'; + x: number; + y: number; + width: number; + height: number; + id: string; +}; export function parseSelectorTarget(toParse: string): AnnotationSelector | string { - if (!toParse) { - return toParse; - } - const W3C_SELECTOR = /[#&?](xywh=)?(pixel:|percent:)?([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?)/; - const match = W3C_SELECTOR.exec(toParse); - - if (match) { - return { - unit: match[2] === 'percent:' ? 'percent' : 'pixel', - x: parseFloat(match[3]), - y: parseFloat(match[5]), - width: parseFloat(match[7]), - height: parseFloat(match[9]), - id: toParse.split('#')[0], - }; - } + if (!toParse) { return toParse; + } + const W3C_SELECTOR = /[#&?](xywh=)?(pixel:|percent:)?([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?),([0-9]+(\.[0-9]+)?)/; + const match = W3C_SELECTOR.exec(toParse); + + if (match) { + return { + unit: match[2] === 'percent:' ? 'percent' : 'pixel', + x: parseFloat(match[3]), + y: parseFloat(match[5]), + width: parseFloat(match[7]), + height: parseFloat(match[9]), + id: toParse.split('#')[0], + }; + } + return toParse; } diff --git a/src/utility/compatibility.ts b/src/utility/compatibility.ts index f768add6..1e6658db 100644 --- a/src/utility/compatibility.ts +++ b/src/utility/compatibility.ts @@ -1,32 +1,36 @@ import traverse from 'traverse'; import hash from 'object-hash'; -type Process = (obj: T) => void; +type Process = (obj: any) => void; -export function buildProcess(processes: Array>) { - return (jsonLd): void => { - traverse(jsonLd).forEach(function(obj) { - processes.forEach(process => process.call(this, [obj])); - }); - }; +export function buildProcess(processes: Process[]) { + return (jsonLd: any): any => { + traverse(jsonLd).forEach(function(obj: any) { + // tslint:disable-next-line:no-invalid-this + processes.forEach(process => process.call(this, [obj])); + }); + return jsonLd; + }; } export function addMissingIds(obj: any): void { - // Presentation 3 has only one optional. - // But then again, some common missing ids... - if ( - (obj.type === 'AnnotationPage' || - obj.type === 'Annotation' || - obj.type === 'Application' || - obj.type === 'Dataset' || - obj.type === 'Image' || - obj.type === 'Sound' || - obj.type === 'Text' || - obj.type === 'Video' || - obj.type === 'TextualBody' || - obj.profile) && - !obj.id - ) { - this.update({...obj, id: `https://hyperion/${hash(obj)}`}); - } + // Presentation 3 has only one optional. + // But then again, some common missing ids... + if ( + (obj.type === 'AnnotationPage' || + obj.type === 'Annotation' || + obj.type === 'Application' || + obj.type === 'Dataset' || + obj.type === 'Image' || + obj.type === 'Sound' || + obj.type === 'Text' || + obj.type === 'Video' || + obj.type === 'TextualBody' || + obj.profile) && + !obj.id + ) { + // @ts-ignore + // tslint:disable-next-line:no-invalid-this + this.update({ ...obj, id: `https://hyperion/${hash(obj)}` }); + } } diff --git a/src/utility/iiif-traverse.ts b/src/utility/iiif-traverse.ts new file mode 100644 index 00000000..9f5075eb --- /dev/null +++ b/src/utility/iiif-traverse.ts @@ -0,0 +1,141 @@ +import { Collection } from '../types/resources/collection'; +import { Manifest } from '../types/resources/manifest'; +import { Required } from '../types/utility'; +import { Canvas } from '../types/resources/canvas'; +import { AnnotationPage } from '../types/resources/annotationPage'; +import { Annotation, ChoiceBody, ChoiceTarget } from '../types/resources/annotation'; +import { ContentResource } from '../types/resources/contentResource'; + +type Traversal = (jsonLd: T) => T; +// type Reducer = (jsonLd: T, action: any) => T; + +type TraversalMap = { + collection?: Array>; + manifest?: Array>; + canvas?: Array>; + annotationPage?: Array>; + annotation?: Array>; + contentResource?: Array>; + choice?: Array>; +}; + +export class Traverse { + private traversals: Required; + + constructor(traversals: TraversalMap) { + this.traversals = { + collection: [], + manifest: [], + canvas: [], + annotationPage: [], + annotation: [], + contentResource: [], + choice: [], + ...traversals, + }; + } + + static all(traversal: (resource: any) => any) { + return new Traverse({ + collection: [traversal], + manifest: [traversal], + canvas: [traversal], + annotationPage: [traversal], + annotation: [traversal], + contentResource: [traversal], + choice: [traversal], + }); + } + + traverseCollection(collectionJson: Collection): Collection { + const collection = this.traverseType(collectionJson, this.traversals.collection); + + const items = collection.items.map((collectionOrManifest: Manifest | Collection) => { + if (collectionOrManifest.type === 'Collection') { + return this.traverseCollection(collectionOrManifest as Collection); + } + return this.traverseManifest(collectionOrManifest as Manifest); + }); + + return { ...collection, items }; + } + + traverseManifest(manifestJson: Manifest): Manifest { + const manifest = this.traverseType(manifestJson, this.traversals.manifest); + + const items = manifest.items.map(canvas => this.traverseCanvas(canvas)); + + return { ...manifest, items }; + } + + traverseCanvas(canvasJson: Canvas): Canvas { + const canvas = this.traverseType(canvasJson, this.traversals.canvas); + + if (!canvas.items) { + return canvas; + } + + const items = canvas.items.map( + (annotationPage: AnnotationPage): AnnotationPage => { + return this.traverseAnnotationPage(annotationPage); + } + ); + + return { ...canvas, items }; + } + + traverseAnnotationPage(annotationPageJson: AnnotationPage): AnnotationPage { + const annotationPage = this.traverseType(annotationPageJson, this.traversals.annotationPage); + const toAdd: { items?: Annotation[] } = {}; + + if (annotationPage!.items) { + toAdd.items = (annotationPage!.items || []).map( + (annotation: Annotation): Annotation => { + return this.traverseAnnotation(annotation); + } + ); + } + + return { ...annotationPage, ...toAdd }; + } + + traverseAnnotation(annotationJson: Annotation): Annotation { + const annotation = this.traverseType(annotationJson, this.traversals.annotation); + const toAdd: { + body?: ContentResource[] | ContentResource; + target?: ContentResource[] | ContentResource; + } = {}; + + if (Array.isArray(annotation.body)) { + toAdd.body = annotation.body.map( + (annotationBody: ContentResource): ContentResource => { + return this.traverseContentResource(annotationBody); + } + ); + } else if (annotation.body) { + toAdd.body = this.traverseContentResource(annotation.body); + } + + if (Array.isArray(annotation.target)) { + toAdd.target = annotation.target.map( + (annotationBody: ContentResource): ContentResource => { + return this.traverseContentResource(annotationBody); + } + ); + } else if (annotation.target) { + toAdd.target = this.traverseContentResource(annotation.target); + } + + return { ...annotation, ...toAdd }; + } + + traverseContentResource(contentResourceJson: ContentResource): ContentResource { + return this.traverseType(contentResourceJson, this.traversals.contentResource); + } + + traverseType(object: T, traversals: Array>): T { + return traversals.reduce((acc: T, traversal: Traversal): T => { + return traversal(acc); + }, object); + } +} diff --git a/tsconfig.json b/tsconfig.json index b634923a..7d91b4d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "esModuleInterop": true, "allowJs": false, // include js files "checkJs": false, // typecheck js files - "declaration": false, // don't emit declarations + "declaration": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "forceConsistentCasingInFileNames": true, diff --git a/tslint.json b/tslint.json index 9759efc1..93e02cdb 100644 --- a/tslint.json +++ b/tslint.json @@ -1,5 +1,5 @@ { - "extends": ["tslint:recommended"], + "extends": ["tslint:recommended","tslint-plugin-prettier"], "rules": { "arrow-parens": false, "arrow-return-shorthand": [false], @@ -23,6 +23,7 @@ "no-unused-variable": [true, "react"], "object-literal-sort-keys": false, "object-literal-shorthand": false, + "object-literal-key-quotes": false, "one-variable-per-declaration": [false], "no-console": false, "only-arrow-functions": [true, "allow-declarations"], @@ -44,6 +45,7 @@ "triple-equals": [true, "allow-null-check"], "type-literal-delimiter": true, "typedef": [true,"parameter", "property-declaration"], - "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"] + "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"], + "prettier": [true, { "singleQuote": true, "trailingComma": "es5", "printWidth": 120 }] } } diff --git a/yarn.lock b/yarn.lock index 7e40fbd6..5db333de 100644 --- a/yarn.lock +++ b/yarn.lock @@ -204,11 +204,21 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== +"@types/object-hash@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@types/object-hash/-/object-hash-1.2.0.tgz#d65904331bd0b05c7d5ece75f9ddfdbe82affd30" + integrity sha512-0JKYQRatHdzijO/ni7JV5eHUJWaMRpGvwiABk8U5iAk5Corm0yLNEfYGNkZWYc+wCyCKKpg0+TsZIvP8AymIYA== + "@types/q@^1.5.1": version "1.5.1" resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.1.tgz#48fd98c1561fe718b61733daed46ff115b496e18" integrity sha512-eqz8c/0kwNi/OEHQfvIuJVLTst3in0e7uTKeuY+WL/zfKn0xVujOTp42bS/vUUokhK5P2BppLd9JXMOMHcgbjA== +"@types/traverse@^0.6.32": + version "0.6.32" + resolved "https://registry.yarnpkg.com/@types/traverse/-/traverse-0.6.32.tgz#f9fdfa40cd4898deaa975a14511aec731de8235e" + integrity sha512-RBz2uRZVCXuMg93WD//aTS5B120QlT4lR/gL+935QtGsKHLS6sCtZBaKfWjIfk7ZXv/r8mtGbwjVIee6/3XTow== + abab@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" @@ -1609,6 +1619,14 @@ escodegen@^1.9.1: optionalDependencies: source-map "~0.6.1" +eslint-plugin-prettier@^2.2.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904" + integrity sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA== + dependencies: + fast-diff "^1.1.1" + jest-docblock "^21.0.0" + esprima@^2.6.0: version "2.7.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" @@ -1769,6 +1787,11 @@ fast-deep-equal@^2.0.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= +fast-diff@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" @@ -2756,6 +2779,11 @@ jest-diff@^23.6.0: jest-get-type "^22.1.0" pretty-format "^23.6.0" +jest-docblock@^21.0.0: + version "21.2.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" + integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw== + jest-docblock@^23.2.0: version "23.2.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" @@ -3180,6 +3208,11 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -4608,6 +4641,11 @@ preserve@^0.2.0: resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= +prettier@^1.15.3: + version "1.15.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" + integrity sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg== + pretty-bytes@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-3.0.1.tgz#27d0008d778063a0b4811bb35c79f1bd5d5fbccf" @@ -5777,11 +5815,25 @@ ts-jest@^23.10.5: semver "^5.5" yargs-parser "10.x" -tslib@1.9.3, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: +tslib@1.9.3, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: version "1.9.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== +tslint-config-prettier@^1.17.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.17.0.tgz#946ed6117f98f3659a65848279156d87628c33dc" + integrity sha512-NKWNkThwqE4Snn4Cm6SZB7lV5RMDDFsBwz6fWUkTxOKGjMx8ycOHnjIbhn7dZd5XmssW3CwqUjlANR6EhP9YQw== + +tslint-plugin-prettier@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/tslint-plugin-prettier/-/tslint-plugin-prettier-2.0.1.tgz#95b6a3b766622ffc44375825d7760225c50c3680" + integrity sha512-4FX9JIx/1rKHIPJNfMb+ooX1gPk5Vg3vNi7+dyFYpLO+O57F4g+b/fo1+W/G0SUOkBLHB/YKScxjX/P+7ZT/Tw== + dependencies: + eslint-plugin-prettier "^2.2.0" + lines-and-columns "^1.1.6" + tslib "^1.7.1" + tslint@^5.12.0: version "5.12.0" resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.12.0.tgz#47f2dba291ed3d580752d109866fb640768fca36"