diff --git a/cypress.config.js b/cypress.config.js index 3751188e..777a0347 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,6 +1,6 @@ const { defineConfig } = require('cypress'); -// TODO: Should this be placed elsewhere? +process.env.iiifApiPort = 8082; require('./tests/iiif-api/server'); module.exports = defineConfig({ @@ -17,4 +17,7 @@ module.exports = defineConfig({ downloadsFolder: 'tests/e2e/downloads', supportFile: false, }, + env: { + iiifApiUrl: `http://0.0.0.0:${process.env.iiifApiPort}`, + }, }); diff --git a/tests/e2e/api.spec.js b/tests/e2e/api.spec.js new file mode 100644 index 00000000..c536ce05 --- /dev/null +++ b/tests/e2e/api.spec.js @@ -0,0 +1,20 @@ +// TODO: Extend API tests + +describe('API', () => { + it('controls TIFY programmatically', () => { + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-PPN857449303`); + + cy.window().its('tify').then((tify) => { + tify.ready.then(() => { + tify.setLanguage('de'); + cy.contains('Seiten'); + + tify.setPage(2); + cy.contains('.tify-page-select-button', '2 : -'); + + tify.setView('export'); + cy.contains('.-active', 'Export'); + }); + }); + }); +}); diff --git a/tests/e2e/collection.spec.js b/tests/e2e/collection.spec.js index 7c87000b..69d2da76 100644 --- a/tests/e2e/collection.spec.js +++ b/tests/e2e/collection.spec.js @@ -1,6 +1,6 @@ describe('Collection', () => { it('shows the collection view', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/wellcome-b19974760'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760`); // Only Info and Collection buttons should be visible cy.contains('Info'); @@ -16,7 +16,7 @@ describe('Collection', () => { }); it('filters the collection list', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/wellcome-b19974760'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760`); cy.get('[aria-label="Filter collection"]').type('2008'); cy.get('.tify-collection-item').should('have.length', 2); @@ -24,15 +24,20 @@ describe('Collection', () => { cy.contains('No results'); }); - it('loads the specified child manifest', () => { + it('loads a child manifest', () => { const encodedParams = encodeURIComponent(JSON.stringify({ - childManifestUrl: 'http://0.0.0.0:8081/manifest/wellcome-b19974760_1_0004', + childManifestUrl: `${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760_1_0004`, })); - cy.visit(`/?manifest=http://0.0.0.0:8081/manifest/wellcome-b19974760&tify=${encodedParams}`); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760&tify=${encodedParams}`); cy.contains('Info').click(); cy.contains('.tify-info-button', 'Collection').click(); - cy.contains('The chemist and druggist.'); + cy.contains('h1', 'The chemist and druggist, 15. September 1859'); + + cy.contains('.tify-header-button', 'Collection').click(); + cy.contains('Volume 1').click(); + cy.contains('15. October 1859').click(); + cy.contains('h1', 'The chemist and druggist, 15. October 1859'); }); }); diff --git a/tests/e2e/export.spec.js b/tests/e2e/export.spec.js index cb223714..f5618b1c 100644 --- a/tests/e2e/export.spec.js +++ b/tests/e2e/export.spec.js @@ -1,6 +1,6 @@ describe('Export', () => { it('displays export links', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-PPN857449303'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-PPN857449303`); cy.contains('Export').click(); cy.contains('Download Individual Images').should('be.visible'); diff --git a/tests/e2e/fulltext.spec.js b/tests/e2e/fulltext.spec.js index a677531c..dc401130 100644 --- a/tests/e2e/fulltext.spec.js +++ b/tests/e2e/fulltext.spec.js @@ -1,6 +1,6 @@ describe('Fulltext', () => { it('displays fulltext', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/wellcome-b18035723&tify={"pages":[15]}'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b18035723&tify={"pages":[15]}`); cy.get('.tify').then(() => { cy.contains('Fulltext').click(); cy.contains('Alles höhere Leben - ob Tier oder').should('be.visible'); @@ -8,7 +8,7 @@ describe('Fulltext', () => { }); it('displays XML fulltext', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-PPN235181684_0029&tify={"view":"fulltext"}'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-PPN235181684_0029&tify={"view":"fulltext"}`); cy.get('.tify').then(() => { cy.contains('Unter Mitwirkung der Herren').should('be.visible'); }); diff --git a/tests/e2e/info.spec.js b/tests/e2e/info.spec.js index 660ec884..93059f8b 100644 --- a/tests/e2e/info.spec.js +++ b/tests/e2e/info.spec.js @@ -1,11 +1,11 @@ describe('Info', () => { it('displays related metadata', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/wellcome-b18035723'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b18035723`); cy.contains('Info').click(); cy.contains('Related Resources'); cy.contains('Wunder der Vererbung / von Fritz Bolle.'); - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/ubl-0000000001'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/ubl-0000000001`); cy.contains('Info').click(); cy.contains('Related Resources'); cy.contains('/object/viewid/0000000001'); @@ -13,12 +13,12 @@ describe('Info', () => { }); it('collapses long metadata values', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081`); cy.contains('button', 'Expand'); }); it('shows metadata of the current structure', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-PPN857449303'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-PPN857449303`); cy.contains('Info').click(); cy.contains('Current Element').should('be.visible'); cy.contains('Titelseite'); @@ -28,7 +28,7 @@ describe('Info', () => { }); it('shows metadata of a nested structure', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-DE_611_BF_5619_1801_1806'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-DE_611_BF_5619_1801_1806`); cy.contains('Info').click(); cy.get('[title="Next page"]').first() .click() diff --git a/tests/e2e/main.spec.js b/tests/e2e/main.spec.js index 9f7abd14..06a96401 100644 --- a/tests/e2e/main.spec.js +++ b/tests/e2e/main.spec.js @@ -1,6 +1,6 @@ describe('Main', () => { it('starts the app', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-PPN857449303&language=de'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-PPN857449303&language=de`); cy.get('#tify > .tify'); }); @@ -8,7 +8,7 @@ describe('Main', () => { // Prevent the test from failing due to an uncaught exception (which is expected) cy.on('uncaught:exception', () => false); - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/invalid'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/invalid`); cy.contains('Please provide a valid IIIF Presentation API 2.x manifest'); }); @@ -16,7 +16,7 @@ describe('Main', () => { // Prevent the test from failing due to an uncaught exception (which is expected) cy.on('uncaught:exception', () => false); - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/not-json'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/not-json`); cy.contains('Error loading IIIF manifest'); }); }); diff --git a/tests/e2e/pagination.spec.js b/tests/e2e/pagination.spec.js index afd093e7..542e98ba 100644 --- a/tests/e2e/pagination.spec.js +++ b/tests/e2e/pagination.spec.js @@ -2,7 +2,7 @@ describe('Pagination', () => { const currentPage = '.tify-page-select-button'; it('changes the page via buttons', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081&tify={"pages":[15]}'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081&tify={"pages":[15]}`); cy.contains(currentPage, '15 : 7r'); @@ -30,7 +30,7 @@ describe('Pagination', () => { }); it('changes the page via keyboard', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081&tify={"pages":[15]}'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081&tify={"pages":[15]}`); cy.contains(currentPage, '15 : 7r'); @@ -71,7 +71,7 @@ describe('Pagination', () => { }); it('highlights the current page after a page change', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081`); cy.get('[title="Last page"]').first().click(); cy.get('[aria-label="Current page"]').first().click(); cy.contains('.-current.-highlighted', '69 : -'); diff --git a/tests/e2e/scan.spec.js b/tests/e2e/scan.spec.js index e7930633..09a0caa0 100644 --- a/tests/e2e/scan.spec.js +++ b/tests/e2e/scan.spec.js @@ -6,7 +6,7 @@ describe('Scan', () => { }, })); - cy.visit(`/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081&tify=${encodedParams}`); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081&tify=${encodedParams}`); cy.get('[title="Toggle image filters"]') .click() .get('.tify-scan-filters-popup') @@ -28,7 +28,7 @@ describe('Scan', () => { zoom: 2, })); - cy.visit(`/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081&tify=${encodedParams}`); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081&tify=${encodedParams}`); cy.get('[title="Rotate"].-active'); cy.get('[title="Toggle image filters"].-active'); @@ -36,13 +36,13 @@ describe('Scan', () => { cy.get('.tify').type('{shift}0'); cy.url().should( 'include', - `/?manifest=${encodeURIComponent('http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081')}` + `/?manifest=${encodeURIComponent(`${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081`)}` + `&tify=${encodeURIComponent('{"view":""}')}`, ); }); it('controls the scan via keyboard', () => { - cy.visit('/?manifest=http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081'); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081`); cy.wait(500); // eslint-disable-line cypress/no-unnecessary-waiting diff --git a/tests/e2e/toc.spec.js b/tests/e2e/toc.spec.js index 901a4558..e6a9fef9 100644 --- a/tests/e2e/toc.spec.js +++ b/tests/e2e/toc.spec.js @@ -1,6 +1,6 @@ describe('TOC', () => { it('allows navigation', () => { - const manifestUrl = 'http://0.0.0.0:8081/manifest/gdz-HANS_DE_7_w042081'; + const manifestUrl = `${Cypress.env('iiifApiUrl')}/manifest/gdz-HANS_DE_7_w042081`; cy.visit(`/?manifest=${manifestUrl}`); cy.contains('Contents').click(); @@ -51,7 +51,7 @@ describe('TOC', () => { }); it('is visible when there are structures without canvases', () => { - const manifestUrl = 'http://0.0.0.0:8081/manifest/cambridge-MS-ADD-08640'; + const manifestUrl = `${Cypress.env('iiifApiUrl')}/manifest/cambridge-MS-ADD-08640`; const encodedParams = encodeURIComponent(JSON.stringify({ view: 'toc', })); @@ -63,7 +63,7 @@ describe('TOC', () => { }); it('hides the first item if its viewingHint is "top"', () => { - const manifestUrl = 'http://0.0.0.0:8081/manifest/digitale-sammlungen-bsb00026283'; + const manifestUrl = `${Cypress.env('iiifApiUrl')}/manifest/digitale-sammlungen-bsb00026283`; const encodedParams = encodeURIComponent(JSON.stringify({ view: 'toc', })); diff --git a/tests/e2e/views.spec.js b/tests/e2e/views.spec.js index d989fcd7..63d6e4f1 100644 --- a/tests/e2e/views.spec.js +++ b/tests/e2e/views.spec.js @@ -1,10 +1,10 @@ describe('Views', () => { it('changes the view via buttons', () => { const encodedParams = encodeURIComponent(JSON.stringify({ - childManifestUrl: 'http://0.0.0.0:8081/manifest/wellcome-b19974760_1_0004', + childManifestUrl: `${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760_1_0004`, })); - cy.visit(`/?manifest=http://0.0.0.0:8081/manifest/wellcome-b19974760&tify=${encodedParams}`); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760&tify=${encodedParams}`); cy.contains('Fulltext').click(); cy.get('.-active').contains('Fulltext'); @@ -30,10 +30,10 @@ describe('Views', () => { it('changes the view via keyboard', () => { const encodedParams = encodeURIComponent(JSON.stringify({ - childManifestUrl: 'http://0.0.0.0:8081/manifest/wellcome-b19974760_1_0004', + childManifestUrl: `${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760_1_0004`, })); - cy.visit(`/?manifest=http://0.0.0.0:8081/manifest/wellcome-b19974760&tify=${encodedParams}`); + cy.visit(`/?manifest=${Cypress.env('iiifApiUrl')}/manifest/wellcome-b19974760&tify=${encodedParams}`); cy.contains('The chemist and druggist'); diff --git a/tests/iiif-api/config.json b/tests/iiif-api/config.json deleted file mode 100644 index ff3da52f..00000000 --- a/tests/iiif-api/config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "dataDir": "data", - "host": "0.0.0.0", - "port": 8081 -} diff --git a/tests/iiif-api/data/manifests/wellcome-b19974760_1_0007.json b/tests/iiif-api/data/manifests/wellcome-b19974760_1_0007.json new file mode 100644 index 00000000..b6f0bede --- /dev/null +++ b/tests/iiif-api/data/manifests/wellcome-b19974760_1_0007.json @@ -0,0 +1,6970 @@ +{ + "@context": "http://iiif.io/api/presentation/2/context.json", + "@id": "https://iiif.wellcomecollection.org/presentation/v2/b19974760_1_0007", + "@type": "sc:Manifest", + "label": "The chemist and druggist, 15. October 1859", + "metadata": [ + { + "label": "Publication/creation", + "value": "London : Morgan Brothers, 1859-" + }, + { + "label": "Contributors", + "value": "United Business Media." + }, + { + "label": "Copyright note", + "value": "UBM." + }, + { + "label": "Type/technique", + "value": "Electronic journals; Periodicals" + }, + { + "label": "Subjects", + "value": "Pharmacy; Drug Industry; Great Britain" + }, + { + "label": "Attribution", + "value": "Wellcome Collection" + }, + { + "label": "Full conditions of use", + "value": "You have permission to make copies of this work under a Creative Commons, Attribution, Non-commercial license.

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

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Collection.
" + } + ], + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0001.jp2/full/57,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0001.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 582, + "height": 1024, + "sizes": [ + { + "width": 57, + "height": 100 + }, + { + "width": 114, + "height": 200 + }, + { + "width": 227, + "height": 400 + }, + { + "width": 582, + "height": 1024 + } + ] + } +}, + "license": "http://creativecommons.org/licenses/by-nc/4.0/", + "logo": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "related": { + "@id": "https://wellcomecollection.org/works/aayk4bsm", + "format": "text/html", + "label": "The chemist and druggist." + }, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/catalogue/v2/works/aayk4bsm", + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "format": "application/json", + "label": "Wellcome Collection Catalogue API" + }, + "service": [ + { + "@context": "http://iiif.io/api/search/0/context.json", + "@id": "https://iiif.wellcomecollection.org/search/v0/b19974760_1_0007", + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this manifest", + "service": { + "@id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b19974760_1_0007", + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Autocomplete words in this manifest" + } + }, + { + "@context": "http://universalviewer.io/context.json", + "@id": "http://wellcomelibrary.org/service/trackingLabels/b19974760_1_0007", + "profile": "http://universalviewer.io/tracking-extensions-profile", + "trackingLabel": "Format: PeriodicalIssue, Institution: n/a, Identifier: b19974760, Digicode: digjournals, Collection code: n/a" + }, + { + "@context": "http://wellcomelibrary.org/ld/iiif-ext/0/context.json", + "@id": "https://wellcomelibrary.org/iiif/b19974760_1_0007/access-control-hints-service", + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "accessHint": "open" + } + ], + "sequences": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/v2/b19974760_1_0007/sequences/s1", + "@type": "sc:Sequence", + "label": "Sequence s1", + "rendering": [ + { + "@id": "https://iiif.wellcomecollection.org/pdf/b19974760_1_0007", + "label": "View as PDF", + "format": "application/pdf" + }, + { + "@id": "https://api.wellcomecollection.org/text/v1/b19974760_1_0007", + "label": "View raw text", + "format": "text/plain" + } + ], + "canvases": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0001.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0001.jp2/full/57,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0001.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 582, + "height": 1024, + "sizes": [ + { + "width": 57, + "height": 100 + }, + { + "width": 114, + "height": 200 + }, + { + "width": 227, + "height": 400 + }, + { + "width": 582, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0001.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 3876, + "width": 2204, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0001.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0001.jp2/full/582,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 582, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0001.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2204, + "height": 3876 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0001.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0001.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0002.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0002.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0002.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 649, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 127, + "height": 200 + }, + { + "width": 254, + "height": 400 + }, + { + "width": 649, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0002.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4049, + "width": 2568, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0002.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0002.jp2/full/649,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 649, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0002.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2568, + "height": 4049 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0002.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0002.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0003.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0003.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0003.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 642, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 251, + "height": 400 + }, + { + "width": 642, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0003.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4105, + "width": 2574, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0003.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0003.jp2/full/642,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 642, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0003.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2574, + "height": 4105 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0003.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0003.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0004.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0004.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0004.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 626, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 245, + "height": 400 + }, + { + "width": 626, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0004.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4209, + "width": 2574, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0004.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0004.jp2/full/626,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 626, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0004.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2574, + "height": 4209 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0004.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0004.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0005.jp2", + "@type": "sc:Canvas", + "label": "17", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0005.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0005.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 635, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 635, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0005.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4164, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0005.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0005.jp2/full/635,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 635, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0005.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4164 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0005.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0005.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 17" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0006.jp2", + "@type": "sc:Canvas", + "label": "20", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0006.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0006.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 648, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 127, + "height": 200 + }, + { + "width": 253, + "height": 400 + }, + { + "width": 648, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0006.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4095, + "width": 2593, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0006.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0006.jp2/full/648,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 648, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0006.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2593, + "height": 4095 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0006.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0006.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 20" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0007.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0007.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0007.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 635, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 635, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0007.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4164, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0007.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0007.jp2/full/635,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 635, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0007.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4164 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0007.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0007.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0008.jp2", + "@type": "sc:Canvas", + "label": "20", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0008.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0008.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 626, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 245, + "height": 400 + }, + { + "width": 626, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0008.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4209, + "width": 2574, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0008.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0008.jp2/full/626,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 626, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0008.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2574, + "height": 4209 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0008.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0008.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 20" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0009.jp2", + "@type": "sc:Canvas", + "label": "21", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0009.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0009.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 635, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 635, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0009.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4164, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0009.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0009.jp2/full/635,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 635, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0009.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4164 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0009.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0009.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 21" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0010.jp2", + "@type": "sc:Canvas", + "label": "22", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0010.jp2/full/59,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0010.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 600, + "height": 1024, + "sizes": [ + { + "width": 59, + "height": 100 + }, + { + "width": 117, + "height": 200 + }, + { + "width": 234, + "height": 400 + }, + { + "width": 600, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0010.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4119, + "width": 2414, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0010.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0010.jp2/full/600,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 600, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0010.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2414, + "height": 4119 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0010.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0010.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 22" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0011.jp2", + "@type": "sc:Canvas", + "label": "23", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0011.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0011.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 643, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 126, + "height": 200 + }, + { + "width": 251, + "height": 400 + }, + { + "width": 643, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0011.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4044, + "width": 2539, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0011.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0011.jp2/full/643,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 643, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0011.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2539, + "height": 4044 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0011.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0011.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 23" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0012.jp2", + "@type": "sc:Canvas", + "label": "24", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0012.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0012.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 615, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 240, + "height": 400 + }, + { + "width": 615, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0012.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4276, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0012.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0012.jp2/full/615,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 615, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0012.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4276 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0012.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0012.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 24" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0013.jp2", + "@type": "sc:Canvas", + "label": "25", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0013.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0013.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 616, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 241, + "height": 400 + }, + { + "width": 616, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0013.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4232, + "width": 2545, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0013.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0013.jp2/full/616,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 616, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0013.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2545, + "height": 4232 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0013.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0013.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 25" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0014.jp2", + "@type": "sc:Canvas", + "label": "26", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0014.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0014.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 615, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 240, + "height": 400 + }, + { + "width": 615, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0014.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4276, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0014.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0014.jp2/full/615,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 615, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0014.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4276 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0014.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0014.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 26" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0015.jp2", + "@type": "sc:Canvas", + "label": "27", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0015.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0015.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 616, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 241, + "height": 400 + }, + { + "width": 616, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0015.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4232, + "width": 2545, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0015.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0015.jp2/full/616,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 616, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0015.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2545, + "height": 4232 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0015.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0015.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 27" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0016.jp2", + "@type": "sc:Canvas", + "label": "28", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0016.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0016.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 615, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 240, + "height": 400 + }, + { + "width": 615, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0016.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4276, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0016.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0016.jp2/full/615,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 615, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0016.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4276 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0016.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0016.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 28" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0017.jp2", + "@type": "sc:Canvas", + "label": "29", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0017.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0017.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0017.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4225, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0017.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0017.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0017.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4225 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0017.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0017.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 29" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0018.jp2", + "@type": "sc:Canvas", + "label": "30", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0018.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0018.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 611, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 119, + "height": 200 + }, + { + "width": 239, + "height": 400 + }, + { + "width": 611, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0018.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4254, + "width": 2538, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0018.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0018.jp2/full/611,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 611, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0018.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2538, + "height": 4254 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0018.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0018.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 30" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0019.jp2", + "@type": "sc:Canvas", + "label": "31", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0019.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0019.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0019.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4225, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0019.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0019.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0019.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4225 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0019.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0019.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 31" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0020.jp2", + "@type": "sc:Canvas", + "label": "32", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0020.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0020.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0020.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4240, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0020.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0020.jp2/full/620,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 620, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0020.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4240 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0020.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0020.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 32" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0021.jp2", + "@type": "sc:Canvas", + "label": "33", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0021.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0021.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 629, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 629, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0021.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4181, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0021.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0021.jp2/full/629,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 629, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0021.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4181 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0021.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0021.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 33" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0022.jp2", + "@type": "sc:Canvas", + "label": "34", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0022.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0022.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0022.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4240, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0022.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0022.jp2/full/620,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 620, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0022.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4240 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0022.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0022.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 34" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0023.jp2", + "@type": "sc:Canvas", + "label": "35", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0023.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0023.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 629, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 629, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0023.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4181, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0023.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0023.jp2/full/629,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 629, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0023.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4181 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0023.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0023.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 35" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0024.jp2", + "@type": "sc:Canvas", + "label": "36", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0024.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0024.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 637, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 249, + "height": 400 + }, + { + "width": 637, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0024.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4211, + "width": 2619, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0024.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0024.jp2/full/637,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 637, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0024.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2619, + "height": 4211 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0024.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0024.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 36" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0025.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0025.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0025.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0025.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0025.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0025.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0025.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0025.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0025.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0026.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0026.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0026.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0026.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0026.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0026.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0026.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0026.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0026.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0027.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0027.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0027.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0027.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0027.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0027.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0027.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0027.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0027.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0028.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0028.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0028.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 641, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 641, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0028.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4068, + "width": 2546, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0028.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0028.jp2/full/641,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 641, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0028.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2546, + "height": 4068 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0028.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0028.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0029.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0029.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0029.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0029.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4061, + "width": 2467, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0029.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0029.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0029.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2467, + "height": 4061 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0029.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0029.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0030.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0030.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0030.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0030.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0030.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0030.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0030.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0030.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0030.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0031.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0031.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0031.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0031.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0031.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0031.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0031.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0031.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0031.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0032.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0032.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0032.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0032.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0032.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0032.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0032.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0032.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0032.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0033.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0033.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0033.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0033.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0033.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0033.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0033.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0033.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0033.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0034.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0034.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0034.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0034.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0034.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0034.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0034.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0034.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0034.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0035.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0035.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0035.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0035.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0035.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0035.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0035.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0035.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0035.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0036.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0036.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0036.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 637, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 249, + "height": 400 + }, + { + "width": 637, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0036.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4211, + "width": 2619, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0036.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0036.jp2/full/637,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 637, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0036.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2619, + "height": 4211 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0036.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0036.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0037.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0037.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0037.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0037.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0037.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0037.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0037.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0037.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0037.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0038.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0038.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0038.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0038.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0038.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0038.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0038.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0038.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0038.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0039.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0039.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0039.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0039.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4137, + "width": 2581, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0039.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0039.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0039.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2581, + "height": 4137 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0039.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0039.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0040.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0040.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0040.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 633, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 247, + "height": 400 + }, + { + "width": 633, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0040.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4203, + "width": 2597, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0040.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0040.jp2/full/633,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 633, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0040.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2597, + "height": 4203 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0040.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0040.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0041.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0041.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0041.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 629, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 629, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0041.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4130, + "width": 2537, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0041.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0041.jp2/full/629,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 629, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0041.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2537, + "height": 4130 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0041.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0041.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0042.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0042.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0042.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 633, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 247, + "height": 400 + }, + { + "width": 633, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0042.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4134, + "width": 2555, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0042.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0042.jp2/full/633,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 633, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0042.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2555, + "height": 4134 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0042.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0042.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0043.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0043.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0043.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 635, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 635, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0043.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 3965, + "width": 2458, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0043.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0043.jp2/full/635,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 635, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0043.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2458, + "height": 3965 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0043.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0043.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0044.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0044.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0044.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0044.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2612, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0044.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0044.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0044.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2612, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0044.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0044.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0045.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0045.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0045.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 626, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 245, + "height": 400 + }, + { + "width": 626, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0045.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2567, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0045.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0045.jp2/full/626,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 626, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0045.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2567, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0045.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0045.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0046.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0046.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0046.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0046.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4174, + "width": 2605, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0046.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0046.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0046.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2605, + "height": 4174 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0046.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0046.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0047.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0047.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0047.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0047.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0047.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0047.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0047.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0047.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0047.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0048.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0048.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0048.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 639, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 125, + "height": 200 + }, + { + "width": 250, + "height": 400 + }, + { + "width": 639, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0048.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4174, + "width": 2605, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0048.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0048.jp2/full/639,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 639, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0048.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2605, + "height": 4174 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0048.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0048.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0049.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0049.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0049.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0049.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0049.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0049.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0049.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0049.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0049.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0050.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0050.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0050.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 635, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 635, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0050.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4188, + "width": 2598, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0050.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0050.jp2/full/635,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 635, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0050.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2598, + "height": 4188 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0050.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0050.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0051.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0051.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0051.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 623, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 623, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0051.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4143, + "width": 2522, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0051.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0051.jp2/full/623,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 623, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0051.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2522, + "height": 4143 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0051.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0051.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0052.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0052.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0052.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 630, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 246, + "height": 400 + }, + { + "width": 630, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0052.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2583, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0052.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0052.jp2/full/630,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 630, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0052.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2583, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0052.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0052.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0053.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0053.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0053.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0053.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4136, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0053.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0053.jp2/full/619,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 619, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0053.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4136 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0053.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0053.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0054.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0054.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0054.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0054.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0054.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0054.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0054.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0054.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0054.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0055.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0055.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0055.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0055.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0055.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0055.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0055.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0055.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0055.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0056.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0056.jp2/full/62,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0056.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 636, + "height": 1024, + "sizes": [ + { + "width": 62, + "height": 100 + }, + { + "width": 124, + "height": 200 + }, + { + "width": 248, + "height": 400 + }, + { + "width": 636, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0056.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4092, + "width": 2542, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0056.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0056.jp2/full/636,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 636, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0056.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2542, + "height": 4092 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0056.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0056.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0057.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0057.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0057.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0057.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4019, + "width": 2443, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0057.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0057.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0057.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2443, + "height": 4019 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0057.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0057.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0058.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0058.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0058.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0058.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0058.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0058.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0058.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0058.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0058.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0059.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0059.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0059.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0059.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0059.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0059.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0059.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0059.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0059.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0060.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0060.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0060.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0060.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0060.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0060.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0060.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0060.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0060.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0061.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0061.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0061.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0061.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0061.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0061.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0061.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0061.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0061.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0062.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0062.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0062.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0062.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0062.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0062.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0062.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0062.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0062.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0063.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0063.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0063.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0063.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0063.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0063.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0063.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0063.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0063.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0064.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0064.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0064.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0064.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0064.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0064.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0064.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0064.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0064.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0065.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0065.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0065.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0065.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0065.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0065.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0065.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0065.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0065.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0066.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0066.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0066.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0066.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0066.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0066.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0066.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0066.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0066.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0067.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0067.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0067.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0067.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0067.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0067.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0067.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0067.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0067.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0068.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0068.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0068.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0068.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2561, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0068.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0068.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0068.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2561, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0068.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0068.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0069.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0069.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0069.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 622, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 622, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0069.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4114, + "width": 2500, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0069.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0069.jp2/full/622,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 622, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0069.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2500, + "height": 4114 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0069.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0069.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0070.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0070.jp2/full/63,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0070.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 643, + "height": 1024, + "sizes": [ + { + "width": 63, + "height": 100 + }, + { + "width": 126, + "height": 200 + }, + { + "width": 251, + "height": 400 + }, + { + "width": 643, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0070.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4065, + "width": 2552, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0070.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0070.jp2/full/643,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 643, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0070.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2552, + "height": 4065 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0070.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0070.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0071.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0071.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0071.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 615, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 120, + "height": 200 + }, + { + "width": 240, + "height": 400 + }, + { + "width": 615, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0071.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4053, + "width": 2435, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0071.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0071.jp2/full/615,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 615, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0071.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2435, + "height": 4053 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0071.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0071.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0072.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0072.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0072.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0072.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2568, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0072.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0072.jp2/full/619,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 619, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0072.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2568, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0072.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0072.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0073.jp2", + "@type": "sc:Canvas", + "label": "37", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0073.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0073.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 617, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 241, + "height": 400 + }, + { + "width": 617, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0073.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2529, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0073.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0073.jp2/full/617,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 617, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0073.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2529, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0073.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0073.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 37" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0074.jp2", + "@type": "sc:Canvas", + "label": "38", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0074.jp2/full/59,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0074.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 600, + "height": 1024, + "sizes": [ + { + "width": 59, + "height": 100 + }, + { + "width": 117, + "height": 200 + }, + { + "width": 234, + "height": 400 + }, + { + "width": 600, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0074.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4270, + "width": 2501, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0074.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0074.jp2/full/600,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 600, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0074.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2501, + "height": 4270 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0074.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0074.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 38" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0075.jp2", + "@type": "sc:Canvas", + "label": "39", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0075.jp2/full/58,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0075.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 596, + "height": 1024, + "sizes": [ + { + "width": 58, + "height": 100 + }, + { + "width": 116, + "height": 200 + }, + { + "width": 233, + "height": 400 + }, + { + "width": 596, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0075.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4218, + "width": 2455, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0075.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0075.jp2/full/596,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 596, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0075.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2455, + "height": 4218 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0075.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0075.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 39" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0076.jp2", + "@type": "sc:Canvas", + "label": "42", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0076.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0076.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0076.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4248, + "width": 2568, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0076.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0076.jp2/full/619,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 619, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0076.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2568, + "height": 4248 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0076.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0076.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 42" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0077.jp2", + "@type": "sc:Canvas", + "label": "43", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0077.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0077.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 610, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 119, + "height": 200 + }, + { + "width": 238, + "height": 400 + }, + { + "width": 610, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0077.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4196, + "width": 2499, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0077.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0077.jp2/full/610,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 610, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0077.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2499, + "height": 4196 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0077.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0077.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 43" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0078.jp2", + "@type": "sc:Canvas", + "label": "44", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0078.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0078.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0078.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0078.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0078.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0078.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0078.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0078.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 44" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0079.jp2", + "@type": "sc:Canvas", + "label": "45", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0079.jp2/full/60,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0079.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 611, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 119, + "height": 200 + }, + { + "width": 239, + "height": 400 + }, + { + "width": 611, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0079.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4152, + "width": 2477, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0079.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0079.jp2/full/611,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 611, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0079.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2477, + "height": 4152 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0079.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0079.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 45" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0080.jp2", + "@type": "sc:Canvas", + "label": "46", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0080.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0080.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0080.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0080.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0080.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0080.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0080.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0080.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 46" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0081.jp2", + "@type": "sc:Canvas", + "label": "47", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0081.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0081.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 621, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 621, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0081.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4145, + "width": 2514, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0081.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0081.jp2/full/621,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 621, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0081.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2514, + "height": 4145 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0081.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0081.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 47" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0082.jp2", + "@type": "sc:Canvas", + "label": "48", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0082.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0082.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0082.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0082.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0082.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0082.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0082.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0082.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 48" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0083.jp2", + "@type": "sc:Canvas", + "label": "49", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0083.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0083.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 621, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 621, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0083.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4145, + "width": 2514, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0083.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0083.jp2/full/621,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 621, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0083.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2514, + "height": 4145 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0083.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0083.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 49" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0084.jp2", + "@type": "sc:Canvas", + "label": "50", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0084.jp2/full/59,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0084.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 607, + "height": 1024, + "sizes": [ + { + "width": 59, + "height": 100 + }, + { + "width": 119, + "height": 200 + }, + { + "width": 237, + "height": 400 + }, + { + "width": 607, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0084.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4271, + "width": 2531, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0084.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0084.jp2/full/607,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 607, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0084.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2531, + "height": 4271 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0084.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0084.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 50" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0085.jp2", + "@type": "sc:Canvas", + "label": "51", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0085.jp2/full/58,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0085.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 597, + "height": 1024, + "sizes": [ + { + "width": 58, + "height": 100 + }, + { + "width": 117, + "height": 200 + }, + { + "width": 233, + "height": 400 + }, + { + "width": 597, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0085.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4182, + "width": 2440, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0085.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0085.jp2/full/597,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 597, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0085.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2440, + "height": 4182 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0085.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0085.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 51" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0086.jp2", + "@type": "sc:Canvas", + "label": "52", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0086.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0086.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0086.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0086.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0086.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0086.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0086.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0086.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 52" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0087.jp2", + "@type": "sc:Canvas", + "label": "53", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0087.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0087.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 621, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 621, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0087.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4145, + "width": 2514, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0087.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0087.jp2/full/621,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 621, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0087.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2514, + "height": 4145 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0087.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0087.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 53" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0088.jp2", + "@type": "sc:Canvas", + "label": "54", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0088.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0088.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0088.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0088.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0088.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0088.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0088.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0088.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 54" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0089.jp2", + "@type": "sc:Canvas", + "label": "55", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0089.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0089.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 621, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 621, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0089.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4145, + "width": 2514, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0089.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0089.jp2/full/621,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 621, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0089.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2514, + "height": 4145 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0089.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0089.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 55" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0090.jp2", + "@type": "sc:Canvas", + "label": "56", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0090.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0090.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 628, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 123, + "height": 200 + }, + { + "width": 245, + "height": 400 + }, + { + "width": 628, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0090.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4190, + "width": 2568, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0090.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0090.jp2/full/628,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 628, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0090.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2568, + "height": 4190 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0090.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0090.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page 56" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0091.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0091.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0091.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 621, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 243, + "height": 400 + }, + { + "width": 621, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0091.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4145, + "width": 2514, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0091.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0091.jp2/full/621,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 621, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0091.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2514, + "height": 4145 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0091.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0091.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0092.jp2", + "@type": "sc:Canvas", + "label": "-", + "thumbnail": { + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0092.jp2/full/61,100/0/default.jpg", + "@type": "dctypes:Image", + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/thumbs/b19974760M0002_0092.jp2", + "profile": "http://iiif.io/api/image/2/level0.json", + "protocol": "http://iiif.io/api/image", + "width": 625, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 122, + "height": 200 + }, + { + "width": 244, + "height": 400 + }, + { + "width": 625, + "height": 1024 + } + ] + } +}, + "seeAlso": { + "@id": "https://api.wellcomecollection.org/text/alto/b19974760_1_0007/b19974760M0002_0092.jp2", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "format": "text/xml", + "label": "METS-ALTO XML" + }, + "height": 4219, + "width": 2575, + "images": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0092.jp2/painting/anno", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0092.jp2/full/625,1024/0/default.jpg", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": 1024, + "width": 625, + "service": { + "@context": "http://iiif.io/api/image/2/context.json", + "@id": "https://iiif.wellcomecollection.org/image/b19974760M0002_0092.jp2", + "profile": "http://iiif.io/api/image/2/level1.json", + "protocol": "http://iiif.io/api/image", + "width": 2575, + "height": 4219 + } + }, + "on": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0092.jp2" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/b19974760M0002_0092.jp2/line", + "@type": "sc:AnnotationList", + "label": "Text of page -" + } + ], + "within": "" + } + ] + } + ], + "structures": [ + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/ranges/LOG_0008", + "@type": "sc:Range", + "label": "Cover", + "canvases": [ + "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0001.jp2" + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/ranges/LOG_0009", + "@type": "sc:Range", + "label": "Title Page", + "canvases": [ + "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0003.jp2" + ], + "within": "" + }, + { + "@id": "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/ranges/LOG_0010", + "@type": "sc:Range", + "label": "Cover", + "canvases": [ + "https://iiif.wellcomecollection.org/presentation/b19974760_1_0007/canvases/b19974760M0002_0092.jp2" + ], + "within": "" + } + ], + "otherContent": [ + { + "@id": "https://iiif.wellcomecollection.org/annotations/v2/b19974760_1_0007/images", + "@type": "sc:AnnotationList", + "label": "OCR-identified images and figures for b19974760_1_0007" + } + ], + "within": "https://iiif.wellcomecollection.org/presentation/v2/b19974760_1" +} \ No newline at end of file diff --git a/tests/iiif-api/server.js b/tests/iiif-api/server.js index 29346676..cf7b48a3 100644 --- a/tests/iiif-api/server.js +++ b/tests/iiif-api/server.js @@ -1,12 +1,13 @@ const fs = require('fs'); const http = require('http'); const url = require('url'); -const config = require('./config.json'); -const server = http.createServer().listen(config.port, config.host); +const port = process.env.iiifApiPort || 8081; + +const server = http.createServer().listen(port); // eslint-disable-next-line no-console -console.log(`\n 🤖 Mock IIIF API listening at http://localhost:${config.port}\n`); +console.log(`\n 🤖 Mock IIIF API listening at http://localhost:${port}\n`); server.on('request', (req, res) => { function outputJpeg(fileName) { @@ -32,7 +33,7 @@ server.on('request', (req, res) => { // Rewrite all remote URLs to local ones, except IIIF API profiles const dataWithLocalUrls = data.replace( /https?:\/\/(?!iiif.io\/api\/)[a-z0-9-.:]*/gi, - `http://127.0.0.1:${config.port}`, + `http://127.0.0.1:${port}`, ); res.write(dataWithLocalUrls); @@ -83,15 +84,15 @@ server.on('request', (req, res) => { } if (action === 'manifest') { - outputJson(`${__dirname}/${config.dataDir}/manifests/${file}`); + outputJson(`${__dirname}/data/manifests/${file}`); } else if (action === 'annotation-lists') { - outputJson(`${__dirname}/${config.dataDir}/annotation-lists/${file}`); + outputJson(`${__dirname}/data/annotation-lists/${file}`); } else if (action === 'annotations') { - outputJson(`${__dirname}/${config.dataDir}/annotations/${file || 'default.json'}`); + outputJson(`${__dirname}/data/annotations/${file || 'default.json'}`); } else if (action === 'info') { - outputJson(`${__dirname}/${config.dataDir}/infos/default.json`); + outputJson(`${__dirname}/data/infos/default.json`); } else if (['image', 'images', 'logos'].includes(action)) { - outputJpeg(`${__dirname}/${config.dataDir}/images/default.jpg`); + outputJpeg(`${__dirname}/data/images/default.jpg`); } else { res.writeHead(400); res.end();