From c69372154d880083448eaacb53f40b558c65c837 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:42:52 -0400 Subject: [PATCH 01/11] Updating item location filter and adding buildingLocation to item response --- data/buildingLocations.json | 2 +- lib/jsonld_serializers.js | 26 ++++++++++++++++++++++++++ lib/resources.js | 24 +++++++++++++++++++++--- package-lock.json | 1 - test/resources-responses.test.js | 4 ++-- test/resources.test.js | 31 ++++++++++++++++++------------- test/vocabularies.test.js | 2 +- 7 files changed, 69 insertions(+), 21 deletions(-) diff --git a/data/buildingLocations.json b/data/buildingLocations.json index f5e24391..9a52d343 100644 --- a/data/buildingLocations.json +++ b/data/buildingLocations.json @@ -1 +1 @@ -[{ "value": "ma", "label": "Stephen A. Schwarzman Building (SASB)","nickname": "SASB" }, { "value": "pa", "label": "The New York Public Library for the Performing Arts (LPA)","nickname": "LPA" },{ "value": "sc", "label": "Schomburg Center for Research in Black Culture","nickname": "Schomburg" },{ "value": "rc", "label": "Offsite - request in advance"},{ "value": "bu", "label": "Stavros Niarchos Foundation Library (SNFL)", "nickname": "SNFL" }] \ No newline at end of file +[{ "value": "ma", "label": "Stephen A. Schwarzman Building (SASB)", "shortLabel": "Stephen A. Schwarzman Building", "nickname": "SASB" }, { "value": "pa", "shortLabel": "The New York Public Library for the Performing Arts", "label": "The New York Public Library for the Performing Arts (LPA)","nickname": "LPA" },{ "value": "sc", "label": "Schomburg Center for Research in Black Culture","nickname": "Schomburg" },{ "value": "rc", "label": "Offsite - request in advance", "shortLabel": "Offsite"},{ "value": "bu", "label": "Stavros Niarchos Foundation Library (SNFL)", "shortLabel": "Stavros Niarchos Foundation Library", "nickname": "SNFL" }] \ No newline at end of file diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index 9657b199..4b0c27bf 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -339,6 +339,12 @@ ResourceSerializer.formatItemFilterAggregations = function (aggregations) { // If it's a packed value, parse out the value and label: if (value.split('||').length === 2) { ;[value, label] = value.split('||') + // For item location, add the buildingLocation label + } else if (field === 'location') { + const loc = buildingLocations.find(l => l.value === value) + if (loc) { + label = loc.shortLabel + } } return { value, @@ -380,6 +386,11 @@ class ItemResourceSerializer extends JsonLdItemSerializer { stmts.holdingLocation = ItemResourceSerializer.getFormattedHoldingLocation(this.body.holdingLocation) } + const buildingLocation = ItemResourceSerializer.getBuildingLocation(this.body.holdingLocation) + if (buildingLocation) { + stmts.buildingLocation = buildingLocation + } + if (this.body.collectionId) { stmts.collection = ResourceSerializer.getFormattedCollections(this.body.collectionId) delete stmts.collectionId @@ -411,6 +422,21 @@ class ItemResourceSerializer extends JsonLdItemSerializer { }] } + static getBuildingLocation (location) { + const loc = Array.isArray(location) ? location[0] : location + const parentLoc = loc?.['@id']?.split(':')[1]?.substring(0, 2) + if (parentLoc) { + const building = buildingLocations.find(l => l.value === parentLoc) + if (building) { + return [{ + '@id': building.value, + prefLabel: building.shortLabel + }] + } + } + return null + } + // Given an item, returns item with an added `identifier` // of form 'urn:[sourceIdentifierPrefix]:[sourceIdentifier]' // e.g. diff --git a/lib/resources.js b/lib/resources.js index f77d3f80..8a97aff4 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -28,7 +28,19 @@ const Item = require('./models/Item.js') const RESOURCES_INDEX = process.env.RESOURCES_INDEX const ITEM_FILTER_AGGREGATIONS = { - item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.holdingLocation_packed' } } } }, + item_location: { + nested: { path: 'items' }, + aggs: { + _nested: { + terms: { + size: 100, + script: { + source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return null; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return null; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return null; def parentLoc = locId.substring(0, 2); if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;" + } + } + } + } + }, item_status: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.status_packed' } } } }, item_format: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.formatLiteral' } } } } } @@ -212,6 +224,7 @@ module.exports = function (app, _private = null) { }).then((resp) => { const hitsAndItemAggregations = resp.hits.hits[0]._source hitsAndItemAggregations.itemAggregations = resp.aggregations + return ResourceSerializer.serialize(hitsAndItemAggregations, Object.assign(opts, { root: true })) }) }) @@ -488,8 +501,13 @@ module.exports = function (app, _private = null) { }, location: (locations) => { return { - terms: { - 'items.holdingLocation.id': locations + script: { + script: { + source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", + params: { + locations + } + } } } }, diff --git a/package-lock.json b/package-lock.json index 57a7568e..854ff32b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1393,7 +1393,6 @@ "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, "optional": true, "engines": { "node": ">=14" diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index 28b5f663..a93b6042 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -103,7 +103,7 @@ describe('Test Resources responses', function () { }) }) it('returns numItemsMatched for bib with location query', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b10833141?item_location=loc:mal82' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b10833141?item_location=ma' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) @@ -161,7 +161,7 @@ describe('Test Resources responses', function () { }) }) it('item_format is same as bib material type, multiple filters', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text&item_location=loc:mal92' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text&item_location=ma' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) diff --git a/test/resources.test.js b/test/resources.test.js index f7e86c9b..668d0af8 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -475,7 +475,7 @@ describe('Resources query', function () { item_location: { nested: { path: 'items' }, aggs: { - _nested: { terms: { size: 100, field: 'items.holdingLocation_packed' } } + _nested: { terms: { size: 100, script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return null; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return null; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return null; def parentLoc = locId.substring(0, 2); if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;" } } } } }, item_status: { @@ -593,11 +593,16 @@ describe('Resources query', function () { } }, { - terms: { - 'items.holdingLocation.id': [ - 'SASB', - 'LPA' - ] + script: { + script: { + source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", + params: { + locations: [ + 'SASB', + 'LPA' + ] + } + } } }, { @@ -672,8 +677,8 @@ describe('Resources query', function () { }) it('should return filters for location in case there is a location', () => { - expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['SASB', 'LPA', 'Schomburg'] } })) - .to.deep.equal({ filter: [{ terms: { 'items.holdingLocation.id': ['SASB', 'LPA', 'Schomburg'] } }] }) + expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] } })) + .to.deep.equal({ filter: [{ script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }] }) }) it('should return filters for status in case there is a status', () => { @@ -687,7 +692,7 @@ describe('Resources query', function () { volume: [1, 2], date: [3, 4], format: ['text', 'microfilm', 'AV'], - location: ['SASB', 'LPA', 'Schomburg'], + location: ['ma', 'pa', 'sc'], status: ['Available', 'Unavailable', 'In Process'] } })).to.deep.equal({ @@ -695,15 +700,15 @@ describe('Resources query', function () { { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { range: { 'items.dateRange': { gte: 3, lte: 4 } } }, { terms: { 'items.formatLiteral': ['text', 'microfilm', 'AV'] } }, - { terms: { 'items.holdingLocation.id': ['SASB', 'LPA', 'Schomburg'] } }, + { script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }, { terms: { 'items.status.id': ['Available', 'Unavailable', 'In Process'] } } ] }) }) it('should ignore all other parameters', () => { - expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['SASB', 'LPA', 'Schomburg'] }, something: 'else' })) - .to.deep.equal({ filter: [{ terms: { 'items.holdingLocation.id': ['SASB', 'LPA', 'Schomburg'] } }] }) + expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] }, something: 'else' })) + .to.deep.equal({ filter: [{ script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }] }) }) }) @@ -820,7 +825,7 @@ describe('Resources query', function () { }, filter: [ { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, - { terms: { 'items.holdingLocation.id': ['SASB', 'LPA'] } } + { script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['SASB', 'LPA'] } } } } ] } }, diff --git a/test/vocabularies.test.js b/test/vocabularies.test.js index 81c87a6e..0e95cf38 100644 --- a/test/vocabularies.test.js +++ b/test/vocabularies.test.js @@ -40,7 +40,7 @@ describe('Vocabularies', function () { expect(results.languages).to.deep.equal(mockLanguages.values) expect(results.collections).to.be.an('array') expect(results.buildingLocations).to.be.an('array') - expect(results.buildingLocations[0]).to.have.keys(['value', 'label', 'nickname']) + expect(results.buildingLocations[0]).to.have.keys(['value', 'label', 'shortLabel', 'nickname']) // Check agg formats intersect with nyplCore formats results.formats.forEach(f => { From 1624b80975c5abc054a551f5bf230323097d4d97 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:44:42 -0400 Subject: [PATCH 02/11] Fixtures... --- ...uery-0b5408da74f9047d58200822b68f0751.json | 469 + ...uery-2117de5bf1d8f43978dbf0badb77a89a.json | 741 + ...uery-24d35f739b261ebadfbe0540e36a4bee.json | 346 + ...uery-2b9f13ddee48d4ae083fbd9bd7474b5a.json | 12748 +++ ...uery-30001af8339d6a60367cb557d62acea2.json | 1759 + ...uery-3c1dfb2b1e2415a22579e76744277aa2.json | 936 + ...uery-46a6b6ea4c504ee288b073da1cdc4608.json | 371 + ...uery-47c29fe362e7b8d32f54410c6eabed0c.json | 1044 + ...uery-4e43d244b247b09d510ae18b980671f0.json | 44 + ...uery-500860ef12a0e2bb5e97ffe7ff1c80ae.json | 8975 +++ ...uery-68e7ddc83f690acf458a75d22a2b441d.json | 723 + ...uery-6ccd78264dc927f4e6733ab6437f8773.json | 359 + ...uery-74a72e5e8959157c0ce484f0ad09d4ec.json | 332 + ...uery-7af301922ac626ac1929b9170d4539dd.json | 723 + ...uery-7d58e94d37568672a05d0dbd42dc1393.json | 34269 ++++++++ ...uery-8e9af4dc7c7d4806b1f1aeb56d904579.json | 9199 +++ ...uery-a1fefd1a7584915ec80e07668cceca57.json | 936 + ...uery-a762de2e1ad2797f1316f9450682ec1f.json | 10368 +++ ...uery-b6fc3efe89e3b8c1dc39cd91db87044a.json | 936 + ...uery-c5d99313eb5824e0d595ad7aa441c72d.json | 10765 +++ ...uery-d9286b961f55cae4d8b1b40cbf2595d6.json | 581 + ...uery-dcafc13a204cfd2aaa0d1b872f48c956.json | 4423 + ...uery-ecb0375b3c7a1064bec48e049472242e.json | 66398 ++++++++++++++++ ...uery-f5b25febceec42a13279a4526cdbaa2d.json | 604 + ...uery-f8e16908d6219a2f6079450b24e200ad.json | 384 + 25 files changed, 168433 insertions(+) create mode 100644 test/fixtures/query-0b5408da74f9047d58200822b68f0751.json create mode 100644 test/fixtures/query-2117de5bf1d8f43978dbf0badb77a89a.json create mode 100644 test/fixtures/query-24d35f739b261ebadfbe0540e36a4bee.json create mode 100644 test/fixtures/query-2b9f13ddee48d4ae083fbd9bd7474b5a.json create mode 100644 test/fixtures/query-30001af8339d6a60367cb557d62acea2.json create mode 100644 test/fixtures/query-3c1dfb2b1e2415a22579e76744277aa2.json create mode 100644 test/fixtures/query-46a6b6ea4c504ee288b073da1cdc4608.json create mode 100644 test/fixtures/query-47c29fe362e7b8d32f54410c6eabed0c.json create mode 100644 test/fixtures/query-4e43d244b247b09d510ae18b980671f0.json create mode 100644 test/fixtures/query-500860ef12a0e2bb5e97ffe7ff1c80ae.json create mode 100644 test/fixtures/query-68e7ddc83f690acf458a75d22a2b441d.json create mode 100644 test/fixtures/query-6ccd78264dc927f4e6733ab6437f8773.json create mode 100644 test/fixtures/query-74a72e5e8959157c0ce484f0ad09d4ec.json create mode 100644 test/fixtures/query-7af301922ac626ac1929b9170d4539dd.json create mode 100644 test/fixtures/query-7d58e94d37568672a05d0dbd42dc1393.json create mode 100644 test/fixtures/query-8e9af4dc7c7d4806b1f1aeb56d904579.json create mode 100644 test/fixtures/query-a1fefd1a7584915ec80e07668cceca57.json create mode 100644 test/fixtures/query-a762de2e1ad2797f1316f9450682ec1f.json create mode 100644 test/fixtures/query-b6fc3efe89e3b8c1dc39cd91db87044a.json create mode 100644 test/fixtures/query-c5d99313eb5824e0d595ad7aa441c72d.json create mode 100644 test/fixtures/query-d9286b961f55cae4d8b1b40cbf2595d6.json create mode 100644 test/fixtures/query-dcafc13a204cfd2aaa0d1b872f48c956.json create mode 100644 test/fixtures/query-ecb0375b3c7a1064bec48e049472242e.json create mode 100644 test/fixtures/query-f5b25febceec42a13279a4526cdbaa2d.json create mode 100644 test/fixtures/query-f8e16908d6219a2f6079450b24e200ad.json diff --git a/test/fixtures/query-0b5408da74f9047d58200822b68f0751.json b/test/fixtures/query-0b5408da74f9047d58200822b68f0751.json new file mode 100644 index 00000000..525e9ff9 --- /dev/null +++ b/test/fixtures/query-0b5408da74f9047d58200822b68f0751.json @@ -0,0 +1,469 @@ +{ + "took": 9, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.258812, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10015541", + "_score": 15.258812, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "D. Symmonds" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1985 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "APV (Pritchett) 87-2820" + ], + "idLccn": [ + "85239758" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1985 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Pritchett) 87-2820" + }, + { + "type": "nypl:Bnumber", + "value": "10015541" + }, + { + "type": "nypl:Oclc", + "value": "NYPG017000068-B" + }, + { + "type": "bf:Lccn", + "value": "85239758" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215498" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782307424419, + "publicationStatement": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) : D. Symmonds, c1985-" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820", + "urn:bnum:10015541", + "urn:oclc:NYPG017000068-B", + "urn:lccn:85239758", + "urn:identifier:(WaOLN)nyp0215498" + ], + "creators_displayPacked": [ + "Symmonds, Dorothy||Symmonds, Dorothy" + ], + "dates": [ + { + "range": { + "gte": "1985", + "lte": "9999" + }, + "raw": "880317m19859999txua b 001 0 eng cam a ", + "tag": "m" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Pritchard family.", + "Rimmer family.", + "Jacobs family." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "CS71.P9615 1985" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mag" + ], + "physicalDescription": [ + "v. : ill. ; 28 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 has title: A history and genealogy of the families of Howland, Brown, Follett, Van Dyke, Lamb, Spaulding, and Davidson with related lines of Treat, Botsford, Parker, Burwell, Clark, Andrews, Symmonds, Burnaman, Ashbaugh, and Smith from Holland, England, Scotland, and France to Massachusetts, Connecticut, New York, New Jersey, Ohio, Iowa, Indiana, Nebraska, Kansas, and Texas from \"The Mayflower\" pilgrims in 1620 to the 1980s / by Dorothy Davidson Symmonds.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "A history and genealogy of the Pritchett, Rimmer, Jacobs, Hamilton, Eldridge, Etheridge, Smith, Brown, and Davidson families from North Carolina, Tennessee, Illinois, Missouri, and Kansas in the early 1800s to 1900s" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1985" + ], + "creatorLiteral": [ + "Symmonds, Dorothy" + ], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "NYPG017000068-B" + ], + "dateEndYear": [ + 9999 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "titleDisplay": [ + "A history and genealogy of the Pritchett, Rimmer, Jacobs, Hamilton, Eldridge, Etheridge, Smith, Brown, and Davidson families from North Carolina, Tennessee, Illinois, Missouri, and Kansas in the early 1800s to 1900s / by Dorothy Symmonds." + ], + "uri": "b10015541", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10015541", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "collectionId": [ + "mag" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": " 2-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820", + "urn:barcode:33433065651741" + ], + "identifierV2": [ + { + "value": "APV (Pritchett) 87-2820", + "type": "bf:ShelfMark" + }, + { + "value": "33433065651741", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433065651741" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Pritchett) 87-2820" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-002820", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747616", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10015541", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "collectionId": [ + "mag" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": " 1-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820", + "urn:barcode:33433060936147" + ], + "identifierV2": [ + { + "value": "APV (Pritchett) 87-2820", + "type": "bf:ShelfMark" + }, + { + "value": "33433060936147", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433060936147" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Pritchett) 87-2820" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-002820", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i35838326", + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 2 + } + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 2 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-2117de5bf1d8f43978dbf0badb77a89a.json b/test/fixtures/query-2117de5bf1d8f43978dbf0badb77a89a.json new file mode 100644 index 00000000..b8bd6e57 --- /dev/null +++ b/test/fixtures/query-2117de5bf1d8f43978dbf0badb77a89a.json @@ -0,0 +1,741 @@ +{ + "took": 12, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.258812, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b11984689", + "_score": 15.258812, + "_source": { + "extent": [ + "v. ill." + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "v. 42, no. 1-v. 62, no. 7; Jan. 1942-July 1962." + ], + "publisherLiteral": [ + "Southam-Maclean Publications [etc.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1942 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "idLccn": [ + "cn 76300447" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0316-9669" + ], + "dateStartYear": [ + 1942 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker)" + }, + { + "type": "nypl:Bnumber", + "value": "11984689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG94-S11794" + }, + { + "type": "bf:Lccn", + "value": "cn 76300447" + }, + { + "type": "bf:Issn", + "value": "0316-9669" + }, + { + "type": "bf:Identifier", + "value": "RCON-STC" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1974025" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782171294809, + "publicationStatement": [ + "Don Mills, Ont. [etc.] Southam-Maclean Publications [etc.]" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:bnum:11984689", + "urn:oclc:NYPG94-S11794", + "urn:lccn:cn 76300447", + "urn:issn:0316-9669", + "urn:identifier:RCON-STC", + "urn:identifier:(WaOLN)nyp1974025" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "1963", + "gte": "1942" + }, + "raw": "941012d19421962oncmr4p 0 a0eng dcas ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Woodwork -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "Canadian woodworker (1942)", + "Canadian woodworker and furniture manufacturer Jan.-Mar. 1942" + ], + "physicalDescription": [ + "v. : ill. ; 29 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Established 1900.\"", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Most issues lack subtitle.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 19 + ], + "numItemsTotal": [ + 19 + ], + "dateEndString": [ + "1962" + ], + "title": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "numItemVolumesParsed": [ + 19 + ], + "createdString": [ + "1942" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "NYPG94-S11794" + ], + "popularity": 19, + "dateEndYear": [ + 1962 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1942" + ], + "titleDisplay": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "uri": "b11984689", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "Don Mills, Ont. [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 19, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b11984689", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1962", + "lte": "1962" + } + ], + "enumerationChronology": [ + "v. 62 (Jan. -July 1962)" + ], + "enumerationChronology_sort": " 62-1962", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:barcode:33433102813007" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102813007", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433102813007" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i29978114", + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b11984689", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "enumerationChronology": [ + "v. 61 (1961)" + ], + "enumerationChronology_sort": " 61-1961", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:barcode:33433102812850" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812850", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433102812850" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i29978115", + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b11984689", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "enumerationChronology": [ + "v. 60 (1960)" + ], + "enumerationChronology_sort": " 60-1960", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:barcode:33433102812553" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812553", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433102812553" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i29978117", + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b11984689", + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "enumerationChronology": [ + "v. 44 (1944)" + ], + "enumerationChronology_sort": " 44-1944", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:barcode:33433102812199" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812199", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433102812199" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i29976055", + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + "sort": [ + " 44-1944" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 19 + } + ] + } + }, + "item_format": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 19 + } + ] + } + }, + "item_status": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 19 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-24d35f739b261ebadfbe0540e36a4bee.json b/test/fixtures/query-24d35f739b261ebadfbe0540e36a4bee.json new file mode 100644 index 00000000..ed98e205 --- /dev/null +++ b/test/fixtures/query-24d35f739b261ebadfbe0540e36a4bee.json @@ -0,0 +1,346 @@ +{ + "took": 18, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.761814, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "cb4032259", + "_score": 15.761814, + "_source": { + "extent": [ + "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ;" + ], + "nyplSource": [ + "recap-cul" + ], + "publisherLiteral": [ + "Nelson" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1966 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [], + "idLccn": [ + "66070181" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1966 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "4032259" + }, + { + "type": "nypl:Oclc", + "value": "ocm01650294" + }, + { + "type": "nypl:Oclc", + "value": "SCSB-4764019" + }, + { + "type": "bf:Lccn", + "value": "66070181" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)ocm01650294" + }, + { + "type": "bf:Identifier", + "value": "(NNC)4032259" + }, + { + "type": "bf:Identifier", + "value": "4032259" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782389487712, + "publicationStatement": [ + "[London] : Nelson, 1966." + ], + "identifier": [ + "urn:bnum:4032259", + "urn:oclc:ocm01650294", + "urn:oclc:SCSB-4764019", + "urn:lccn:66070181", + "urn:identifier:(OCoLC)ocm01650294", + "urn:identifier:(NNC)4032259", + "urn:identifier:4032259" + ], + "creators_displayPacked": [ + "Burnett, John, 1925-2006||Burnett, John, 1925-2006" + ], + "dates": [ + { + "range": { + "lt": "1967", + "gte": "1966" + }, + "raw": "750923s1966 enkacfh b 000 0 eng ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:undefined", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "TX360.G7 B8" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [], + "physicalDescription": [ + "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ; 23 cm" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliographical footnotes.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 1 + ], + "title": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1966" + ], + "creatorLiteral": [ + "Burnett, John, 1925-2006" + ], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "ocm01650294", + "SCSB-4764019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "titleDisplay": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "uri": "cb4032259", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "[London]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "cb4032259", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "formatLiteral": [ + "Book/text" + ], + "identifier": [ + "urn:shelfmark:TX360.G79 B93 1966", + "urn:barcode:HS65164695" + ], + "identifierV2": [ + { + "value": "TX360.G79 B93 1966", + "type": "bf:ShelfMark" + }, + { + "value": "HS65164695", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "HS65164695" + ], + "owner": [ + { + "id": "orgs:0002", + "label": "Columbia University Libraries" + } + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], + "physicalLocation": [ + "TX360.G79 B93 1966" + ], + "recapCustomerCode": [ + "HS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "TX360.G79 B93 1966" + ], + "shelfMark_sort": "aTX360.G79 B93 001966", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci4087955" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-2b9f13ddee48d4ae083fbd9bd7474b5a.json b/test/fixtures/query-2b9f13ddee48d4ae083fbd9bd7474b5a.json new file mode 100644 index 00000000..8014169e --- /dev/null +++ b/test/fixtures/query-2b9f13ddee48d4ae083fbd9bd7474b5a.json @@ -0,0 +1,12748 @@ +{ + "took": 93, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.750208, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.750208, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 704, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742420" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269798", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742412" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269794", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742404" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269792", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742438" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269804", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033297" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232353", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033339" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232406", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033321" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232403", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033313" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232401", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033305" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232398", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201310", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128201310" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37539307", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200973" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200973", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128200973" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37529513", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200965" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200965", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128200965" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37529511", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201161" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201161", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128201161" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37530724", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 110 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (July-Sept. 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201302", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128201302" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i37539308", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911097", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911097" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790462", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911105", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911105" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790460", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911253" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911253", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911253" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790458", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911246" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911246", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911246" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790455", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892341" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892341", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892341" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118780", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892333" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892333", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892333" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118763", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872103" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872103", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872103" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060543", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855561" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855561", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119855561" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36058799", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872095" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060542", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855579" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855579", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119855579" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36058800", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892317" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892317", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892317" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118736", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872087" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060538", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102084" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327829", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102134" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102134", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102134" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327846", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114101987" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114101987", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114101987" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34325260", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 126 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "enumerationChronology_sort": " 89-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102043" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102043", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102043" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327008", + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ] + }, + "sort": [ + " 89-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 127 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "enumerationChronology_sort": " 89-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762741" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762741", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762741" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414227", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 128 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762691" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762691", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762691" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414254", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 129 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762709" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762709", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762709" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414253", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 130 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762717" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762717", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762717" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414252", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 131 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762725" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762725", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762725" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414248", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 132 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762733" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762733", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762733" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414245", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 133 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528385", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528385" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482935", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 134 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528377", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528377" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482930", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 135 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528393", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528393" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482936", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 136 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528401", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528401" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482938", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 137 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611091" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878981", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 138 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099610945" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28879000", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 139 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099610952" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878991", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 140 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611109" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611109", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611109" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878974", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 141 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611075" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611075", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611075" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878989", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 142 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611083" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611083", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611083" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878983", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 143 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "enumerationChronology_sort": " 86-2010", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099612925" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099612925", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099612925" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28974701", + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + "sort": [ + " 86-2010" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 144 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "enumerationChronology_sort": " 86-2010", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611141" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611141", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611141" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878948", + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + "sort": [ + " 86-2010" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 145 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "enumerationChronology_sort": " 86-2010", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611133" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611133", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611133" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878953", + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + "sort": [ + " 86-2010" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 146 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "enumerationChronology_sort": " 86-2010", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611117", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611117" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878970", + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + "sort": [ + " 86-2010" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 147 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "enumerationChronology_sort": " 86-2010", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611125" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611125", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611125" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878958", + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + "sort": [ + " 86-2010" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 148 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "enumerationChronology_sort": " 85-2009", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611166" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611166", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611166" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878932", + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + "sort": [ + " 85-2009" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 149 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "enumerationChronology_sort": " 85-2009", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611174" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611174", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611174" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878925", + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + "sort": [ + " 85-2009" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 150 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "enumerationChronology_sort": " 85-2009", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611182" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611182", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611182" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878920", + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + "sort": [ + " 85-2009" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 151 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "enumerationChronology_sort": " 85-2009", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611190" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611190", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611190" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878911", + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + "sort": [ + " 85-2009" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 152 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064214" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064214", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064214" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589205", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 153 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063950" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063950", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063950" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589272", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 154 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063976" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063976", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063976" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589242", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 155 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063992" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063992", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063992" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589223", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 156 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064172" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064172", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064172" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589287", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 157 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "enumerationChronology_sort": " 84-2008", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064008" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064008", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064008" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589214", + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + "sort": [ + " 84-2008" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 158 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063943" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063943", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063943" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589274", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 159 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063984" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063984", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063984" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589229", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 160 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064180" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064180", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064180" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589278", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 161 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064198" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064198", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064198" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589269", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 162 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064206" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064206", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085064206" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589263", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 163 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "enumerationChronology_sort": " 83-2007", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063968" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063968", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433085063968" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i25589251", + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + "sort": [ + " 83-2007" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 164 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "enumerationChronology_sort": " 82-2006", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240567" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240567", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240567" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474921", + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + "sort": [ + " 82-2006" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 165 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "enumerationChronology_sort": " 82-2006", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240559" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240559", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240559" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474920", + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + "sort": [ + " 82-2006" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 166 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "enumerationChronology_sort": " 82-2006", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240542" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240542", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240542" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474919", + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + "sort": [ + " 82-2006" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 167 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "enumerationChronology_sort": " 82-2006", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240583" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240583", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240583" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474923", + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + "sort": [ + " 82-2006" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 168 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "enumerationChronology_sort": " 82-2006", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240575" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240575", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240575" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474922", + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + "sort": [ + " 82-2006" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 169 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "enumerationChronology_sort": " 81-2005", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240534" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240534", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240534" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474918", + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + "sort": [ + " 81-2005" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 170 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "enumerationChronology_sort": " 81-2005", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240526" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240526", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240526" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474917", + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + "sort": [ + " 81-2005" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 171 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "enumerationChronology_sort": " 81-2005", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240500" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240500", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240500" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474915", + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + "sort": [ + " 81-2005" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 172 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "enumerationChronology_sort": " 81-2005", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240518" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240518", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240518" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474916", + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + "sort": [ + " 81-2005" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 173 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "enumerationChronology_sort": " 81-2005", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240492" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240492", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240492" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474914", + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + "sort": [ + " 81-2005" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 174 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "enumerationChronology_sort": " 80-2004", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240468" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240468", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240468" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474911", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2004" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 175 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "enumerationChronology_sort": " 80-2004", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240484" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240484", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240484" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474913", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2004" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 176 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "enumerationChronology_sort": " 80-2004", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080028222" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433080028222", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433080028222" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474447", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2004" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 177 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "enumerationChronology_sort": " 80-2004", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240476" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240476", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240476" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474912", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2004" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 178 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "enumerationChronology_sort": " 80-2004", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078508037" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078508037", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433078508037" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474399", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2004" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 179 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240419" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240419", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240419" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474906", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 180 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240450" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240450", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240450" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474910", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 181 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240443" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240443", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240443" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474909", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 182 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240435" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240435", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240435" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474908", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 183 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240427" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240427", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240427" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474907", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 184 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "enumerationChronology_sort": " 79-2003", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240401", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240401" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474905", + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + "sort": [ + " 79-2003" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 185 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240393", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240393" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474904", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 186 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240377", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240377" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474902", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 187 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240369" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240369", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240369" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474901", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 188 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240351" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240351", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240351" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474900", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 189 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240344" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240344", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240344" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474899", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 190 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "enumerationChronology_sort": " 78-2002", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240385", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240385" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474903", + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + "sort": [ + " 78-2002" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 191 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "enumerationChronology_sort": " 77-2001", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079991612" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433079991612", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433079991612" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474446", + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + "sort": [ + " 77-2001" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 192 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "enumerationChronology_sort": " 77-2001", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240336" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240336", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240336" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474898", + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + "sort": [ + " 77-2001" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 193 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "enumerationChronology_sort": " 77-2001", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240328" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240328", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240328" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474897", + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + "sort": [ + " 77-2001" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 194 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "enumerationChronology_sort": " 77-2001", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240302", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240302" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474895", + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + "sort": [ + " 77-2001" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 195 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "enumerationChronology_sort": " 77-2001", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240310", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240310" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474896", + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + "sort": [ + " 77-2001" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 196 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Sept.-Oct. 2000)" + ], + "enumerationChronology_sort": " 76-2000", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240286" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240286", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084240286" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17474893", + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + "sort": [ + " 76-2000" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-30001af8339d6a60367cb557d62acea2.json b/test/fixtures/query-30001af8339d6a60367cb557d62acea2.json new file mode 100644 index 00000000..9d6aca04 --- /dev/null +++ b/test/fixtures/query-30001af8339d6a60367cb557d62acea2.json @@ -0,0 +1,1759 @@ +{ + "took": 32, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.769638, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 801, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-20" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-3c1dfb2b1e2415a22579e76744277aa2.json b/test/fixtures/query-3c1dfb2b1e2415a22579e76744277aa2.json new file mode 100644 index 00000000..75dc6ccb --- /dev/null +++ b/test/fixtures/query-3c1dfb2b1e2415a22579e76744277aa2.json @@ -0,0 +1,936 @@ +{ + "took": 11, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-46a6b6ea4c504ee288b073da1cdc4608.json b/test/fixtures/query-46a6b6ea4c504ee288b073da1cdc4608.json new file mode 100644 index 00000000..66c990c9 --- /dev/null +++ b/test/fixtures/query-46a6b6ea4c504ee288b073da1cdc4608.json @@ -0,0 +1,371 @@ +{ + "took": 10, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.258812, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10001936", + "_score": 15.258812, + "_source": { + "extent": [ + "400 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Tparan Hovhannu Tēr-Abrahamian" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1891 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1891 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONR 84-743" + }, + { + "type": "nypl:Bnumber", + "value": "10001936" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002001377-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201976" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201934" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782307210178, + "publicationStatement": [ + "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" + ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:bnum:10001936", + "urn:oclc:NYPG002001377-B", + "urn:identifier:NNSZ00201976", + "urn:identifier:(WaOLN)nyp0201934" + ], + "creators_displayPacked": [ + "Shermazanian, Galust||Shermazanian, Galust" + ], + "dates": [ + { + "range": { + "lt": "1892", + "gte": "1891" + }, + "raw": "850225s1891 ru b 000 0carm dcam i ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Armenians -- Iran -- History." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "physicalDescription": [ + "400 p. ; 21 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "Publication date from cover.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Also available on microform; service copy classmark: *ZO-867 no. 1.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 1 + ], + "title": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1891" + ], + "creatorLiteral": [ + "Shermazanian, Galust" + ], + "numElectronicResources": [ + 1 + ], + "idOclc": [ + "NYPG002001377-B" + ], + "popularity": 3, + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "titleDisplay": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." + ], + "uri": "b10001936", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://hdl.handle.net/2027/nyp.33433001892276" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Ṛostov (Doni Vra)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10001936", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:barcode:33433001892276" + ], + "identifierV2": [ + { + "value": "*ONR 84-743", + "type": "bf:ShelfMark" + }, + { + "value": "33433001892276", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433001892276" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*ONR 84-743" + ], + "shelfMark_sort": "a*ONR 84-000743", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10001320" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-47c29fe362e7b8d32f54410c6eabed0c.json b/test/fixtures/query-47c29fe362e7b8d32f54410c6eabed0c.json new file mode 100644 index 00000000..c53af141 --- /dev/null +++ b/test/fixtures/query-47c29fe362e7b8d32f54410c6eabed0c.json @@ -0,0 +1,1044 @@ +{ + "took": 20, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": " -1855", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433096425198" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-4e43d244b247b09d510ae18b980671f0.json b/test/fixtures/query-4e43d244b247b09d510ae18b980671f0.json new file mode 100644 index 00000000..d40ca945 --- /dev/null +++ b/test/fixtures/query-4e43d244b247b09d510ae18b980671f0.json @@ -0,0 +1,44 @@ +{ + "took": 5, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "item_location": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-500860ef12a0e2bb5e97ffe7ff1c80ae.json b/test/fixtures/query-500860ef12a0e2bb5e97ffe7ff1c80ae.json new file mode 100644 index 00000000..0e4ef818 --- /dev/null +++ b/test/fixtures/query-500860ef12a0e2bb5e97ffe7ff1c80ae.json @@ -0,0 +1,8975 @@ +{ + "took": 28, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.769638, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 801, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "enumerationChronology_sort": " 99-2024-02-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-02-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-42", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-43", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-44", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-45", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-46", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-47", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-16", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-09", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-28", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-21", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-19", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-17", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "enumerationChronology_sort": " 98-2022-02-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79", + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ] + }, + "sort": [ + " 98-2022-02-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "enumerationChronology_sort": " 97-2022-02-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-02-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-80", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-24", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-25", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-27", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-81", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-16", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-6", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-09", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-16", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-02", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-02" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-28", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-21", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-14", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-07", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-11", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-24", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-9", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-17", + "lte": "2021-05-17" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 12 (May. 17, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-17", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-8", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-10", + "lte": "2021-05-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 11 (May. 10, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-10", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-7", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-19", + "lte": "2021-04-19" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 9 (Apr. 19, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-19", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-12", + "lte": "2021-04-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 8 (Apr. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-23", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-05", + "lte": "2021-04-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 7 (Apr. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-29", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-22", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-15", + "lte": "2021-03-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 4 (Mar. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-3", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-01", + "lte": "2021-03-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 2 (Mar. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-01", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-5", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-02-15", + "lte": "2021-02-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 1 (Feb. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-02-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-02-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742420" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269798", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742412" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269794", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742404" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269792", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-68e7ddc83f690acf458a75d22a2b441d.json b/test/fixtures/query-68e7ddc83f690acf458a75d22a2b441d.json new file mode 100644 index 00000000..f9fb59a9 --- /dev/null +++ b/test/fixtures/query-68e7ddc83f690acf458a75d22a2b441d.json @@ -0,0 +1,723 @@ +{ + "took": 12, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.258812, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_score": 15.258812, + "_source": { + "extent": [ + "2 v. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1827 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 86-498", + "*AY (Hone, W. Table book)" + ], + "idLccn": [ + "35038534" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1827 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book)" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782307353680, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:bnum:10011374", + "urn:oclc:NYPG012000337-B", + "urn:lccn:35038534", + "urn:identifier:NNSZ01213343", + "urn:identifier:(WaOLN)nyp0211346" + ], + "creators_displayPacked": [ + "Hone, William, 1780-1842||Hone, William, 1780-1842" + ], + "dates": [ + { + "range": { + "lt": "1829", + "gte": "1827" + }, + "raw": "860923m18271828enka 001 0 eng cam ", + "tag": "m" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AC4 .H65" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "physicalDescription": [ + "2 v. : illus. ; 24 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1828" + ], + "title": [ + "The table book" + ], + "numItemVolumesParsed": [ + 4 + ], + "createdString": [ + "1827" + ], + "creatorLiteral": [ + "Hone, William, 1780-1842" + ], + "numElectronicResources": [ + 4 + ], + "idOclc": [ + "NYPG012000337-B" + ], + "popularity": 12, + "dateEndYear": [ + 1828 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": " 2-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:barcode:33433067332555" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book)", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332555", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433067332555" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747243", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": " 2-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:barcode:33433057532339" + ], + "identifierV2": [ + { + "value": "JFE 86-498", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532339", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433057532339" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-000498", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785802", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": " 1-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:barcode:33433057532081" + ], + "identifierV2": [ + { + "value": "JFE 86-498", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532081", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433057532081" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-000498", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005487", + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": " 1-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:barcode:33433067332548" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book)", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332548", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433067332548" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005488", + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 2 + }, + { + "key": "rc", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-6ccd78264dc927f4e6733ab6437f8773.json b/test/fixtures/query-6ccd78264dc927f4e6733ab6437f8773.json new file mode 100644 index 00000000..5a4d4b48 --- /dev/null +++ b/test/fixtures/query-6ccd78264dc927f4e6733ab6437f8773.json @@ -0,0 +1,359 @@ +{ + "took": 13, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.250988, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14332438", + "_score": 15.250988, + "_source": { + "extent": [ + "4 v." + ], + "nyplSource": [ + "sierra-nypl" + ], + "editionStatement": [ + "The ninth edition, in which is included the posthumous volume, containing the history of Virginia to the year 1688, and of New England to the year 1652. [Edited by his son.]" + ], + "publisherLiteral": [ + "A. Strahan" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1800 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1800 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*KF 1800 (Robertson, W. History of America)" + }, + { + "type": "nypl:Bnumber", + "value": "14332438" + }, + { + "type": "nypl:Oclc", + "value": "7127252" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)R220000327" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Robertson, William, 1753-1835||Robertson, William, 1753-1835" + ], + "updatedAt": 1782204065612, + "publicationStatement": [ + "London, A. Strahan, 1800." + ], + "identifier": [ + "urn:shelfmark:*KF 1800 (Robertson, W. History of America)", + "urn:bnum:14332438", + "urn:oclc:7127252", + "urn:identifier:(WaOLN)R220000327" + ], + "creators_displayPacked": [ + "Robertson, William, 1721-1793||Robertson, William, 1721-1793" + ], + "dates": [ + { + "range": { + "lt": "1801", + "gte": "1800" + }, + "raw": "810214s1800 enk 001 0 eng dcamI ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "America -- Discovery and exploration.", + "America -- History.", + "Virginia -- History -- Colonial period, ca. 1600-1775." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mar" + ], + "physicalDescription": [ + "4 v. ; 8vo." + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 1 + ], + "title": [ + "The history of America ..." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1800" + ], + "creatorLiteral": [ + "Robertson, William, 1721-1793" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Robertson, William, 1753-1835" + ], + "idOclc": [ + "7127252" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "titleDisplay": [ + "The history of America ..." + ], + "uri": "b14332438", + "parallelContributorLiteral": [ + null + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - v.1", + "url": "http://hdl.handle.net/2027/mdp.39015016750922" + }, + { + "label": "Full text available via HathiTrust - v.2", + "url": "http://hdl.handle.net/2027/mdp.39015016750930" + }, + { + "label": "Full text available via HathiTrust - v.3", + "url": "http://hdl.handle.net/2027/mdp.39015016750948" + }, + { + "label": "Full text available via HathiTrust - v.4", + "url": "http://hdl.handle.net/2027/mdp.39015016750955" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8vo." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14332438", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://nypl-aeon-test.aeon.atlas-sys.com/aeon/Aeon.dll?Action=10&Author=Robertson%2C+William%2C+1721-1793&CallNumber=*KF+1800+%28Robertson%2C+W.+History+of+America%29&Date=1800&Form=30&Genre=book+non-circ&ItemEdition=The+ninth+edition&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14332438&ItemISxN=i169831863&ItemPlace=London&ItemPublisher=A.+Strahan%2C+1800.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b14332438x&Site=SASRB&Title=The+history+of+America+...&Transaction.CustomFields.Custom651=New+England+History+Colonial+period%2C+ca.+1600-1775." + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "collectionId": [ + "mar" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "identifier": [ + "urn:shelfmark:*KF 1800 (Robertson, W. History of America)" + ], + "identifierV2": [ + { + "value": "*KF 1800 (Robertson, W. History of America)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "physicalLocation": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16983186" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-74a72e5e8959157c0ce484f0ad09d4ec.json b/test/fixtures/query-74a72e5e8959157c0ce484f0ad09d4ec.json new file mode 100644 index 00000000..c8a531d4 --- /dev/null +++ b/test/fixtures/query-74a72e5e8959157c0ce484f0ad09d4ec.json @@ -0,0 +1,332 @@ +{ + "took": 11, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.750208, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022950", + "_score": 15.750208, + "_source": { + "extent": [ + "224 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "[D. Kirshenbaum]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1974 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1974 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" + }, + { + "type": "nypl:Bnumber", + "value": "10022950" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25881442-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0023028" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782138169191, + "publicationStatement": [ + "New York : [D. Kirshenbaum], 1974." + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:bnum:10022950", + "urn:oclc:NYPG25881442-B", + "urn:identifier:(WaOLN)nyp0023028" + ], + "creators_displayPacked": [ + "Kirshenbaum, D. (David), 1902-||Kirshenbaum, D. (David), 1902-" + ], + "dates": [ + { + "range": { + "lt": "1975", + "gte": "1974" + }, + "raw": "810729s1974 nyu 000 0 eng dcam a ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Christianity and other religions -- Judaism." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "maf" + ], + "titleAlt": [ + "Love or hate." + ], + "physicalDescription": [ + "224 p. ; 24 cm." + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 1 + ], + "title": [ + "Religion--love or hate?" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "creatorLiteral": [ + "Kirshenbaum, D. (David), 1902-" + ], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "NYPG25881442-B" + ], + "popularity": 1, + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "titleDisplay": [ + "Religion--love or hate? / by David Kirshenbaum." + ], + "uri": "b10022950", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022950", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "collectionId": [ + "maf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:maf92", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:barcode:33433103848853" + ], + "identifierV2": [ + { + "value": "*PGZ 81-1452", + "type": "bf:ShelfMark" + }, + { + "value": "33433103848853", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433103848853" + ], + "m2CustomerCode": [ + "XH" + ], + "physicalLocation": [ + "*PGZ 81-1452" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "shelfMark_sort": "a*PGZ 81-001452", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14749981" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-7af301922ac626ac1929b9170d4539dd.json b/test/fixtures/query-7af301922ac626ac1929b9170d4539dd.json new file mode 100644 index 00000000..ec6e8458 --- /dev/null +++ b/test/fixtures/query-7af301922ac626ac1929b9170d4539dd.json @@ -0,0 +1,723 @@ +{ + "took": 13, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.239382, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_score": 15.239382, + "_source": { + "extent": [ + "2 v. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1827 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 86-498", + "*AY (Hone, W. Table book)" + ], + "idLccn": [ + "35038534" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1827 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book)" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782307353680, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:bnum:10011374", + "urn:oclc:NYPG012000337-B", + "urn:lccn:35038534", + "urn:identifier:NNSZ01213343", + "urn:identifier:(WaOLN)nyp0211346" + ], + "creators_displayPacked": [ + "Hone, William, 1780-1842||Hone, William, 1780-1842" + ], + "dates": [ + { + "range": { + "lt": "1829", + "gte": "1827" + }, + "raw": "860923m18271828enka 001 0 eng cam ", + "tag": "m" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AC4 .H65" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "physicalDescription": [ + "2 v. : illus. ; 24 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1828" + ], + "title": [ + "The table book" + ], + "numItemVolumesParsed": [ + 4 + ], + "createdString": [ + "1827" + ], + "creatorLiteral": [ + "Hone, William, 1780-1842" + ], + "numElectronicResources": [ + 4 + ], + "idOclc": [ + "NYPG012000337-B" + ], + "popularity": 12, + "dateEndYear": [ + 1828 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": " 2-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:barcode:33433067332555" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book)", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332555", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433067332555" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747243", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": " 2-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:barcode:33433057532339" + ], + "identifierV2": [ + { + "value": "JFE 86-498", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532339", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433057532339" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-000498", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785802", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": " 1-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:barcode:33433057532081" + ], + "identifierV2": [ + { + "value": "JFE 86-498", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532081", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433057532081" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-000498", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005487", + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10011374", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "collectionId": [ + "mal" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": " 1-", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book)", + "urn:barcode:33433067332548" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book)", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332548", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433067332548" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005488", + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 2 + }, + { + "key": "rc", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-7d58e94d37568672a05d0dbd42dc1393.json b/test/fixtures/query-7d58e94d37568672a05d0dbd42dc1393.json new file mode 100644 index 00000000..cef63fe4 --- /dev/null +++ b/test/fixtures/query-7d58e94d37568672a05d0dbd42dc1393.json @@ -0,0 +1,34269 @@ +{ + "took": 29, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.258812, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b15109087", + "_score": 15.258812, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Valade" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 17 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 17 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "nypl:Bnumber", + "value": "15109087" + }, + { + "type": "nypl:Oclc", + "value": "1568232" + }, + { + "type": "bf:Identifier", + "value": "0246617" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)Z150000218" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Société de gens de lettres||Société de gens de lettres" + ], + "updatedAt": 1782215041017, + "publicationStatement": [ + "Paris : Valade" + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:bnum:15109087", + "urn:oclc:1568232", + "urn:identifier:0246617", + "urn:identifier:(WaOLN)Z150000218" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1700" + }, + "raw": "750824d17uu1uuufr mr p 0 0fre dcasIa ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "Esprit des journaux" + ], + "physicalDescription": [ + "v. : ill. ; 15 cm." + ], + "items": [ + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744298" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145921", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744298" + } + ], + "enumerationChronology": [ + "no. 12 (1794)" + ], + "idBarcode": [ + "33433081744298" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744413" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145909", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744413" + } + ], + "enumerationChronology": [ + "no. 12 (1793)" + ], + "idBarcode": [ + "33433081744413" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743787" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743787" + } + ], + "enumerationChronology": [ + "no. 12 (1792)" + ], + "idBarcode": [ + "33433081743787" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743902" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743902" + } + ], + "enumerationChronology": [ + "no. 12 (1791)" + ], + "idBarcode": [ + "33433081743902" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744025" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145873", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744025" + } + ], + "enumerationChronology": [ + "no. 12 (1790)" + ], + "idBarcode": [ + "33433081744025" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744140" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145861", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744140" + } + ], + "enumerationChronology": [ + "no. 12 (1789)" + ], + "idBarcode": [ + "33433081744140" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746012" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145849", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746012" + } + ], + "enumerationChronology": [ + "no. 12 (1788)" + ], + "idBarcode": [ + "33433081746012" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746137" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145837", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746137" + } + ], + "enumerationChronology": [ + "no. 12 (1787)" + ], + "idBarcode": [ + "33433081746137" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746194" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746194" + } + ], + "enumerationChronology": [ + "no. 12 (1786)" + ], + "idBarcode": [ + "33433081746194" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745956" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145805", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745956" + } + ], + "enumerationChronology": [ + "no. 12 (1785)" + ], + "idBarcode": [ + "33433081745956" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745998" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145801", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745998" + } + ], + "enumerationChronology": [ + "no. 12 (1784)" + ], + "idBarcode": [ + "33433081745998" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745618" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145789", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745618" + } + ], + "enumerationChronology": [ + "no. 12 (1783)" + ], + "idBarcode": [ + "33433081745618" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745733" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145777", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745733" + } + ], + "enumerationChronology": [ + "no. 12 (1782)" + ], + "idBarcode": [ + "33433081745733" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745113" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145764", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745113" + } + ], + "enumerationChronology": [ + "no. 12 (1781)" + ], + "idBarcode": [ + "33433081745113" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745212" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145754", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745212" + } + ], + "enumerationChronology": [ + "no. 12 (1780)" + ], + "idBarcode": [ + "33433081745212" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745352" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745352" + } + ], + "enumerationChronology": [ + "no. 12 (1779)" + ], + "idBarcode": [ + "33433081745352" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745485" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145727", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745485" + } + ], + "enumerationChronology": [ + "no. 12 (1778)" + ], + "idBarcode": [ + "33433081745485" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747358" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145715", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747358" + } + ], + "enumerationChronology": [ + "no. 12 (1777)" + ], + "idBarcode": [ + "33433081747358" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747010" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145703", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747010" + } + ], + "enumerationChronology": [ + "no. 12 (1776)" + ], + "idBarcode": [ + "33433081747010" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747507" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 12-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145690", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747507" + } + ], + "enumerationChronology": [ + "no. 12 (1775)" + ], + "idBarcode": [ + "33433081747507" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743209" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146030", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743209" + } + ], + "enumerationChronology": [ + "no. 11-12 (1814)" + ], + "idBarcode": [ + "33433081743209" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743514" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146024", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743514" + } + ], + "enumerationChronology": [ + "no. 11-12 (1813)" + ], + "idBarcode": [ + "33433081743514" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743571" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146018", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743571" + } + ], + "enumerationChronology": [ + "no. 11-12 (1812)" + ], + "idBarcode": [ + "33433081743571" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743639" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743639" + } + ], + "enumerationChronology": [ + "no. 11-12 (1811)" + ], + "idBarcode": [ + "33433081743639" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743696" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146006", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743696" + } + ], + "enumerationChronology": [ + "no. 11-12 (1810)" + ], + "idBarcode": [ + "33433081743696" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743266" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145999", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743266" + } + ], + "enumerationChronology": [ + "no. 11-12 (1809)" + ], + "idBarcode": [ + "33433081743266" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743324" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145993", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743324" + } + ], + "enumerationChronology": [ + "no. 11-12 (1808)" + ], + "idBarcode": [ + "33433081743324" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743373" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145988", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743373" + } + ], + "enumerationChronology": [ + "no. 11-12 (1807)" + ], + "idBarcode": [ + "33433081743373" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743423" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145982", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743423" + } + ], + "enumerationChronology": [ + "no. 11-12 (1806)" + ], + "idBarcode": [ + "33433081743423" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743480" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145976", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743480" + } + ], + "enumerationChronology": [ + "no. 11-12 (1805)" + ], + "idBarcode": [ + "33433081743480" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744819" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145969", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744819" + } + ], + "enumerationChronology": [ + "no. 11-12 (1804)" + ], + "idBarcode": [ + "33433081744819" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744876" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1803", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145963", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744876" + } + ], + "enumerationChronology": [ + "no. 11-12 (1803)" + ], + "idBarcode": [ + "33433081744876" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744900" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145960", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744900" + } + ], + "enumerationChronology": [ + "no. 11-12 (1802)" + ], + "idBarcode": [ + "33433081744900" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744967" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 11-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145954", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744967" + } + ], + "enumerationChronology": [ + "no. 11-12 (1801)" + ], + "idBarcode": [ + "33433081744967" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744520" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744520" + } + ], + "enumerationChronology": [ + "no. 11-12 (1800)" + ], + "idBarcode": [ + "33433081744520" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744587" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744587" + } + ], + "enumerationChronology": [ + "no. 11-12 (1799)" + ], + "idBarcode": [ + "33433081744587" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744645" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744645" + } + ], + "enumerationChronology": [ + "no. 11-12 (1798)" + ], + "idBarcode": [ + "33433081744645" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744306" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744306" + } + ], + "enumerationChronology": [ + "no. 11 (1794)" + ], + "idBarcode": [ + "33433081744306" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744421" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744421" + } + ], + "enumerationChronology": [ + "no. 11 (1793)" + ], + "idBarcode": [ + "33433081744421" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743795" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743795" + } + ], + "enumerationChronology": [ + "no. 11 (1792)" + ], + "idBarcode": [ + "33433081743795" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743910" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145884", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743910" + } + ], + "enumerationChronology": [ + "no. 11 (1791)" + ], + "idBarcode": [ + "33433081743910" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744033" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145872", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744033" + } + ], + "enumerationChronology": [ + "no. 11 (1790)" + ], + "idBarcode": [ + "33433081744033" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744157" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145860", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744157" + } + ], + "enumerationChronology": [ + "no. 11 (1789)" + ], + "idBarcode": [ + "33433081744157" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746020" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145848", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746020" + } + ], + "enumerationChronology": [ + "no. 11 (1788)" + ], + "idBarcode": [ + "33433081746020" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746145" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145836", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746145" + } + ], + "enumerationChronology": [ + "no. 11 (1787)" + ], + "idBarcode": [ + "33433081746145" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746202" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746202" + } + ], + "enumerationChronology": [ + "no. 11 (1786)" + ], + "idBarcode": [ + "33433081746202" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745964" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745964" + } + ], + "enumerationChronology": [ + "no. 11 (1785)" + ], + "idBarcode": [ + "33433081745964" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746004" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746004" + } + ], + "enumerationChronology": [ + "no. 11 (1784)" + ], + "idBarcode": [ + "33433081746004" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745626" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745626" + } + ], + "enumerationChronology": [ + "no. 11 (1783)" + ], + "idBarcode": [ + "33433081745626" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745741" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145776", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745741" + } + ], + "enumerationChronology": [ + "no. 11 (1782)" + ], + "idBarcode": [ + "33433081745741" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745121" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745121" + } + ], + "enumerationChronology": [ + "no. 11 (1781)" + ], + "idBarcode": [ + "33433081745121" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745246" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145751", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745246" + } + ], + "enumerationChronology": [ + "no. 11 (1780)" + ], + "idBarcode": [ + "33433081745246" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745360" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145739", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745360" + } + ], + "enumerationChronology": [ + "no. 11 (1779)" + ], + "idBarcode": [ + "33433081745360" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745493" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145726", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745493" + } + ], + "enumerationChronology": [ + "no. 11 (1778)" + ], + "idBarcode": [ + "33433081745493" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747366" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145714", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747366" + } + ], + "enumerationChronology": [ + "no. 11 (1777)" + ], + "idBarcode": [ + "33433081747366" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747028" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145702", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747028" + } + ], + "enumerationChronology": [ + "no. 11 (1776)" + ], + "idBarcode": [ + "33433081747028" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747119" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 11-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145689", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747119" + } + ], + "enumerationChronology": [ + "no. 11 (1776)" + ], + "idBarcode": [ + "33433081747119" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743167" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1817", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146034", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743167" + } + ], + "enumerationChronology": [ + "no. 10-11 (1817)" + ], + "idBarcode": [ + "33433081743167" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744314" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145919", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744314" + } + ], + "enumerationChronology": [ + "no. 10 (1794)" + ], + "idBarcode": [ + "33433081744314" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744439" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744439" + } + ], + "enumerationChronology": [ + "no. 10 (1793)" + ], + "idBarcode": [ + "33433081744439" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743803" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743803" + } + ], + "enumerationChronology": [ + "no. 10 (1792)" + ], + "idBarcode": [ + "33433081743803" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743928" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145883", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743928" + } + ], + "enumerationChronology": [ + "no. 10 (1791)" + ], + "idBarcode": [ + "33433081743928" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744041" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145871", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744041" + } + ], + "enumerationChronology": [ + "no. 10 (1790)" + ], + "idBarcode": [ + "33433081744041" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744165" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145859", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744165" + } + ], + "enumerationChronology": [ + "no. 10 (1789)" + ], + "idBarcode": [ + "33433081744165" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746038" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145847", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746038" + } + ], + "enumerationChronology": [ + "no. 10 (1788)" + ], + "idBarcode": [ + "33433081746038" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746152" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145835", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746152" + } + ], + "enumerationChronology": [ + "no. 10 (1787)" + ], + "idBarcode": [ + "33433081746152" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746210" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746210" + } + ], + "enumerationChronology": [ + "no. 10 (1786)" + ], + "idBarcode": [ + "33433081746210" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745972" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145803", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745972" + } + ], + "enumerationChronology": [ + "no. 10 (1785)" + ], + "idBarcode": [ + "33433081745972" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745519" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745519" + } + ], + "enumerationChronology": [ + "no. 10 (1784)" + ], + "idBarcode": [ + "33433081745519" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745634" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145787", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745634" + } + ], + "enumerationChronology": [ + "no. 10 (1783)" + ], + "idBarcode": [ + "33433081745634" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745758" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145775", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745758" + } + ], + "enumerationChronology": [ + "no. 10 (1782)" + ], + "idBarcode": [ + "33433081745758" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745139" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145762", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745139" + } + ], + "enumerationChronology": [ + "no. 10 (1781)" + ], + "idBarcode": [ + "33433081745139" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745253" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145750", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745253" + } + ], + "enumerationChronology": [ + "no. 10 (1780)" + ], + "idBarcode": [ + "33433081745253" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745378" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145738", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745378" + } + ], + "enumerationChronology": [ + "no. 10 (1779)" + ], + "idBarcode": [ + "33433081745378" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745501" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145725", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745501" + } + ], + "enumerationChronology": [ + "no. 10 (1778)" + ], + "idBarcode": [ + "33433081745501" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747374" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145713", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747374" + } + ], + "enumerationChronology": [ + "no. 10 (1777)" + ], + "idBarcode": [ + "33433081747374" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747036" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747036" + } + ], + "enumerationChronology": [ + "no. 10 (1776)" + ], + "idBarcode": [ + "33433081747036" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747127" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747127" + } + ], + "enumerationChronology": [ + "no. 10 (1775)" + ], + "idBarcode": [ + "33433081747127" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747226" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1774", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145678", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747226" + } + ], + "enumerationChronology": [ + "no. 10-12 (1774)" + ], + "idBarcode": [ + "33433081747226" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746764" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1773", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145674", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746764" + } + ], + "enumerationChronology": [ + "no. 10-12 (1773)" + ], + "idBarcode": [ + "33433081746764" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746806" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1772", + "lte": "1772" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 10-1772", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145670", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746806" + } + ], + "enumerationChronology": [ + "no. 10-12 (1772)" + ], + "idBarcode": [ + "33433081746806" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743217" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146029", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743217" + } + ], + "enumerationChronology": [ + "no. 9-10 (1814)" + ], + "idBarcode": [ + "33433081743217" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743522" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146023", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743522" + } + ], + "enumerationChronology": [ + "no. 9-10 (1813)" + ], + "idBarcode": [ + "33433081743522" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743589" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146017", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743589" + } + ], + "enumerationChronology": [ + "no. 9-10 (1812)" + ], + "idBarcode": [ + "33433081743589" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743647" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146011", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743647" + } + ], + "enumerationChronology": [ + "no. 9-10 (1811)" + ], + "idBarcode": [ + "33433081743647" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743704" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146005", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743704" + } + ], + "enumerationChronology": [ + "no. 9-10 (1810)" + ], + "idBarcode": [ + "33433081743704" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743274" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145998", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743274" + } + ], + "enumerationChronology": [ + "no. 9-10 (1809)" + ], + "idBarcode": [ + "33433081743274" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743332" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145992", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743332" + } + ], + "enumerationChronology": [ + "no. 9-10 (1808)" + ], + "idBarcode": [ + "33433081743332" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743381" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145987", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743381" + } + ], + "enumerationChronology": [ + "no. 9-10 (1807)" + ], + "idBarcode": [ + "33433081743381" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743431" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743431" + } + ], + "enumerationChronology": [ + "no. 9-10 (1806)" + ], + "idBarcode": [ + "33433081743431" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743498" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145975", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743498" + } + ], + "enumerationChronology": [ + "no. 9-10 (1805)" + ], + "idBarcode": [ + "33433081743498" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744827" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744827" + } + ], + "enumerationChronology": [ + "no. 9-10 (1804)" + ], + "idBarcode": [ + "33433081744827" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744884" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1803", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145962", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744884" + } + ], + "enumerationChronology": [ + "no. 9-10 (1803)" + ], + "idBarcode": [ + "33433081744884" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744918" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145959", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744918" + } + ], + "enumerationChronology": [ + "no. 9-10 (1802)" + ], + "idBarcode": [ + "33433081744918" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744975" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 9-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744975" + } + ], + "enumerationChronology": [ + "no. 9-10 (1801)" + ], + "idBarcode": [ + "33433081744975" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744538" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145947", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744538" + } + ], + "enumerationChronology": [ + "no. 9-10 (1800)" + ], + "idBarcode": [ + "33433081744538" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744595" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145941", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744595" + } + ], + "enumerationChronology": [ + "no. 9-10 (1799)" + ], + "idBarcode": [ + "33433081744595" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744652" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744652" + } + ], + "enumerationChronology": [ + "no. 9-10 (1798)" + ], + "idBarcode": [ + "33433081744652" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744702" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1797", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744702" + } + ], + "enumerationChronology": [ + "no. 9-12 (1797)" + ], + "idBarcode": [ + "33433081744702" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744736" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1796", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145927", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744736" + } + ], + "enumerationChronology": [ + "no. 9-12 (1796)" + ], + "idBarcode": [ + "33433081744736" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744264" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1795", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145924", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744264" + } + ], + "enumerationChronology": [ + "no. 9-12 (1795)" + ], + "idBarcode": [ + "33433081744264" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744322" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145918", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744322" + } + ], + "enumerationChronology": [ + "no. 9 (1794)" + ], + "idBarcode": [ + "33433081744322" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744447" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744447" + } + ], + "enumerationChronology": [ + "no. 9 (1793)" + ], + "idBarcode": [ + "33433081744447" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743811" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743811" + } + ], + "enumerationChronology": [ + "no. 9 (1792)" + ], + "idBarcode": [ + "33433081743811" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743936" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145882", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743936" + } + ], + "enumerationChronology": [ + "no. 9 (1791)" + ], + "idBarcode": [ + "33433081743936" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744058" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145870", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744058" + } + ], + "enumerationChronology": [ + "no. 9 (1790)" + ], + "idBarcode": [ + "33433081744058" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744173" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145858", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744173" + } + ], + "enumerationChronology": [ + "no. 9 (1789)" + ], + "idBarcode": [ + "33433081744173" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746046" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746046" + } + ], + "enumerationChronology": [ + "no. 9 (1788)" + ], + "idBarcode": [ + "33433081746046" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746160" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145834", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746160" + } + ], + "enumerationChronology": [ + "no. 9 (1787)" + ], + "idBarcode": [ + "33433081746160" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746228" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145828", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746228" + } + ], + "enumerationChronology": [ + "no. 9 (1786)" + ], + "idBarcode": [ + "33433081746228" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745816" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145819", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745816" + } + ], + "enumerationChronology": [ + "no. 9 (1785)" + ], + "idBarcode": [ + "33433081745816" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745527" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745527" + } + ], + "enumerationChronology": [ + "no. 9 (1784)" + ], + "idBarcode": [ + "33433081745527" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745642" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145786", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745642" + } + ], + "enumerationChronology": [ + "no. 9 (1783)" + ], + "idBarcode": [ + "33433081745642" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745014" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145774", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745014" + } + ], + "enumerationChronology": [ + "no. 9 (1782)" + ], + "idBarcode": [ + "33433081745014" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745147" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145761", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745147" + } + ], + "enumerationChronology": [ + "no. 9 (1781)" + ], + "idBarcode": [ + "33433081745147" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745261" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145749", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745261" + } + ], + "enumerationChronology": [ + "no. 9 (1780)" + ], + "idBarcode": [ + "33433081745261" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745386" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145737", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745386" + } + ], + "enumerationChronology": [ + "no. 9 (1779)" + ], + "idBarcode": [ + "33433081745386" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747267" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747267" + } + ], + "enumerationChronology": [ + "no. 9 (1778)" + ], + "idBarcode": [ + "33433081747267" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747382" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145712", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747382" + } + ], + "enumerationChronology": [ + "no. 9 (1777)" + ], + "idBarcode": [ + "33433081747382" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747044" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145700", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747044" + } + ], + "enumerationChronology": [ + "no. 9 (1776)" + ], + "idBarcode": [ + "33433081747044" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747135" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 9-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145687", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747135" + } + ], + "enumerationChronology": [ + "no. 9 (1775)" + ], + "idBarcode": [ + "33433081747135" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743175" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1817", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146033", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743175" + } + ], + "enumerationChronology": [ + "no. 8-9 (1817)" + ], + "idBarcode": [ + "33433081743175" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744330" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145917", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744330" + } + ], + "enumerationChronology": [ + "no. 8 (1794)" + ], + "idBarcode": [ + "33433081744330" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744454" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744454" + } + ], + "enumerationChronology": [ + "no. 8 (1793)" + ], + "idBarcode": [ + "33433081744454" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743829" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743829" + } + ], + "enumerationChronology": [ + "no. 8 (1792)" + ], + "idBarcode": [ + "33433081743829" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743944" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145881", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743944" + } + ], + "enumerationChronology": [ + "no. 8 (1791)" + ], + "idBarcode": [ + "33433081743944" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744066" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145869", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744066" + } + ], + "enumerationChronology": [ + "no. 8 (1790)" + ], + "idBarcode": [ + "33433081744066" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744181" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145857", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744181" + } + ], + "enumerationChronology": [ + "no. 8 (1789)" + ], + "idBarcode": [ + "33433081744181" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746053" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145845", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746053" + } + ], + "enumerationChronology": [ + "no. 8 (1788)" + ], + "idBarcode": [ + "33433081746053" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746178" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746178" + } + ], + "enumerationChronology": [ + "no. 8 (1787)" + ], + "idBarcode": [ + "33433081746178" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745873" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145813", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745873" + } + ], + "enumerationChronology": [ + "no. 8 (1786)" + ], + "idBarcode": [ + "33433081745873" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745808" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145820", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745808" + } + ], + "enumerationChronology": [ + "no. 8 (1785)" + ], + "idBarcode": [ + "33433081745808" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745535" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145797", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745535" + } + ], + "enumerationChronology": [ + "no. 8 (1784)" + ], + "idBarcode": [ + "33433081745535" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745659" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145785", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745659" + } + ], + "enumerationChronology": [ + "no. 8 (1783)" + ], + "idBarcode": [ + "33433081745659" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745022" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145773", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745022" + } + ], + "enumerationChronology": [ + "no. 8 (1782)" + ], + "idBarcode": [ + "33433081745022" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745154" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145760", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745154" + } + ], + "enumerationChronology": [ + "no. 8 (1781)" + ], + "idBarcode": [ + "33433081745154" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745279" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145748", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745279" + } + ], + "enumerationChronology": [ + "no. 8 (1780)" + ], + "idBarcode": [ + "33433081745279" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745394" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745394" + } + ], + "enumerationChronology": [ + "no. 8 (1779)" + ], + "idBarcode": [ + "33433081745394" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747275" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145723", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747275" + } + ], + "enumerationChronology": [ + "no. 8 (1778)" + ], + "idBarcode": [ + "33433081747275" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747390" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145711", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747390" + } + ], + "enumerationChronology": [ + "no. 8 (1777)" + ], + "idBarcode": [ + "33433081747390" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747069" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145698", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747069" + } + ], + "enumerationChronology": [ + "no. 8 (1776)" + ], + "idBarcode": [ + "33433081747069" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747143" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 8-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145686", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747143" + } + ], + "enumerationChronology": [ + "no. 8 (1775)" + ], + "idBarcode": [ + "33433081747143" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743225" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146028", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743225" + } + ], + "enumerationChronology": [ + "no. 7-8 (1814)" + ], + "idBarcode": [ + "33433081743225" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743530" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146022", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743530" + } + ], + "enumerationChronology": [ + "no. 7-8 (1813)" + ], + "idBarcode": [ + "33433081743530" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743597" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146016", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743597" + } + ], + "enumerationChronology": [ + "no. 7-8 (1812)" + ], + "idBarcode": [ + "33433081743597" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743654" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146010", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743654" + } + ], + "enumerationChronology": [ + "no. 7-8 (1811)" + ], + "idBarcode": [ + "33433081743654" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743712" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146004", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743712" + } + ], + "enumerationChronology": [ + "no. 7-8 (1810)" + ], + "idBarcode": [ + "33433081743712" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743282" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145997", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743282" + } + ], + "enumerationChronology": [ + "no. 7-8 (1809)" + ], + "idBarcode": [ + "33433081743282" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743720" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146003", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743720" + } + ], + "enumerationChronology": [ + "no. 7-8 (1808)" + ], + "idBarcode": [ + "33433081743720" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743399" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145986", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743399" + } + ], + "enumerationChronology": [ + "no. 7-8 (1807)" + ], + "idBarcode": [ + "33433081743399" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743449" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145980", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743449" + } + ], + "enumerationChronology": [ + "no. 7-8 (1806)" + ], + "idBarcode": [ + "33433081743449" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743506" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743506" + } + ], + "enumerationChronology": [ + "no. 7-8 (1805)" + ], + "idBarcode": [ + "33433081743506" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744835" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145967", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744835" + } + ], + "enumerationChronology": [ + "no. 7-8 (1804)" + ], + "idBarcode": [ + "33433081744835" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744926" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744926" + } + ], + "enumerationChronology": [ + "no. 7-8 (1802)" + ], + "idBarcode": [ + "33433081744926" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744983" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 7-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145952", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744983" + } + ], + "enumerationChronology": [ + "no. 7-8 (1801)" + ], + "idBarcode": [ + "33433081744983" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744546" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145946", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744546" + } + ], + "enumerationChronology": [ + "no. 7-8 (1800)" + ], + "idBarcode": [ + "33433081744546" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744603" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145940", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744603" + } + ], + "enumerationChronology": [ + "no. 7-8 (1799)" + ], + "idBarcode": [ + "33433081744603" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744660" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145934", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744660" + } + ], + "enumerationChronology": [ + "no. 7-8 (1798)" + ], + "idBarcode": [ + "33433081744660" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744348" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145916", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744348" + } + ], + "enumerationChronology": [ + "no. 7 (1794)" + ], + "idBarcode": [ + "33433081744348" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744462" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744462" + } + ], + "enumerationChronology": [ + "no. 7 (1793)" + ], + "idBarcode": [ + "33433081744462" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743837" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743837" + } + ], + "enumerationChronology": [ + "no. 7 (1792)" + ], + "idBarcode": [ + "33433081743837" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743951" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145880", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743951" + } + ], + "enumerationChronology": [ + "no. 7 (1791)" + ], + "idBarcode": [ + "33433081743951" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744074" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145868", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744074" + } + ], + "enumerationChronology": [ + "no. 7 (1790)" + ], + "idBarcode": [ + "33433081744074" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744199" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145856", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744199" + } + ], + "enumerationChronology": [ + "no. 7 (1789)" + ], + "idBarcode": [ + "33433081744199" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746061" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145844", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746061" + } + ], + "enumerationChronology": [ + "no. 7 (1788)" + ], + "idBarcode": [ + "33433081746061" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746186" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746186" + } + ], + "enumerationChronology": [ + "no. 7 (1787)" + ], + "idBarcode": [ + "33433081746186" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745881" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145812", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745881" + } + ], + "enumerationChronology": [ + "no. 7 (1786)" + ], + "idBarcode": [ + "33433081745881" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745824" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145818", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745824" + } + ], + "enumerationChronology": [ + "no. 7 (1785)" + ], + "idBarcode": [ + "33433081745824" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745543" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145796", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745543" + } + ], + "enumerationChronology": [ + "no. 7 (1784)" + ], + "idBarcode": [ + "33433081745543" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745667" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145784", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745667" + } + ], + "enumerationChronology": [ + "no. 7 (1783)" + ], + "idBarcode": [ + "33433081745667" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745030" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745030" + } + ], + "enumerationChronology": [ + "no. 7 (1782)" + ], + "idBarcode": [ + "33433081745030" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745170" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145758", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745170" + } + ], + "enumerationChronology": [ + "no. 7 (1781)" + ], + "idBarcode": [ + "33433081745170" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745287" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145747", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745287" + } + ], + "enumerationChronology": [ + "no. 7 (1780)" + ], + "idBarcode": [ + "33433081745287" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745402" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145735", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745402" + } + ], + "enumerationChronology": [ + "no. 7 (1779)" + ], + "idBarcode": [ + "33433081745402" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747283" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145722", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747283" + } + ], + "enumerationChronology": [ + "no. 7 (1778)" + ], + "idBarcode": [ + "33433081747283" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747408" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145710", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747408" + } + ], + "enumerationChronology": [ + "no. 7 (1777)" + ], + "idBarcode": [ + "33433081747408" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747051" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145699", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747051" + } + ], + "enumerationChronology": [ + "no. 7 (1776)" + ], + "idBarcode": [ + "33433081747051" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747150" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145685", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747150" + } + ], + "enumerationChronology": [ + "no. 7 (1775)" + ], + "idBarcode": [ + "33433081747150" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747234" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1774", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145677", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747234" + } + ], + "enumerationChronology": [ + "no. 7-9 (1774)" + ], + "idBarcode": [ + "33433081747234" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746772" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1773", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145673", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746772" + } + ], + "enumerationChronology": [ + "no. 7-9 (1773)" + ], + "idBarcode": [ + "33433081746772" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746814" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1772", + "lte": "1772" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 7-1772", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145669", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746814" + } + ], + "enumerationChronology": [ + "no. 7-9 (1772)" + ], + "idBarcode": [ + "33433081746814" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743183" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1817", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146032", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743183" + } + ], + "enumerationChronology": [ + "no. 6-7 (1817)" + ], + "idBarcode": [ + "33433081743183" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744355" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145915", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744355" + } + ], + "enumerationChronology": [ + "no. 6 (1794)" + ], + "idBarcode": [ + "33433081744355" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744470" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744470" + } + ], + "enumerationChronology": [ + "no. 6 (1793)" + ], + "idBarcode": [ + "33433081744470" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743845" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743845" + } + ], + "enumerationChronology": [ + "no. 6 (1792)" + ], + "idBarcode": [ + "33433081743845" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743969" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145879", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743969" + } + ], + "enumerationChronology": [ + "no. 6 (1791)" + ], + "idBarcode": [ + "33433081743969" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744082" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145867", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744082" + } + ], + "enumerationChronology": [ + "no. 6 (1790)" + ], + "idBarcode": [ + "33433081744082" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744207" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145855", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744207" + } + ], + "enumerationChronology": [ + "no. 6 (1789)" + ], + "idBarcode": [ + "33433081744207" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746079" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145843", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746079" + } + ], + "enumerationChronology": [ + "no. 6 (1788)" + ], + "idBarcode": [ + "33433081746079" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745766" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145824", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745766" + } + ], + "enumerationChronology": [ + "no. 6 (1787)" + ], + "idBarcode": [ + "33433081745766" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745899" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145811", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745899" + } + ], + "enumerationChronology": [ + "no. 6 (1786)" + ], + "idBarcode": [ + "33433081745899" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745832" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145817", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745832" + } + ], + "enumerationChronology": [ + "no. 6 (1785)" + ], + "idBarcode": [ + "33433081745832" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745550" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745550" + } + ], + "enumerationChronology": [ + "no. 6 (1784)" + ], + "idBarcode": [ + "33433081745550" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745675" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145783", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745675" + } + ], + "enumerationChronology": [ + "no. 6 (1783)" + ], + "idBarcode": [ + "33433081745675" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745048" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745048" + } + ], + "enumerationChronology": [ + "no. 6 (1782)" + ], + "idBarcode": [ + "33433081745048" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745188" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145757", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745188" + } + ], + "enumerationChronology": [ + "no. 6 (1781)" + ], + "idBarcode": [ + "33433081745188" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745295" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145746", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745295" + } + ], + "enumerationChronology": [ + "no. 6 (1780)" + ], + "idBarcode": [ + "33433081745295" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745410" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145734", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745410" + } + ], + "enumerationChronology": [ + "no. 6 (1779)" + ], + "idBarcode": [ + "33433081745410" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747291" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145721", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747291" + } + ], + "enumerationChronology": [ + "no. 6 (1778)" + ], + "idBarcode": [ + "33433081747291" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747416" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145709", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747416" + } + ], + "enumerationChronology": [ + "no. 6 (1777)" + ], + "idBarcode": [ + "33433081747416" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747077" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145697", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747077" + } + ], + "enumerationChronology": [ + "no. 6 (1776)" + ], + "idBarcode": [ + "33433081747077" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747168" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 6-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145684", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747168" + } + ], + "enumerationChronology": [ + "no. 6 (1775)" + ], + "idBarcode": [ + "33433081747168" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743233" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146027", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743233" + } + ], + "enumerationChronology": [ + "no. 5-6 (1814)" + ], + "idBarcode": [ + "33433081743233" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743548" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146021", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743548" + } + ], + "enumerationChronology": [ + "no. 5-6 (1813)" + ], + "idBarcode": [ + "33433081743548" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743605" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146015", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743605" + } + ], + "enumerationChronology": [ + "no. 5-6 (1812)" + ], + "idBarcode": [ + "33433081743605" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743662" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146009", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743662" + } + ], + "enumerationChronology": [ + "v. 5-6 (1811)" + ], + "idBarcode": [ + "33433081743662" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743738" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146002", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743738" + } + ], + "enumerationChronology": [ + "no. 5-6 (1810)" + ], + "idBarcode": [ + "33433081743738" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743290" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145996", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743290" + } + ], + "enumerationChronology": [ + "no. 5-6 (1809)" + ], + "idBarcode": [ + "33433081743290" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743340" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145991", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743340" + } + ], + "enumerationChronology": [ + "no. 5-6 (1808)" + ], + "idBarcode": [ + "33433081743340" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743407" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145985", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743407" + } + ], + "enumerationChronology": [ + "no. 5-6 (1807)" + ], + "idBarcode": [ + "33433081743407" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743456" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145979", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743456" + } + ], + "enumerationChronology": [ + "no. 5-6 (1806)" + ], + "idBarcode": [ + "33433081743456" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744777" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145973", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744777" + } + ], + "enumerationChronology": [ + "no. 5-6 (1805)" + ], + "idBarcode": [ + "33433081744777" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744843" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145966", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744843" + } + ], + "enumerationChronology": [ + "no. 5-6 (1804)" + ], + "idBarcode": [ + "33433081744843" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744934" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145957", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744934" + } + ], + "enumerationChronology": [ + "no. 5-6 (1802)" + ], + "idBarcode": [ + "33433081744934" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744991" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 5-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145951", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744991" + } + ], + "enumerationChronology": [ + "no. 5-6 (1801)" + ], + "idBarcode": [ + "33433081744991" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744553" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145945", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744553" + } + ], + "enumerationChronology": [ + "no. 5-6 (1800)" + ], + "idBarcode": [ + "33433081744553" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744611" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145939", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744611" + } + ], + "enumerationChronology": [ + "no. 5-6 (1799)" + ], + "idBarcode": [ + "33433081744611" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744678" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145933", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744678" + } + ], + "enumerationChronology": [ + "no. 5-6 (1798)" + ], + "idBarcode": [ + "33433081744678" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744710" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1797", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145929", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744710" + } + ], + "enumerationChronology": [ + "no. 5-8 (1797)" + ], + "idBarcode": [ + "33433081744710" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744744" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1796", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145926", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744744" + } + ], + "enumerationChronology": [ + "no. 5-8 (1796)" + ], + "idBarcode": [ + "33433081744744" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744272" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1795", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145923", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744272" + } + ], + "enumerationChronology": [ + "no. 5-8 (1795)" + ], + "idBarcode": [ + "33433081744272" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744363" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145914", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744363" + } + ], + "enumerationChronology": [ + "no. 5 (1794)" + ], + "idBarcode": [ + "33433081744363" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744488" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744488" + } + ], + "enumerationChronology": [ + "no. 5 (1793)" + ], + "idBarcode": [ + "33433081744488" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743852" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743852" + } + ], + "enumerationChronology": [ + "no. 5 (1792)" + ], + "idBarcode": [ + "33433081743852" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743977" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145878", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743977" + } + ], + "enumerationChronology": [ + "no. 5 (1791)" + ], + "idBarcode": [ + "33433081743977" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744090" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145866", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744090" + } + ], + "enumerationChronology": [ + "no. 5 (1790)" + ], + "idBarcode": [ + "33433081744090" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744215" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145854", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744215" + } + ], + "enumerationChronology": [ + "no. 5 (1789)" + ], + "idBarcode": [ + "33433081744215" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746087" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145842", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746087" + } + ], + "enumerationChronology": [ + "no. 5 (1788)" + ], + "idBarcode": [ + "33433081746087" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745782" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145822", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745782" + } + ], + "enumerationChronology": [ + "no. 5 (1787)" + ], + "idBarcode": [ + "33433081745782" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745907" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145810", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745907" + } + ], + "enumerationChronology": [ + "no. 5 (1786)" + ], + "idBarcode": [ + "33433081745907" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745840" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145816", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745840" + } + ], + "enumerationChronology": [ + "no. 5 (1785)" + ], + "idBarcode": [ + "33433081745840" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745568" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745568" + } + ], + "enumerationChronology": [ + "no. 5 (1784)" + ], + "idBarcode": [ + "33433081745568" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745683" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145782", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745683" + } + ], + "enumerationChronology": [ + "no. 5 (1783)" + ], + "idBarcode": [ + "33433081745683" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745055" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145770", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745055" + } + ], + "enumerationChronology": [ + "no. 5 (1782)" + ], + "idBarcode": [ + "33433081745055" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745204" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145755", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745204" + } + ], + "enumerationChronology": [ + "no. 5 (1781)" + ], + "idBarcode": [ + "33433081745204" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745303" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145745", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745303" + } + ], + "enumerationChronology": [ + "no. 5 (1780)" + ], + "idBarcode": [ + "33433081745303" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745428" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145733", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745428" + } + ], + "enumerationChronology": [ + "no. 5 (1779)" + ], + "idBarcode": [ + "33433081745428" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747309" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145720", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747309" + } + ], + "enumerationChronology": [ + "no. 5 (1778)" + ], + "idBarcode": [ + "33433081747309" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747424" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145708", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747424" + } + ], + "enumerationChronology": [ + "no. 5 (1777)" + ], + "idBarcode": [ + "33433081747424" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747085" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145696", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747085" + } + ], + "enumerationChronology": [ + "no. 5 (1776)" + ], + "idBarcode": [ + "33433081747085" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747176" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 5-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145683", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747176" + } + ], + "enumerationChronology": [ + "no. 5 (1775)" + ], + "idBarcode": [ + "33433081747176" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743134" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1818", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 4-1818", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146037", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743134" + } + ], + "enumerationChronology": [ + "no. 4 (1818)" + ], + "idBarcode": [ + "33433081743134" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743191" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1817", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146031", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743191" + } + ], + "enumerationChronology": [ + "no. 4-5 (1817)" + ], + "idBarcode": [ + "33433081743191" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744371" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145913", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744371" + } + ], + "enumerationChronology": [ + "no. 4 (1794)" + ], + "idBarcode": [ + "33433081744371" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744496" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744496" + } + ], + "enumerationChronology": [ + "no. 4 (1793)" + ], + "idBarcode": [ + "33433081744496" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743860" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743860" + } + ], + "enumerationChronology": [ + "no. 4 (1792)" + ], + "idBarcode": [ + "33433081743860" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743985" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145877", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743985" + } + ], + "enumerationChronology": [ + "no. 4 (1791)" + ], + "idBarcode": [ + "33433081743985" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744108" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145865", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744108" + } + ], + "enumerationChronology": [ + "no. 4 (1790)" + ], + "idBarcode": [ + "33433081744108" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744223" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145853", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744223" + } + ], + "enumerationChronology": [ + "no. 4 (1789)" + ], + "idBarcode": [ + "33433081744223" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746095" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145841", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746095" + } + ], + "enumerationChronology": [ + "no. 4 (1788)" + ], + "idBarcode": [ + "33433081746095" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745790" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145821", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745790" + } + ], + "enumerationChronology": [ + "no. 4 (1787)" + ], + "idBarcode": [ + "33433081745790" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745915" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145809", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745915" + } + ], + "enumerationChronology": [ + "no. 4 (1786)" + ], + "idBarcode": [ + "33433081745915" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745857" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145815", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745857" + } + ], + "enumerationChronology": [ + "no. 4 (1785)" + ], + "idBarcode": [ + "33433081745857" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745576" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145793", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745576" + } + ], + "enumerationChronology": [ + "no. 4 (1784)" + ], + "idBarcode": [ + "33433081745576" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745691" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145781", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745691" + } + ], + "enumerationChronology": [ + "no. 4 (1783)" + ], + "idBarcode": [ + "33433081745691" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745063" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145769", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745063" + } + ], + "enumerationChronology": [ + "no. 4 (1782)" + ], + "idBarcode": [ + "33433081745063" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745196" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145756", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745196" + } + ], + "enumerationChronology": [ + "no. 4 (1781)" + ], + "idBarcode": [ + "33433081745196" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745311" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145744", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745311" + } + ], + "enumerationChronology": [ + "no. 4 (1780)" + ], + "idBarcode": [ + "33433081745311" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745436" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145732", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745436" + } + ], + "enumerationChronology": [ + "no. 4 (1779)" + ], + "idBarcode": [ + "33433081745436" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747317" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145719", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747317" + } + ], + "enumerationChronology": [ + "no. 4 (1778)" + ], + "idBarcode": [ + "33433081747317" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747432" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145707", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747432" + } + ], + "enumerationChronology": [ + "no. 4 (1777)" + ], + "idBarcode": [ + "33433081747432" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747093" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145695", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747093" + } + ], + "enumerationChronology": [ + "no. 4 (1776)" + ], + "idBarcode": [ + "33433081747093" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747184" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145682", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747184" + } + ], + "enumerationChronology": [ + "no. 4 (1775)" + ], + "idBarcode": [ + "33433081747184" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747242" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1774", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145676", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747242" + } + ], + "enumerationChronology": [ + "no. 4-6 (1774)" + ], + "idBarcode": [ + "33433081747242" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746780" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 4-1773", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145672", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746780" + } + ], + "enumerationChronology": [ + "no. 4-6 (1773)" + ], + "idBarcode": [ + "33433081746780" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743241" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146026", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743241" + } + ], + "enumerationChronology": [ + "no. 3-4 (1814)" + ], + "idBarcode": [ + "33433081743241" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743555" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146020", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743555" + } + ], + "enumerationChronology": [ + "no. 3-4 (1813)" + ], + "idBarcode": [ + "33433081743555" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743613" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146014", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743613" + } + ], + "enumerationChronology": [ + "no. 3-4 (1812)" + ], + "idBarcode": [ + "33433081743613" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743670" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146008", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743670" + } + ], + "enumerationChronology": [ + "no. 3-4 (1811)" + ], + "idBarcode": [ + "33433081743670" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743746" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146001", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743746" + } + ], + "enumerationChronology": [ + "no. 3-4 (1810)" + ], + "idBarcode": [ + "33433081743746" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743308" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145995", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743308" + } + ], + "enumerationChronology": [ + "no. 3-4 (1809)" + ], + "idBarcode": [ + "33433081743308" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743357" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145990", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743357" + } + ], + "enumerationChronology": [ + "no. 3-4 (1808)" + ], + "idBarcode": [ + "33433081743357" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744769" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145984", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744769" + } + ], + "enumerationChronology": [ + "no. 3-4 (1807)" + ], + "idBarcode": [ + "33433081744769" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743464" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145978", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743464" + } + ], + "enumerationChronology": [ + "no. 3-4 (1806)" + ], + "idBarcode": [ + "33433081743464" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744785" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145972", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744785" + } + ], + "enumerationChronology": [ + "no. 3-4 (1805)" + ], + "idBarcode": [ + "33433081744785" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744850" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145965", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744850" + } + ], + "enumerationChronology": [ + "no. 3-4 (1804)" + ], + "idBarcode": [ + "33433081744850" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744942" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145956", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744942" + } + ], + "enumerationChronology": [ + "no. 3-4 (1802)" + ], + "idBarcode": [ + "33433081744942" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745006" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 3-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145950", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745006" + } + ], + "enumerationChronology": [ + "no. 3-4 (1801)" + ], + "idBarcode": [ + "33433081745006" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744561" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145944", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744561" + } + ], + "enumerationChronology": [ + "no. 3-4 (1800)" + ], + "idBarcode": [ + "33433081744561" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744629" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744629" + } + ], + "enumerationChronology": [ + "no. 3-4 (1799)" + ], + "idBarcode": [ + "33433081744629" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744686" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744686" + } + ], + "enumerationChronology": [ + "no. 3-4 (1798)" + ], + "idBarcode": [ + "33433081744686" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744389" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145912", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744389" + } + ], + "enumerationChronology": [ + "no. 3 (1794)" + ], + "idBarcode": [ + "33433081744389" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744504" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744504" + } + ], + "enumerationChronology": [ + "no. 3 (1793)" + ], + "idBarcode": [ + "33433081744504" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743878" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743878" + } + ], + "enumerationChronology": [ + "no. 3 (1792)" + ], + "idBarcode": [ + "33433081743878" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743993" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145876", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743993" + } + ], + "enumerationChronology": [ + "no. 3 (1791)" + ], + "idBarcode": [ + "33433081743993" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744116" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145864", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744116" + } + ], + "enumerationChronology": [ + "no. 3 (1790)" + ], + "idBarcode": [ + "33433081744116" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744231" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145852", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744231" + } + ], + "enumerationChronology": [ + "no. 3 (1789)" + ], + "idBarcode": [ + "33433081744231" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746103" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145840", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746103" + } + ], + "enumerationChronology": [ + "no. 3 (1788)" + ], + "idBarcode": [ + "33433081746103" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746244" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145826", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746244" + } + ], + "enumerationChronology": [ + "no. 3 (1787)" + ], + "idBarcode": [ + "33433081746244" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745923" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145808", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745923" + } + ], + "enumerationChronology": [ + "no. 3 (1786)" + ], + "idBarcode": [ + "33433081745923" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745865" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145814", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745865" + } + ], + "enumerationChronology": [ + "no. 3 (1785)" + ], + "idBarcode": [ + "33433081745865" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745584" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745584" + } + ], + "enumerationChronology": [ + "no. 3 (1784)" + ], + "idBarcode": [ + "33433081745584" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745709" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745709" + } + ], + "enumerationChronology": [ + "no. 3 (1783)" + ], + "idBarcode": [ + "33433081745709" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745071" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145768", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745071" + } + ], + "enumerationChronology": [ + "no. 3 (1782)" + ], + "idBarcode": [ + "33433081745071" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745162" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145759", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745162" + } + ], + "enumerationChronology": [ + "no. 3 (1781)" + ], + "idBarcode": [ + "33433081745162" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745329" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145743", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745329" + } + ], + "enumerationChronology": [ + "no. 3 (1780)" + ], + "idBarcode": [ + "33433081745329" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745444" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145731", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745444" + } + ], + "enumerationChronology": [ + "no. 3 (1779)" + ], + "idBarcode": [ + "33433081745444" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747325" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145718", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747325" + } + ], + "enumerationChronology": [ + "no. 3 (1778)" + ], + "idBarcode": [ + "33433081747325" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747440" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145706", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747440" + } + ], + "enumerationChronology": [ + "no. 3 (1777)" + ], + "idBarcode": [ + "33433081747440" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747101" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145694", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747101" + } + ], + "enumerationChronology": [ + "no. 3 (1776)" + ], + "idBarcode": [ + "33433081747101" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747192" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 3-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145681", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747192" + } + ], + "enumerationChronology": [ + "no. 3 (1775)" + ], + "idBarcode": [ + "33433081747192" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743142" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1818", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 2-1818", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146036", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743142" + } + ], + "enumerationChronology": [ + "no. 2-3 (1818)" + ], + "idBarcode": [ + "33433081743142" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744397" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744397" + } + ], + "enumerationChronology": [ + "no. 2 (1794)" + ], + "idBarcode": [ + "33433081744397" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743761" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743761" + } + ], + "enumerationChronology": [ + "no. 2 (1793)" + ], + "idBarcode": [ + "33433081743761" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743886" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743886" + } + ], + "enumerationChronology": [ + "no. 2 (1792)" + ], + "idBarcode": [ + "33433081743886" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744009" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145875", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744009" + } + ], + "enumerationChronology": [ + "no. 2 (1791)" + ], + "idBarcode": [ + "33433081744009" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744124" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145863", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744124" + } + ], + "enumerationChronology": [ + "no. 2 (1790)" + ], + "idBarcode": [ + "33433081744124" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744249" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145851", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744249" + } + ], + "enumerationChronology": [ + "no. 2 (1789)" + ], + "idBarcode": [ + "33433081744249" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746111" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145839", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746111" + } + ], + "enumerationChronology": [ + "no. 2 (1788)" + ], + "idBarcode": [ + "33433081746111" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745931" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145807", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745931" + } + ], + "enumerationChronology": [ + "no. 2 (1786)" + ], + "idBarcode": [ + "33433081745931" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746236" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145827", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746236" + } + ], + "enumerationChronology": [ + "no. 2 (1785)" + ], + "idBarcode": [ + "33433081746236" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745592" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145791", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745592" + } + ], + "enumerationChronology": [ + "no. 2 (1784)" + ], + "idBarcode": [ + "33433081745592" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745717" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745717" + } + ], + "enumerationChronology": [ + "no. 2 (1783)" + ], + "idBarcode": [ + "33433081745717" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745089" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145767", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745089" + } + ], + "enumerationChronology": [ + "no. 2 (1782)" + ], + "idBarcode": [ + "33433081745089" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745220" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145753", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745220" + } + ], + "enumerationChronology": [ + "no. 2 (1781)" + ], + "idBarcode": [ + "33433081745220" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745337" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145742", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745337" + } + ], + "enumerationChronology": [ + "no. 2 (1780)" + ], + "idBarcode": [ + "33433081745337" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745451" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145730", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745451" + } + ], + "enumerationChronology": [ + "no. 2 (1779)" + ], + "idBarcode": [ + "33433081745451" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747333" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145717", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747333" + } + ], + "enumerationChronology": [ + "no. 2 (1778)" + ], + "idBarcode": [ + "33433081747333" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747457" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145705", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747457" + } + ], + "enumerationChronology": [ + "no. 2 (1777)" + ], + "idBarcode": [ + "33433081747457" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747473" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145693", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747473" + } + ], + "enumerationChronology": [ + "no. 2 (1776)" + ], + "idBarcode": [ + "33433081747473" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747200" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145680", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747200" + } + ], + "enumerationChronology": [ + "no. 2 (1775)" + ], + "idBarcode": [ + "33433081747200" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746251" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1737", + "lte": "1737" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 2-1737", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145825", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746251" + } + ], + "enumerationChronology": [ + "no. 2 (1737)" + ], + "idBarcode": [ + "33433081746251" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743159" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1817", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1817", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146035", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743159" + } + ], + "enumerationChronology": [ + "no. 12, 1817-no. 1, 1818" + ], + "idBarcode": [ + "33433081743159" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + }, + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743258" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1814", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146025", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743258" + } + ], + "enumerationChronology": [ + "no. 1-2 (1814)" + ], + "idBarcode": [ + "33433081743258" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743563" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1813", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146019", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743563" + } + ], + "enumerationChronology": [ + "no. 1-2 (1813)" + ], + "idBarcode": [ + "33433081743563" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743621" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1812", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146013", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743621" + } + ], + "enumerationChronology": [ + "no. 1-2 (1812)" + ], + "idBarcode": [ + "33433081743621" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743688" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1811", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146007", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743688" + } + ], + "enumerationChronology": [ + "no. 1-2 (1811)" + ], + "idBarcode": [ + "33433081743688" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743753" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1810", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146000", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743753" + } + ], + "enumerationChronology": [ + "no. 1-2 (1810)" + ], + "idBarcode": [ + "33433081743753" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743316" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1809", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145994", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743316" + } + ], + "enumerationChronology": [ + "no. 1-2 (1809)" + ], + "idBarcode": [ + "33433081743316" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743365" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1808", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743365" + } + ], + "enumerationChronology": [ + "no. 1-2 (1808)" + ], + "idBarcode": [ + "33433081743365" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743415" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1807", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743415" + } + ], + "enumerationChronology": [ + "no. 1-2 (1807)" + ], + "idBarcode": [ + "33433081743415" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743472" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1806", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145977", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743472" + } + ], + "enumerationChronology": [ + "no. 1-2 (1806)" + ], + "idBarcode": [ + "33433081743472" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744793" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1805", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145971", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744793" + } + ], + "enumerationChronology": [ + "no. 1-2 (1805)" + ], + "idBarcode": [ + "33433081744793" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744868" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1804", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145964", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744868" + } + ], + "enumerationChronology": [ + "no. 1-2 (1804)" + ], + "idBarcode": [ + "33433081744868" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744892" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1803", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145961", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744892" + } + ], + "enumerationChronology": [ + "no. 1-3 (1803)" + ], + "idBarcode": [ + "33433081744892" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744959" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1802", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145955", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744959" + } + ], + "enumerationChronology": [ + "no. 1-2 (1802)" + ], + "idBarcode": [ + "33433081744959" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744512" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 1-1801", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145949", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744512" + } + ], + "enumerationChronology": [ + "no. 1-2 (1801)" + ], + "idBarcode": [ + "33433081744512" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744579" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1800", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145943", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744579" + } + ], + "enumerationChronology": [ + "no. 1-2 (1800)" + ], + "idBarcode": [ + "33433081744579" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744637" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1799", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145937", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744637" + } + ], + "enumerationChronology": [ + "no. 1-2 (1799)" + ], + "idBarcode": [ + "33433081744637" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744694" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1798", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145931", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744694" + } + ], + "enumerationChronology": [ + "no. 1-2 (1798)" + ], + "idBarcode": [ + "33433081744694" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744728" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1797", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145928", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744728" + } + ], + "enumerationChronology": [ + "no. 1-4 (1797)" + ], + "idBarcode": [ + "33433081744728" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744751" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1796", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744751" + } + ], + "enumerationChronology": [ + "no. 1-4 (1796)" + ], + "idBarcode": [ + "33433081744751" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744280" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1795", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145922", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744280" + } + ], + "enumerationChronology": [ + "no. 1-4 (1795)" + ], + "idBarcode": [ + "33433081744280" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744405" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1794", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145910", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744405" + } + ], + "enumerationChronology": [ + "no. 1 (1794)" + ], + "idBarcode": [ + "33433081744405" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743779" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1793", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743779" + } + ], + "enumerationChronology": [ + "no. 1 (1793)" + ], + "idBarcode": [ + "33433081743779" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743894" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1792", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743894" + } + ], + "enumerationChronology": [ + "no. 1 (1792)" + ], + "idBarcode": [ + "33433081743894" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744017" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1791", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145874", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744017" + } + ], + "enumerationChronology": [ + "no. 1 (1791)" + ], + "idBarcode": [ + "33433081744017" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744132" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1790", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145862", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744132" + } + ], + "enumerationChronology": [ + "no. 1 (1790)" + ], + "idBarcode": [ + "33433081744132" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744256" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1789", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145850", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744256" + } + ], + "enumerationChronology": [ + "no. 1 (1789)" + ], + "idBarcode": [ + "33433081744256" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746129" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1788", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145838", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746129" + } + ], + "enumerationChronology": [ + "no. 1 (1788)" + ], + "idBarcode": [ + "33433081746129" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745774" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1787", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145823", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745774" + } + ], + "enumerationChronology": [ + "no. 1 (1787)" + ], + "idBarcode": [ + "33433081745774" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745949" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1786", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745949" + } + ], + "enumerationChronology": [ + "no. 1 (1786)" + ], + "idBarcode": [ + "33433081745949" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745980" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1785", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745980" + } + ], + "enumerationChronology": [ + "no. 1 (1785)" + ], + "idBarcode": [ + "33433081745980" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745600" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1784", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145790", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745600" + } + ], + "enumerationChronology": [ + "no. 1 (1784)" + ], + "idBarcode": [ + "33433081745600" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745725" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1783", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145778", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745725" + } + ], + "enumerationChronology": [ + "no. 1 (1783)" + ], + "idBarcode": [ + "33433081745725" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745097" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145766", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745097" + } + ], + "enumerationChronology": [ + "no. 1 (1782)" + ], + "idBarcode": [ + "33433081745097" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745238" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1781", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145752", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745238" + } + ], + "enumerationChronology": [ + "no. 1 (1781)" + ], + "idBarcode": [ + "33433081745238" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745345" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1780", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145741", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745345" + } + ], + "enumerationChronology": [ + "no. 1 (1780)" + ], + "idBarcode": [ + "33433081745345" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745469" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145729", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745469" + } + ], + "enumerationChronology": [ + "no. 1 (1779)" + ], + "idBarcode": [ + "33433081745469" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747341" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1778", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145716", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747341" + } + ], + "enumerationChronology": [ + "no. 1 (1778)" + ], + "idBarcode": [ + "33433081747341" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747465" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1777", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145704", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747465" + } + ], + "enumerationChronology": [ + "no. 1 (1777)" + ], + "idBarcode": [ + "33433081747465" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747481" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145692", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747481" + } + ], + "enumerationChronology": [ + "no. 1 (1776)" + ], + "idBarcode": [ + "33433081747481" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747218" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1775", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145679", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747218" + } + ], + "enumerationChronology": [ + "no. 1 (1775)" + ], + "idBarcode": [ + "33433081747218" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747259" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1774", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145675", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747259" + } + ], + "enumerationChronology": [ + "no. 1-3 (1774)" + ], + "idBarcode": [ + "33433081747259" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081746798" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " 1-1773", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145671", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081746798" + } + ], + "enumerationChronology": [ + "no. 1-3 (1773)" + ], + "idBarcode": [ + "33433081746798" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081744801" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1803", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1803", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081744801" + } + ], + "enumerationChronology": [ + "Table Generale 1-28 (1803-1805)" + ], + "idBarcode": [ + "33433081744801" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081743126" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1782", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " -1782", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17146038", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081743126" + } + ], + "enumerationChronology": [ + "Table (1782-1784)" + ], + "idBarcode": [ + "33433081743126" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745105" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1779", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " -1779", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145765", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745105" + } + ], + "enumerationChronology": [ + "Table (1779-1781)" + ], + "idBarcode": [ + "33433081745105" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081745477" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1776", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " -1776", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081745477" + } + ], + "enumerationChronology": [ + "Table (1776-1778)" + ], + "idBarcode": [ + "33433081745477" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:barcode:33433081747499" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers)", + "dateRange": [ + { + "gte": "1772", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": " -1772", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "uri": "i17145691", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "bf:Barcode", + "value": "33433081747499" + } + ], + "enumerationChronology": [ + "Table (1772-1775)" + ], + "idBarcode": [ + "33433081747499" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + } + ], + "note": [ + { + "noteType": "Note", + "label": "Published at Bruxelles, 1773-1775; at Liége, 1776-1781.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Description based on: 19th année, t. 10 (Oct. 1790).", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 370 + ], + "numItemsTotal": [ + 370 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "L'Esprit des journaux, françois et étrangers" + ], + "numItemVolumesParsed": [ + 365 + ], + "createdString": [ + "17uu" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 368 + ], + "contributorLiteral": [ + "Société de gens de lettres" + ], + "idOclc": [ + "1568232" + ], + "popularity": 1075, + "dateEndYear": [ + 1 + ], + "contributor_sort": [ + "société de gens de lettres" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "title_sort": [ + "lesprit des journaux francois et etrangers" + ], + "dateString": [ + "17uu" + ], + "titleDisplay": [ + "L'Esprit des journaux, françois et étrangers / par une Société de gens-de-lettres." + ], + "uri": "b15109087", + "parallelContributorLiteral": [ + null + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust--Table (1782-1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743126" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1818)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743134" + }, + { + "label": "Full text available via HathiTrust--no. 2-3 (1818)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743142" + }, + { + "label": "Full text available via HathiTrust--no. 12, 1817-no. 1, 1818", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743159" + }, + { + "label": "Full text available via HathiTrust--no. 10-11 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743167" + }, + { + "label": "Full text available via HathiTrust--no. 8-9 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743175" + }, + { + "label": "Full text available via HathiTrust--no. 6-7 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743183" + }, + { + "label": "Full text available via HathiTrust--no. 4-5 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743191" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743209" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743217" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743225" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743233" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743241" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743258" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743266" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743274" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743282" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743290" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743308" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743316" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743324" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743332" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743340" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743357" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743365" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743373" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743381" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743399" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743407" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743423" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743431" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743449" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743456" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743464" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743472" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743480" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743498" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743506" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743514" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743522" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743530" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743548" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743555" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743563" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743571" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743589" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743597" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743605" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743613" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743621" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743639" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743647" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743654" + }, + { + "label": "Full text available via HathiTrust--v. 5-6 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743662" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743670" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743688" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743696" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743704" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743712" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743720" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743738" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743746" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743753" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743761" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743779" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743787" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743795" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743803" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743811" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743829" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743837" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743845" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743852" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743860" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743878" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743886" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743894" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743902" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743910" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743928" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743936" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743944" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743951" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743969" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743977" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743985" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743993" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744009" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744017" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744025" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744033" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744041" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744058" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744066" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744074" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744082" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744090" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744108" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744116" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744124" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744132" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744140" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744157" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744165" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744173" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744181" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744199" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744207" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744215" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1789)", + "url": "http://hdl.handle.net/2027/nyp.33433081744223" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744231" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744249" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744256" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744264" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744272" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744280" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744298" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744306" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744314" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744322" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744330" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744348" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744355" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744363" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744371" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744389" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744397" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744405" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744413" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744421" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744439" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744447" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744454" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744462" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744470" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744488" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744496" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744504" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744512" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744520" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744538" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744546" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744553" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744561" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744579" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744587" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744595" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744603" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744611" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744629" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744637" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744645" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744652" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744660" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744678" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744686" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744694" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744702" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744710" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744728" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744736" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744744" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744751" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744769" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744777" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744785" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744793" + }, + { + "label": "Full text available via HathiTrust--Table Generale 1-28 (1803-1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744801" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744819" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744827" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744835" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744843" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744850" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744868" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744876" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744884" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744892" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744900" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744918" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744926" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744934" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744942" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744959" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744967" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744975" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744983" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744991" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745006" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745014" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745022" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745030" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745048" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745055" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745063" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745071" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745089" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745097" + }, + { + "label": "Full text available via HathiTrust--Table (1779-1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745105" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745113" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745121" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745139" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745147" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745154" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745162" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745170" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745188" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745196" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745204" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745212" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745220" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745238" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745246" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745253" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745261" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745279" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745287" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745295" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745303" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745311" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745329" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745337" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745345" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745352" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745360" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745378" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745386" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745394" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745402" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745410" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745428" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745436" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745444" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745451" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745469" + }, + { + "label": "Full text available via HathiTrust--Table (1776-1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745477" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745485" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745493" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745501" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745519" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745527" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745535" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745543" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745550" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745568" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745576" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745584" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745592" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745600" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745618" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745626" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745634" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745642" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745659" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745667" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745675" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745683" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745691" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745709" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745717" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745725" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745733" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745741" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745758" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745766" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745774" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745782" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745790" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745808" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745816" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745824" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745832" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745840" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745857" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745865" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745873" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745881" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745899" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745907" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745915" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745923" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745931" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745949" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745956" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745964" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745972" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745980" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745998" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746004" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746012" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746020" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746038" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746046" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746053" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746061" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746079" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746087" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746095" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746103" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746111" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746129" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746137" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746145" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746152" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746160" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746178" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746186" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746194" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746202" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746210" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746228" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746236" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746244" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746764" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746772" + }, + { + "label": "Full text available via HathiTrust--no. 4-6 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746780" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746798" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1772)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746806" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1772)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746814" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747010" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747028" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747036" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747044" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747051" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747069" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747077" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747085" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747093" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747101" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747119" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747127" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747135" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747143" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747150" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747168" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747176" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747184" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747192" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747200" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747218" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747226" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747234" + }, + { + "label": "Full text available via HathiTrust--no. 4-6 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747242" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747259" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747267" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747275" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747283" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747291" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747309" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747317" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747325" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747333" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747341" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747358" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747366" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747374" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747382" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747390" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747408" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747416" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747424" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747432" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747440" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747457" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747465" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747473" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747481" + }, + { + "label": "Full text available via HathiTrust--Table (1772-1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747499" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747507" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "15 cm." + ] + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 370 + } + ] + } + }, + "item_format": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 370 + } + ] + } + }, + "item_status": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 370 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-8e9af4dc7c7d4806b1f1aeb56d904579.json b/test/fixtures/query-8e9af4dc7c7d4806b1f1aeb56d904579.json new file mode 100644 index 00000000..6660a9c4 --- /dev/null +++ b/test/fixtures/query-8e9af4dc7c7d4806b1f1aeb56d904579.json @@ -0,0 +1,9199 @@ +{ + "took": 71, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.750208, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.750208, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 801, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 669, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "enumerationChronology_sort": " 99-2024-02-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-02-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-42", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-43", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-44", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-45", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-46", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-47", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-16", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-09", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-28", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-21", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-19", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-17", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "enumerationChronology_sort": " 98-2022-02-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79", + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ] + }, + "sort": [ + " 98-2022-02-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "enumerationChronology_sort": " 97-2022-02-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-02-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-80", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-24", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-25", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-27", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-81", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-16", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-6", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-09", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-16", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-02", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-02" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-28", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-21", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-14", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-07", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-11", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-24", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-9", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-17", + "lte": "2021-05-17" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 12 (May. 17, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-17", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-8", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-10", + "lte": "2021-05-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 11 (May. 10, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-10", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-7", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-19", + "lte": "2021-04-19" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 9 (Apr. 19, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-19", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-12", + "lte": "2021-04-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 8 (Apr. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-23", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-05", + "lte": "2021-04-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 7 (Apr. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-29", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-22", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-15", + "lte": "2021-03-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 4 (Mar. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-3", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-01", + "lte": "2021-03-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 2 (Mar. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-01", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-5", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-02-15", + "lte": "2021-02-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 1 (Feb. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-02-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-02-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742420" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269798", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742412" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269794", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742404" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269792", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-a1fefd1a7584915ec80e07668cceca57.json b/test/fixtures/query-a1fefd1a7584915ec80e07668cceca57.json new file mode 100644 index 00000000..c0d1e66f --- /dev/null +++ b/test/fixtures/query-a1fefd1a7584915ec80e07668cceca57.json @@ -0,0 +1,936 @@ +{ + "took": 5, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-a762de2e1ad2797f1316f9450682ec1f.json b/test/fixtures/query-a762de2e1ad2797f1316f9450682ec1f.json new file mode 100644 index 00000000..d1637df4 --- /dev/null +++ b/test/fixtures/query-a762de2e1ad2797f1316f9450682ec1f.json @@ -0,0 +1,10368 @@ +{ + "took": 17, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_score": 15.769638, + "_source": { + "extent": [ + "52 linear ft., 127 boxes" + ], + "nyplSource": [ + "sierra-nypl" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc", + "sc" + ], + "createdYear": [ + 1893 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Sc MG 162" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1893 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc MG 162" + }, + { + "type": "nypl:Bnumber", + "value": "18932917" + }, + { + "type": "nypl:Oclc", + "value": "715462601" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)715462601" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Jones, Thomas Jesse, 1873-1950||Jones, Thomas Jesse, 1873-1950", + "Stokes, Anson Phelps, 1874-1958||Stokes, Anson Phelps, 1874-1958", + "Tobias, Channing H.||Tobias, Channing H.", + "Patterson, Frederick D. (Frederick Douglass), 1901-1988||Patterson, Frederick D. (Frederick Douglass), 1901-1988", + "Dillon, Wilton S., 1923-||Dillon, Wilton S., 1923-", + "Brown, Aaron, 1904-1992||Brown, Aaron, 1904-1992", + "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944||Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944", + "Ross, Emory||Ross, Emory" + ], + "updatedAt": 1782311728777, + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:bnum:18932917", + "urn:oclc:715462601", + "urn:identifier:(OCoLC)715462601" + ], + "creators_displayPacked": [ + "Phelps-Stokes Fund||Phelps-Stokes Fund" + ], + "dates": [ + { + "range": { + "lt": "1971", + "gte": "1893" + }, + "raw": "110427i18931970nyu eng dnpcIaa", + "tag": "i" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Bunche, Ralph J. (Ralph Johnson), 1904-1971.", + "Du Bois, W. E. B. (William Edward Burghardt), 1868-1963.", + "Washington, Booker T., 1856-1915.", + "Johnson, Charles Spurgeon, 1893-1956.", + "Burroughs, Nannie Helen, 1879-", + "Jones, Thomas Jesse, 1873-1950.", + "Patterson, Frederick D. (Frederick Douglass), 1901-1988.", + "Aggrey, James Emman Kwegyir, 1875-1927.", + "Dillard, J. H. (James Hardy), 1856-1940.", + "Dillon, Wilton S., 1923-", + "Johnson, Guy Benton, 1901-1991.", + "Stokes, Anson Phelps, 1874-1958.", + "Tobias, Channing H.", + "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944.", + "Davis, Jackson T., 1882-1947.", + "Brawley, Benjamin, 1882-1939.", + "Ross, Emory.", + "Peabody, George Foster, 1852-1938.", + "Phelps-Stokes Fund.", + "Booker Washington Institute of Liberia.", + "Cooperative College Development Program.", + "United Negro College Fund.", + "South African Institute of Race Relations.", + "Indian Rights Association.", + "Mellon Haitian Nurses Training Program.", + "Southern Regional Council.", + "American Society of African Culture.", + "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", + "Fisk University.", + "Tuskegee Institute.", + "Endowments -- United States.", + "African Americans -- Housing.", + "African Americans -- Charities.", + "African Americans -- Education.", + "African Americans -- Scholarships, fellowships, etc.", + "Student aid -- Africa.", + "Student aid -- United States.", + "Education -- United States -- Societies, etc.", + "Housing -- New York (State) -- New York.", + "Slums -- New York (State) -- New York.", + "Agricultural colleges -- Liberia.", + "Missions -- Educational work.", + "Missions, American -- Africa.", + "Missions -- Africa.", + "Nurses -- Haiti.", + "Indians of North America -- Legal status, laws, etc.", + "Educational exchanges.", + "Education, Cooperative -- United States.", + "International relief -- Africa.", + "African American college students.", + "International organization.", + "Race relations.", + "Art -- Nigeria.", + "Music -- Nigeria.", + "Medical centers -- Nigeria.", + "Indians of North America -- Education.", + "Education -- Africa.", + "Education -- Ghana.", + "Education -- Liberia.", + "African American universities and colleges.", + "South Africa -- Race relations.", + "Liberia -- History.", + "United States -- Race relations.", + "United States -- Foreign relations -- South Africa." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "p", + "collectionIds": [ + "scd" + ], + "physicalDescription": [ + "52 linear ft., 127 boxes" + ], + "note": [ + { + "noteType": "Source", + "label": "Phelps-Stokes Fund Gift 1980, 1981 SCM 80-19, SCM 81-17", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "The Phelps and Stokes families had long been associated with a variety of philanthropic enterprises in the 19th and 20th centuries. The Phelps-Stokes Fund was created in 1911 as a non-profit foundation under the will of Caroline Phelps Stokes. Its original objectives were to improve housing for the poor in New York City, and the \"education of Negroes, both in Africa and the United States, North American Indians, and needy and deserving white students.\" The contacts maintained by the staff and trustees of the Fund through correspondence, travel, and service on numerous boards and commissions often had a greater impact than any direct financial assistance rendered by the Fund. For the period of these records, it served as a headquarters for visiting African educators, students and government officials, and, in addition to sponsoring its own commissions and reports, became a clearinghouse for information on the intellectual and political life of colonial and post-colonial Africa", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Finding aid available.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 128 + ], + "dateEndString": [ + "1970" + ], + "title": [ + "Phelps-Stokes Fund records" + ], + "numItemVolumesParsed": [ + 128 + ], + "createdString": [ + "1893" + ], + "creatorLiteral": [ + "Phelps-Stokes Fund" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jones, Thomas Jesse, 1873-1950", + "Stokes, Anson Phelps, 1874-1958", + "Tobias, Channing H.", + "Patterson, Frederick D. (Frederick Douglass), 1901-1988", + "Dillon, Wilton S., 1923-", + "Brown, Aaron, 1904-1992", + "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944", + "Ross, Emory" + ], + "idOclc": [ + "715462601" + ], + "popularity": 919, + "dateEndYear": [ + 1970 + ], + "summary": [ + "The Phelps-Stokes Fund Records contain administrative records including trustee and committee minutes, correspondence, memoranda, financial records, legal documents, speeches, reports, occasional papers, and printed material, such as pamphlets, brochures, clippings, articles, press releases and programs. Records concern the early work of the Fund in researching and supporting education for Africans and African Americans and improvement in housing conditions, through study commissions, reports, and project grants, as well as its engagement in contemporary debates concerning the philosophy and policies of Booker T. Washington and W. E. B. Du Bois. To a lesser extent, the Fund provided early support for surveys of American Indian schools and administration, such as the 1928 Lewis Meriam study and the 1939 Navajo Indian study. Later endeavors included administering grants for conferences on race relations, exchange and training programs, cooperative programs with other foundations, government aid programs, and a number of cultural projects.", + "The bulk of the collection contains the office files of the four principal leaders of the Fund, Anson Phelps Stokes (1924-1946), Thomas Jesse Jones (1917-1946), Channing Tobias (1946-1953), and Frederick D. Patterson (1953-1969). Of particular interest is material concerning the Fund's relationships with organizations such as Agricultural Missions; Booker T. Washington Agricultural and Industrial Institute of Liberia, founded by the Fund in 1929; British and Foreign Bible Society; Capahosic (VA) Conferences, where black and white leaders gathered for off-the-record conferences; Carnegie Corporation; Committee on Negro Americans in the Defense Industry; Cooperative College Development Program to assist historically black colleges in coordinating development programs and improving management resources; General Education Board; Harmon Foundation; Highlander Folk School; International Missionary Council; Jeanes and Slater Funds; National Association for the Advancement of Colored People, including its disagreements with Fund policies; Rosenwald Fund; South African Institute of Race Relations; Southern Regional Council; YMCA National Council, including South African Work of the Foreign Committee, as well as historically black schools and colleges, especially Bethune-Cookman, Calhoun, Fisk, Hampton, Manassas, Penn School, Talladega, and Tuskegee.", + "Significant correspondents include diplomats, educators, reformers, and foundation officials, such as Ralph J. Bunche; W. E. B. Dubois, particularly regarding the Encyclopedia of the Negro project and opposition to the Fund in the 1930s and 1940s; NAACP director Walter White, who also disagreed with certain Fund activities; educators James E. K. Aggrey, Will Alexander, Aaron Brown, Nannie Burroughs, James H. Dillard, Clark Foreman, Charles S. Johnson, Guy B. Johnson, Thomas Elsa Jones, Charles L. Loram, Robert R. Moton, Harold Odum, Emmett Scott, Booker T. Washington, Carter G. Woodson, especially his controversy with Thomas Jesse Jones in the 1920s, Thomas J. Woofter, and cultural figures and organizations including ethnomusicologist Laura C. Boulton and the Harmon Foundation. Other significant correspondents include foundation officials Jackson Davis, Emory Ross, Wallace Buttrick, Abraham Flexner, Isaac Newton Phelps Stokes, Oswald Garrison Villard, L. Hollingsworth Wood, George Foster Peabody, and William J. Schiefflein; and journalists Lester Walton and Claude A. Barnett;" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:mix", + "label": "Mixed material" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1893" + ], + "titleDisplay": [ + "Phelps-Stokes Fund records, 1893-1970." + ], + "uri": "b18932917", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "p", + "issuance": [ + { + "id": "urn:biblevel:c", + "label": "collection" + } + ], + "supplementaryContent": [ + { + "label": "Finding aid", + "url": "http://archives.nypl.org/scm/20936" + } + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 128, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 1" + ], + "enumerationChronology_sort": " 9999-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133762" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133762", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133762" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i26387850", + "volumeRange": [ + { + "gte": 9999, + "lte": 9999 + } + ] + }, + "sort": [ + " 9999-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 2" + ], + "enumerationChronology_sort": " 9998-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133770" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133770", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133770" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940962", + "volumeRange": [ + { + "gte": 9998, + "lte": 9998 + } + ] + }, + "sort": [ + " 9998-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 3" + ], + "enumerationChronology_sort": " 9997-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133788" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133788", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133788" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940964", + "volumeRange": [ + { + "gte": 9997, + "lte": 9997 + } + ] + }, + "sort": [ + " 9997-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 4" + ], + "enumerationChronology_sort": " 9996-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133796" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133796", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133796" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940965", + "volumeRange": [ + { + "gte": 9996, + "lte": 9996 + } + ] + }, + "sort": [ + " 9996-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 5" + ], + "enumerationChronology_sort": " 9995-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133804" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133804", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133804" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940966", + "volumeRange": [ + { + "gte": 9995, + "lte": 9995 + } + ] + }, + "sort": [ + " 9995-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 6" + ], + "enumerationChronology_sort": " 9994-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133812" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133812", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133812" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940967", + "volumeRange": [ + { + "gte": 9994, + "lte": 9994 + } + ] + }, + "sort": [ + " 9994-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 7" + ], + "enumerationChronology_sort": " 9993-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133820" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133820", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133820" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940968", + "volumeRange": [ + { + "gte": 9993, + "lte": 9993 + } + ] + }, + "sort": [ + " 9993-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 8" + ], + "enumerationChronology_sort": " 9992-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133838" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133838", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133838" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940969", + "volumeRange": [ + { + "gte": 9992, + "lte": 9992 + } + ] + }, + "sort": [ + " 9992-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 9" + ], + "enumerationChronology_sort": " 9991-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133846" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133846", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133846" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940970", + "volumeRange": [ + { + "gte": 9991, + "lte": 9991 + } + ] + }, + "sort": [ + " 9991-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 10" + ], + "enumerationChronology_sort": " 9990-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133853" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133853", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133853" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940971", + "volumeRange": [ + { + "gte": 9990, + "lte": 9990 + } + ] + }, + "sort": [ + " 9990-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 11" + ], + "enumerationChronology_sort": " 9989-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133861" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133861", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133861" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940972", + "volumeRange": [ + { + "gte": 9989, + "lte": 9989 + } + ] + }, + "sort": [ + " 9989-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 12" + ], + "enumerationChronology_sort": " 9988-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133879" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133879", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133879" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940973", + "volumeRange": [ + { + "gte": 9988, + "lte": 9988 + } + ] + }, + "sort": [ + " 9988-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 13" + ], + "enumerationChronology_sort": " 9987-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133887" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133887", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133887" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940974", + "volumeRange": [ + { + "gte": 9987, + "lte": 9987 + } + ] + }, + "sort": [ + " 9987-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 14" + ], + "enumerationChronology_sort": " 9986-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133895" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133895", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133895" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940975", + "volumeRange": [ + { + "gte": 9986, + "lte": 9986 + } + ] + }, + "sort": [ + " 9986-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 15" + ], + "enumerationChronology_sort": " 9985-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133903" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133903", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133903" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940976", + "volumeRange": [ + { + "gte": 9985, + "lte": 9985 + } + ] + }, + "sort": [ + " 9985-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 16" + ], + "enumerationChronology_sort": " 9984-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133911" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133911", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133911" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940977", + "volumeRange": [ + { + "gte": 9984, + "lte": 9984 + } + ] + }, + "sort": [ + " 9984-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 17" + ], + "enumerationChronology_sort": " 9983-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133929" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133929", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133929" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940978", + "volumeRange": [ + { + "gte": 9983, + "lte": 9983 + } + ] + }, + "sort": [ + " 9983-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 18" + ], + "enumerationChronology_sort": " 9982-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133937" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133937", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133937" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940979", + "volumeRange": [ + { + "gte": 9982, + "lte": 9982 + } + ] + }, + "sort": [ + " 9982-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 19" + ], + "enumerationChronology_sort": " 9981-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133945" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133945", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133945" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940980", + "volumeRange": [ + { + "gte": 9981, + "lte": 9981 + } + ] + }, + "sort": [ + " 9981-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 20" + ], + "enumerationChronology_sort": " 9980-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133952" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133952", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133952" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940981", + "volumeRange": [ + { + "gte": 9980, + "lte": 9980 + } + ] + }, + "sort": [ + " 9980-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 21" + ], + "enumerationChronology_sort": " 9979-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133960" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133960", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133960" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940982", + "volumeRange": [ + { + "gte": 9979, + "lte": 9979 + } + ] + }, + "sort": [ + " 9979-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 22" + ], + "enumerationChronology_sort": " 9978-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133978" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133978", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133978" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940983", + "volumeRange": [ + { + "gte": 9978, + "lte": 9978 + } + ] + }, + "sort": [ + " 9978-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 23" + ], + "enumerationChronology_sort": " 9977-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133986" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133986", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133986" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940984", + "volumeRange": [ + { + "gte": 9977, + "lte": 9977 + } + ] + }, + "sort": [ + " 9977-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 24" + ], + "enumerationChronology_sort": " 9976-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076133994" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133994", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076133994" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940985", + "volumeRange": [ + { + "gte": 9976, + "lte": 9976 + } + ] + }, + "sort": [ + " 9976-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 25" + ], + "enumerationChronology_sort": " 9975-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134000" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134000", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134000" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940986", + "volumeRange": [ + { + "gte": 9975, + "lte": 9975 + } + ] + }, + "sort": [ + " 9975-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 26" + ], + "enumerationChronology_sort": " 9974-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134018" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134018", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134018" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940987", + "volumeRange": [ + { + "gte": 9974, + "lte": 9974 + } + ] + }, + "sort": [ + " 9974-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 27" + ], + "enumerationChronology_sort": " 9973-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134026" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134026", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134026" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940988", + "volumeRange": [ + { + "gte": 9973, + "lte": 9973 + } + ] + }, + "sort": [ + " 9973-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 28" + ], + "enumerationChronology_sort": " 9972-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134034" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134034", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134034" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940989", + "volumeRange": [ + { + "gte": 9972, + "lte": 9972 + } + ] + }, + "sort": [ + " 9972-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 29" + ], + "enumerationChronology_sort": " 9971-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134042" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134042", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134042" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940990", + "volumeRange": [ + { + "gte": 9971, + "lte": 9971 + } + ] + }, + "sort": [ + " 9971-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 30" + ], + "enumerationChronology_sort": " 9970-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134059" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134059", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134059" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940991", + "volumeRange": [ + { + "gte": 9970, + "lte": 9970 + } + ] + }, + "sort": [ + " 9970-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 31" + ], + "enumerationChronology_sort": " 9969-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134067" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134067", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134067" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940992", + "volumeRange": [ + { + "gte": 9969, + "lte": 9969 + } + ] + }, + "sort": [ + " 9969-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 32" + ], + "enumerationChronology_sort": " 9968-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134075" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134075", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134075" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940993", + "volumeRange": [ + { + "gte": 9968, + "lte": 9968 + } + ] + }, + "sort": [ + " 9968-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 33" + ], + "enumerationChronology_sort": " 9967-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134083" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134083", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134083" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940994", + "volumeRange": [ + { + "gte": 9967, + "lte": 9967 + } + ] + }, + "sort": [ + " 9967-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 34" + ], + "enumerationChronology_sort": " 9966-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134091" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134091", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134091" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940995", + "volumeRange": [ + { + "gte": 9966, + "lte": 9966 + } + ] + }, + "sort": [ + " 9966-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 35" + ], + "enumerationChronology_sort": " 9965-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134109" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134109", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134109" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940996", + "volumeRange": [ + { + "gte": 9965, + "lte": 9965 + } + ] + }, + "sort": [ + " 9965-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 36" + ], + "enumerationChronology_sort": " 9964-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134117" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134117", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134117" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940997", + "volumeRange": [ + { + "gte": 9964, + "lte": 9964 + } + ] + }, + "sort": [ + " 9964-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 37" + ], + "enumerationChronology_sort": " 9963-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134125" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134125", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134125" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940998", + "volumeRange": [ + { + "gte": 9963, + "lte": 9963 + } + ] + }, + "sort": [ + " 9963-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 38" + ], + "enumerationChronology_sort": " 9962-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134133" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134133", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134133" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940999", + "volumeRange": [ + { + "gte": 9962, + "lte": 9962 + } + ] + }, + "sort": [ + " 9962-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 39" + ], + "enumerationChronology_sort": " 9961-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134141" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134141", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134141" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941000", + "volumeRange": [ + { + "gte": 9961, + "lte": 9961 + } + ] + }, + "sort": [ + " 9961-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 40" + ], + "enumerationChronology_sort": " 9960-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134158" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134158", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134158" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941001", + "volumeRange": [ + { + "gte": 9960, + "lte": 9960 + } + ] + }, + "sort": [ + " 9960-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 41" + ], + "enumerationChronology_sort": " 9959-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134166" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134166", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134166" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941002", + "volumeRange": [ + { + "gte": 9959, + "lte": 9959 + } + ] + }, + "sort": [ + " 9959-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 42" + ], + "enumerationChronology_sort": " 9958-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134174" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134174", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134174" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941003", + "volumeRange": [ + { + "gte": 9958, + "lte": 9958 + } + ] + }, + "sort": [ + " 9958-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 43" + ], + "enumerationChronology_sort": " 9957-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134182" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134182", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134182" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941004", + "volumeRange": [ + { + "gte": 9957, + "lte": 9957 + } + ] + }, + "sort": [ + " 9957-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 44" + ], + "enumerationChronology_sort": " 9956-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134190" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134190", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134190" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941005", + "volumeRange": [ + { + "gte": 9956, + "lte": 9956 + } + ] + }, + "sort": [ + " 9956-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 45" + ], + "enumerationChronology_sort": " 9955-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134208" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134208", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134208" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941006", + "volumeRange": [ + { + "gte": 9955, + "lte": 9955 + } + ] + }, + "sort": [ + " 9955-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 46" + ], + "enumerationChronology_sort": " 9954-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134216" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134216", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134216" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941007", + "volumeRange": [ + { + "gte": 9954, + "lte": 9954 + } + ] + }, + "sort": [ + " 9954-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 47" + ], + "enumerationChronology_sort": " 9953-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134224" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134224", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134224" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941008", + "volumeRange": [ + { + "gte": 9953, + "lte": 9953 + } + ] + }, + "sort": [ + " 9953-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 48" + ], + "enumerationChronology_sort": " 9952-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134232" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134232", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134232" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941009", + "volumeRange": [ + { + "gte": 9952, + "lte": 9952 + } + ] + }, + "sort": [ + " 9952-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 49" + ], + "enumerationChronology_sort": " 9951-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134240" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134240", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134240" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941010", + "volumeRange": [ + { + "gte": 9951, + "lte": 9951 + } + ] + }, + "sort": [ + " 9951-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 50" + ], + "enumerationChronology_sort": " 9950-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134257" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134257", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134257" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941011", + "volumeRange": [ + { + "gte": 9950, + "lte": 9950 + } + ] + }, + "sort": [ + " 9950-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 51" + ], + "enumerationChronology_sort": " 9949-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134265" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134265", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134265" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941012", + "volumeRange": [ + { + "gte": 9949, + "lte": 9949 + } + ] + }, + "sort": [ + " 9949-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 52" + ], + "enumerationChronology_sort": " 9948-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134273" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134273", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134273" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941013", + "volumeRange": [ + { + "gte": 9948, + "lte": 9948 + } + ] + }, + "sort": [ + " 9948-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 53" + ], + "enumerationChronology_sort": " 9947-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134281" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134281", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134281" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941014", + "volumeRange": [ + { + "gte": 9947, + "lte": 9947 + } + ] + }, + "sort": [ + " 9947-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 54" + ], + "enumerationChronology_sort": " 9946-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134299" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134299", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134299" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941015", + "volumeRange": [ + { + "gte": 9946, + "lte": 9946 + } + ] + }, + "sort": [ + " 9946-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 55" + ], + "enumerationChronology_sort": " 9945-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134307" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134307", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134307" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941016", + "volumeRange": [ + { + "gte": 9945, + "lte": 9945 + } + ] + }, + "sort": [ + " 9945-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 56" + ], + "enumerationChronology_sort": " 9944-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134315" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134315", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134315" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941017", + "volumeRange": [ + { + "gte": 9944, + "lte": 9944 + } + ] + }, + "sort": [ + " 9944-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 57" + ], + "enumerationChronology_sort": " 9943-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134323" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134323", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134323" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941018", + "volumeRange": [ + { + "gte": 9943, + "lte": 9943 + } + ] + }, + "sort": [ + " 9943-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 58" + ], + "enumerationChronology_sort": " 9942-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134331" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134331", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134331" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941019", + "volumeRange": [ + { + "gte": 9942, + "lte": 9942 + } + ] + }, + "sort": [ + " 9942-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 59" + ], + "enumerationChronology_sort": " 9941-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134349" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134349", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134349" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941020", + "volumeRange": [ + { + "gte": 9941, + "lte": 9941 + } + ] + }, + "sort": [ + " 9941-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 60" + ], + "enumerationChronology_sort": " 9940-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134356" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134356", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134356" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941021", + "volumeRange": [ + { + "gte": 9940, + "lte": 9940 + } + ] + }, + "sort": [ + " 9940-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 61" + ], + "enumerationChronology_sort": " 9939-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134364" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134364", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134364" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941022", + "volumeRange": [ + { + "gte": 9939, + "lte": 9939 + } + ] + }, + "sort": [ + " 9939-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 62" + ], + "enumerationChronology_sort": " 9938-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134372" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134372", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134372" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941023", + "volumeRange": [ + { + "gte": 9938, + "lte": 9938 + } + ] + }, + "sort": [ + " 9938-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 63" + ], + "enumerationChronology_sort": " 9937-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134380" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134380", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134380" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941024", + "volumeRange": [ + { + "gte": 9937, + "lte": 9937 + } + ] + }, + "sort": [ + " 9937-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 64" + ], + "enumerationChronology_sort": " 9936-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134398" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134398", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134398" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941025", + "volumeRange": [ + { + "gte": 9936, + "lte": 9936 + } + ] + }, + "sort": [ + " 9936-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 65" + ], + "enumerationChronology_sort": " 9935-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134406" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134406", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134406" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941026", + "volumeRange": [ + { + "gte": 9935, + "lte": 9935 + } + ] + }, + "sort": [ + " 9935-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 66" + ], + "enumerationChronology_sort": " 9934-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134414" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134414", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134414" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941027", + "volumeRange": [ + { + "gte": 9934, + "lte": 9934 + } + ] + }, + "sort": [ + " 9934-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 67" + ], + "enumerationChronology_sort": " 9933-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134422" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134422", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134422" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941028", + "volumeRange": [ + { + "gte": 9933, + "lte": 9933 + } + ] + }, + "sort": [ + " 9933-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 68" + ], + "enumerationChronology_sort": " 9932-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134430" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134430", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134430" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941029", + "volumeRange": [ + { + "gte": 9932, + "lte": 9932 + } + ] + }, + "sort": [ + " 9932-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 69" + ], + "enumerationChronology_sort": " 9931-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134448" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134448", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134448" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941030", + "volumeRange": [ + { + "gte": 9931, + "lte": 9931 + } + ] + }, + "sort": [ + " 9931-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 70" + ], + "enumerationChronology_sort": " 9930-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134455" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134455", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134455" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941031", + "volumeRange": [ + { + "gte": 9930, + "lte": 9930 + } + ] + }, + "sort": [ + " 9930-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 71" + ], + "enumerationChronology_sort": " 9929-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134463" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134463", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134463" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941032", + "volumeRange": [ + { + "gte": 9929, + "lte": 9929 + } + ] + }, + "sort": [ + " 9929-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 72" + ], + "enumerationChronology_sort": " 9928-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134471" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134471", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134471" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941033", + "volumeRange": [ + { + "gte": 9928, + "lte": 9928 + } + ] + }, + "sort": [ + " 9928-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 73" + ], + "enumerationChronology_sort": " 9927-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134489" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134489", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134489" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941034", + "volumeRange": [ + { + "gte": 9927, + "lte": 9927 + } + ] + }, + "sort": [ + " 9927-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 74" + ], + "enumerationChronology_sort": " 9926-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134497" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134497", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134497" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941035", + "volumeRange": [ + { + "gte": 9926, + "lte": 9926 + } + ] + }, + "sort": [ + " 9926-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 75" + ], + "enumerationChronology_sort": " 9925-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134505" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134505", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134505" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941036", + "volumeRange": [ + { + "gte": 9925, + "lte": 9925 + } + ] + }, + "sort": [ + " 9925-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 76" + ], + "enumerationChronology_sort": " 9924-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134513" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134513", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134513" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941037", + "volumeRange": [ + { + "gte": 9924, + "lte": 9924 + } + ] + }, + "sort": [ + " 9924-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 77" + ], + "enumerationChronology_sort": " 9923-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134521" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134521", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134521" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941038", + "volumeRange": [ + { + "gte": 9923, + "lte": 9923 + } + ] + }, + "sort": [ + " 9923-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 78" + ], + "enumerationChronology_sort": " 9922-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134539" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134539", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134539" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941039", + "volumeRange": [ + { + "gte": 9922, + "lte": 9922 + } + ] + }, + "sort": [ + " 9922-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 79" + ], + "enumerationChronology_sort": " 9921-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134547" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134547", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134547" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941040", + "volumeRange": [ + { + "gte": 9921, + "lte": 9921 + } + ] + }, + "sort": [ + " 9921-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 80" + ], + "enumerationChronology_sort": " 9920-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134554" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134554", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134554" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941041", + "volumeRange": [ + { + "gte": 9920, + "lte": 9920 + } + ] + }, + "sort": [ + " 9920-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 81" + ], + "enumerationChronology_sort": " 9919-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134562" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134562", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134562" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941042", + "volumeRange": [ + { + "gte": 9919, + "lte": 9919 + } + ] + }, + "sort": [ + " 9919-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 82" + ], + "enumerationChronology_sort": " 9918-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134570" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134570", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134570" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941043", + "volumeRange": [ + { + "gte": 9918, + "lte": 9918 + } + ] + }, + "sort": [ + " 9918-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 83" + ], + "enumerationChronology_sort": " 9917-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134588" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134588", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134588" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941044", + "volumeRange": [ + { + "gte": 9917, + "lte": 9917 + } + ] + }, + "sort": [ + " 9917-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 84" + ], + "enumerationChronology_sort": " 9916-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134596" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134596", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134596" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941045", + "volumeRange": [ + { + "gte": 9916, + "lte": 9916 + } + ] + }, + "sort": [ + " 9916-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 85" + ], + "enumerationChronology_sort": " 9915-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134604" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134604", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134604" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941046", + "volumeRange": [ + { + "gte": 9915, + "lte": 9915 + } + ] + }, + "sort": [ + " 9915-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 86" + ], + "enumerationChronology_sort": " 9914-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134612" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134612", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134612" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941047", + "volumeRange": [ + { + "gte": 9914, + "lte": 9914 + } + ] + }, + "sort": [ + " 9914-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 87" + ], + "enumerationChronology_sort": " 9913-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134620" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134620", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134620" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941048", + "volumeRange": [ + { + "gte": 9913, + "lte": 9913 + } + ] + }, + "sort": [ + " 9913-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 88" + ], + "enumerationChronology_sort": " 9912-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134638" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134638", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134638" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941049", + "volumeRange": [ + { + "gte": 9912, + "lte": 9912 + } + ] + }, + "sort": [ + " 9912-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 89" + ], + "enumerationChronology_sort": " 9911-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134646" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134646", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134646" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941050", + "volumeRange": [ + { + "gte": 9911, + "lte": 9911 + } + ] + }, + "sort": [ + " 9911-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 90" + ], + "enumerationChronology_sort": " 9910-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134653" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134653", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134653" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941051", + "volumeRange": [ + { + "gte": 9910, + "lte": 9910 + } + ] + }, + "sort": [ + " 9910-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 91" + ], + "enumerationChronology_sort": " 9909-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134661" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134661", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134661" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941052", + "volumeRange": [ + { + "gte": 9909, + "lte": 9909 + } + ] + }, + "sort": [ + " 9909-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 92" + ], + "enumerationChronology_sort": " 9908-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134679" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134679", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134679" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941053", + "volumeRange": [ + { + "gte": 9908, + "lte": 9908 + } + ] + }, + "sort": [ + " 9908-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 93" + ], + "enumerationChronology_sort": " 9907-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134687" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134687", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134687" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941054", + "volumeRange": [ + { + "gte": 9907, + "lte": 9907 + } + ] + }, + "sort": [ + " 9907-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 94" + ], + "enumerationChronology_sort": " 9906-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134695" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134695", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134695" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941055", + "volumeRange": [ + { + "gte": 9906, + "lte": 9906 + } + ] + }, + "sort": [ + " 9906-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "dueDate": [ + "2024-07-02" + ], + "enumerationChronology": [ + "Box 95" + ], + "enumerationChronology_sort": " 9905-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134703" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134703", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134703" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941056", + "volumeRange": [ + { + "gte": 9905, + "lte": 9905 + } + ] + }, + "sort": [ + " 9905-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 96" + ], + "enumerationChronology_sort": " 9904-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134711" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134711", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134711" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941057", + "volumeRange": [ + { + "gte": 9904, + "lte": 9904 + } + ] + }, + "sort": [ + " 9904-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 97" + ], + "enumerationChronology_sort": " 9903-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134729" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134729", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134729" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941058", + "volumeRange": [ + { + "gte": 9903, + "lte": 9903 + } + ] + }, + "sort": [ + " 9903-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 98" + ], + "enumerationChronology_sort": " 9902-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134737" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134737", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134737" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941059", + "volumeRange": [ + { + "gte": 9902, + "lte": 9902 + } + ] + }, + "sort": [ + " 9902-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 99" + ], + "enumerationChronology_sort": " 9901-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134745" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134745", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134745" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941060", + "volumeRange": [ + { + "gte": 9901, + "lte": 9901 + } + ] + }, + "sort": [ + " 9901-" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b18932917", + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "collectionId": [ + "scd" + ], + "enumerationChronology": [ + "Box 100" + ], + "enumerationChronology_sort": " 9900-", + "formatLiteral": [ + "Archival mix" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:barcode:33433076134752" + ], + "identifierV2": [ + { + "value": "Sc MG 162", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134752", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433076134752" + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162" + ], + "shelfMark_sort": "aSc MG 000162", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941061", + "volumeRange": [ + { + "gte": 9900, + "lte": 9900 + } + ] + }, + "sort": [ + " 9900-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 127 + }, + { + "key": "sc", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Archival mix", + "doc_count": 128 + } + ] + } + }, + "item_status": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 118 + }, + { + "key": "status:co||Loaned", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-b6fc3efe89e3b8c1dc39cd91db87044a.json b/test/fixtures/query-b6fc3efe89e3b8c1dc39cd91db87044a.json new file mode 100644 index 00000000..6ebc466a --- /dev/null +++ b/test/fixtures/query-b6fc3efe89e3b8c1dc39cd91db87044a.json @@ -0,0 +1,936 @@ +{ + "took": 16, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.750208, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.750208, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-c5d99313eb5824e0d595ad7aa441c72d.json b/test/fixtures/query-c5d99313eb5824e0d595ad7aa441c72d.json new file mode 100644 index 00000000..e452c057 --- /dev/null +++ b/test/fixtures/query-c5d99313eb5824e0d595ad7aa441c72d.json @@ -0,0 +1,10765 @@ +{ + "took": 31, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.769638, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 755, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "enumerationChronology_sort": " 100-2024-03-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-03-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "enumerationChronology_sort": " 100-2024-02-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + "sort": [ + " 100-2024-02-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "enumerationChronology_sort": " 99-2024-02-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-02-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-42", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "enumerationChronology_sort": " 99-2024-01-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-43", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2024-01-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-44", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-45", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-46", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-12-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-47", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-12-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "enumerationChronology_sort": " 99-2023-11-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-11-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-16", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "enumerationChronology_sort": " 99-2023-10-09", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-10-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "enumerationChronology_sort": " 99-2023-09-04", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-09-04" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-28", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-21", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "enumerationChronology_sort": " 99-2023-08-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-08-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-07-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-07-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-26", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-19", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-12", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "enumerationChronology_sort": " 99-2023-06-05", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-06-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-22", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "enumerationChronology_sort": " 99-2023-05-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-05-08" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-17", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "enumerationChronology_sort": " 99-2023-04-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-04-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-03-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-03-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "enumerationChronology_sort": " 99-2023-02-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + "sort": [ + " 99-2023-02-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "enumerationChronology_sort": " 98-2022-02-14", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79", + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ] + }, + "sort": [ + " 98-2022-02-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "enumerationChronology_sort": " 97-2022-02-07", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-02-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-31", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-31" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-24", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-10", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "enumerationChronology_sort": " 97-2022-01-03", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2022-01-03" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742420" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269798", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742412" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269794", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742404" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269792", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": " 96-2020", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433136742438" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40269804", + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + "sort": [ + " 96-2020" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033297" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232353", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033339" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232406", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033321" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232403", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033313" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232401", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": " 95-2019", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433130033305" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40232398", + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + "sort": [ + " 95-2019" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201310", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128201310" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37539307", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200973" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200973", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128200973" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37529513", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200965" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200965", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128200965" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37529511", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "enumerationChronology_sort": " 94-2018", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201161" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) copy 0", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201161", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433128201161" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37530724", + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + "sort": [ + " 94-2018" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911097", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911097" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790462", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911105", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911105" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790460", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911253" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911253", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911253" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790458", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "enumerationChronology_sort": " 93-2017", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911246" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911246", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433121911246" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36790455", + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + "sort": [ + " 93-2017" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892341" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892341", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892341" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118780", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892333" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892333", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892333" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118763", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872103" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872103", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872103" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060543", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855561" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855561", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119855561" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36058799", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": " 92-2016", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872095" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060542", + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + "sort": [ + " 92-2016" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855579" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855579", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119855579" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36058800", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892317" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892317", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119892317" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36118736", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": " 91-2015", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433119872087" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i36060538", + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + "sort": [ + " 91-2015" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102084" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327829", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102134" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102134", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102134" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327846", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "enumerationChronology_sort": " 90-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114101987" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114101987", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114101987" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34325260", + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + "sort": [ + " 90-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 126 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "enumerationChronology_sort": " 89-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102043" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102043", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433114102043" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i34327008", + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ] + }, + "sort": [ + " 89-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 127 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "enumerationChronology_sort": " 89-2014", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762741" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762741", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762741" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414227", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2014" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 128 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762691" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762691", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762691" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414254", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 129 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762709" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762709", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762709" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414253", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 130 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762717" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762717", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762717" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414252", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 131 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762725" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762725", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762725" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414248", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 132 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "enumerationChronology_sort": " 89-2013", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762733" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762733", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433110762733" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i32414245", + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + "sort": [ + " 89-2013" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 133 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528385", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528385" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482935", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 134 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528377", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528377" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482930", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 135 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528393", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528393" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482936", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 136 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "enumerationChronology_sort": " 88-2012", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528401", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433108528401" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31482938", + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + "sort": [ + " 88-2012" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 137 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099611091" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878981", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 138 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099610945" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28879000", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 139 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": " 87-2011", + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433099610952" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28878991", + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + "sort": [ + " 87-2011" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 801, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-d9286b961f55cae4d8b1b40cbf2595d6.json b/test/fixtures/query-d9286b961f55cae4d8b1b40cbf2595d6.json new file mode 100644 index 00000000..d09fab25 --- /dev/null +++ b/test/fixtures/query-d9286b961f55cae4d8b1b40cbf2595d6.json @@ -0,0 +1,581 @@ +{ + "took": 12, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022734", + "_score": 15.769638, + "_source": { + "extent": [ + "xiv, 381 p., [16] leaves of plates : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "editionStatement": [ + "1st ed." + ], + "publisherLiteral": [ + "Knopf : distributed by Random House" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "sc", + "ma" + ], + "createdYear": [ + 1981 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "IEC 81-1139", + "Sc *700-L (Lewis, D. When Harlem was in vogue)", + "Sc E 96-780" + ], + "idLccn": [ + "80002704" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1981 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IEC 81-1139" + }, + { + "type": "bf:ShelfMark", + "value": "Sc *700-L (Lewis, D. When Harlem was in vogue)" + }, + { + "type": "bf:ShelfMark", + "value": "Sc E 96-780" + }, + { + "type": "nypl:Bnumber", + "value": "10022734" + }, + { + "type": "bf:Isbn", + "value": "0394495721" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25743597-B" + }, + { + "type": "bf:Lccn", + "value": "80002704" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0022812" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782138169191, + "publicationStatement": [ + "New York : Knopf : distributed by Random House, 1981." + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:shelfmark:Sc *700-L (Lewis, D. When Harlem was in vogue)", + "urn:shelfmark:Sc E 96-780", + "urn:bnum:10022734", + "urn:isbn:0394495721", + "urn:oclc:NYPG25743597-B", + "urn:lccn:80002704", + "urn:identifier:(WaOLN)nyp0022812" + ], + "creators_displayPacked": [ + "Lewis, David Levering, 1936-||Lewis, David Levering, 1936-" + ], + "dates": [ + { + "range": { + "lt": "1982", + "gte": "1981" + }, + "raw": "810724s1981 nyuaf b 001 0 eng cam i ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "African American arts -- New York (State) -- New York.", + "Arts, Modern -- 20th century -- New York (State) -- New York.", + "Harlem Renaissance.", + "Harlem (New York, N.Y.)", + "Black author." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "NX511.N4 L48 1981" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "scf", + "mag" + ], + "physicalDescription": [ + "xiv, 381 p., [16] leaves of plates : ill. ; 24 cm." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 3 + ], + "title": [ + "When Harlem was in vogue" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1981" + ], + "creatorLiteral": [ + "Lewis, David Levering, 1936-" + ], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "NYPG25743597-B" + ], + "popularity": 179, + "idIsbn": [ + "0394495721" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "titleDisplay": [ + "When Harlem was in vogue / David Levering Lewis." + ], + "uri": "b10022734", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0394495721" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 3, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022734", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "collectionId": [ + "scf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "identifier": [ + "urn:shelfmark:Sc E 96-780", + "urn:barcode:33433034124614" + ], + "identifierV2": [ + { + "value": "Sc E 96-780", + "type": "bf:ShelfMark" + }, + { + "value": "33433034124614", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433034124614" + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc E 96-780" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc E 96-780" + ], + "shelfMark_sort": "aSc E 96-000780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010904" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022734", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:-", + "label": "No restrictions" + } + ], + "accessMessage_packed": [ + "accessMessage:-||No restrictions" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "collectionId": [ + "scf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } + ], + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "identifier": [ + "urn:shelfmark:Sc *700-L (Lewis, D. When Harlem was in vogue)", + "urn:barcode:33433015873411" + ], + "identifierV2": [ + { + "value": "Sc *700-L (Lewis, D. When Harlem was in vogue)", + "type": "bf:ShelfMark" + }, + { + "value": "33433015873411", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433015873411" + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc *700-L (Lewis, D. When Harlem was in vogue)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc *700-L (Lewis, D. When Harlem was in vogue)" + ], + "shelfMark_sort": "aSc *700-L (Lewis, D. When Harlem was in vogue)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010903" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10022734", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "collectionId": [ + "mag" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mag82", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag82||Schwarzman Building - Milstein Division Room 121" + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:barcode:33433035187214" + ], + "identifierV2": [ + { + "value": "IEC 81-1139", + "type": "bf:ShelfMark" + }, + { + "value": "33433035187214", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433035187214" + ], + "owner": [ + { + "id": "orgs:1105", + "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" + } + ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], + "physicalLocation": [ + "IEC 81-1139" + ], + "requestable": [ + true + ], + "shelfMark": [ + "IEC 81-1139" + ], + "shelfMark_sort": "aIEC 81-001139", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010902" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "sc", + "doc_count": 2 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 3 + } + ] + } + }, + "item_status": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 3 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-dcafc13a204cfd2aaa0d1b872f48c956.json b/test/fixtures/query-dcafc13a204cfd2aaa0d1b872f48c956.json new file mode 100644 index 00000000..53fc87e9 --- /dev/null +++ b/test/fixtures/query-dcafc13a204cfd2aaa0d1b872f48c956.json @@ -0,0 +1,4423 @@ +{ + "took": 28, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.769638, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 801, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-08", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": " 100-2024-04-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 37, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-12-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-12-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-29", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-15", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-11-01", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-11-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-25", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-25" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-18", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-18" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "enumerationChronology_sort": " 97-2021-10-11", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-10-11" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-27", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-80", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-27" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-20", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-24", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-20" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-13", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-25", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-13" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "enumerationChronology_sort": " 97-2021-09-06", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-09-06" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-30", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-27", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-30" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-23", + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-81", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-23" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-16", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-6", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-16" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-09", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-16", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-09" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "enumerationChronology_sort": " 97-2021-08-02", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-08-02" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-07-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-07-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-28", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-28" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-21", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-21" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-14", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-14" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "enumerationChronology_sort": " 97-2021-06-07", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-11", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-06-07" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-24", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-9", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-24" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-17", + "lte": "2021-05-17" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 12 (May. 17, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-17", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-8", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-17" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-10", + "lte": "2021-05-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 11 (May. 10, 2021)" + ], + "enumerationChronology_sort": " 97-2021-05-10", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-7", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-05-10" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-26", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-26" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-19", + "lte": "2021-04-19" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 9 (Apr. 19, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-19", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-19" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-12", + "lte": "2021-04-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 8 (Apr. 12, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-12", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-23", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-12" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-05", + "lte": "2021-04-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 7 (Apr. 5, 2021)" + ], + "enumerationChronology_sort": " 97-2021-04-05", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-04-05" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-29", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-29" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-22", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-22" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-15", + "lte": "2021-03-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 4 (Mar. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-3", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-15" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-01", + "lte": "2021-03-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 2 (Mar. 1, 2021)" + ], + "enumerationChronology_sort": " 97-2021-03-01", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-5", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-03-01" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-02-15", + "lte": "2021-02-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 1 (Feb. 15, 2021)" + ], + "enumerationChronology_sort": " 97-2021-02-15", + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + "sort": [ + " 97-2021-02-15" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-ecb0375b3c7a1064bec48e049472242e.json b/test/fixtures/query-ecb0375b3c7a1064bec48e049472242e.json new file mode 100644 index 00000000..e6b6bc1b --- /dev/null +++ b/test/fixtures/query-ecb0375b3c7a1064bec48e049472242e.json @@ -0,0 +1,66398 @@ +{ + "took": 42, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10833141", + "_score": 15.769638, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + 1925 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "parallelCreators_displayPacked": [], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Ross, Harold Wallace, 1892-1951||Ross, Harold Wallace, 1892-1951, editor", + "Shawn, William||Shawn, William, editor", + "Brown, Tina||Brown, Tina, editor", + "Remnick, David||Remnick, David, editor", + "White, Katharine Sergeant Angell||White, Katharine Sergeant Angell, contributor, fiction editor", + "White, E. B. (Elwyn Brooks), 1899-1985||White, E. B. (Elwyn Brooks), 1899-1985, contributor", + "Irvin, Rea, 1881-1972||Irvin, Rea, 1881-1972, art editor", + "Angell, Roger||Angell, Roger, contributor, fiction editor" + ], + "updatedAt": 1782151635077, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305", + "urn:identifier:(OCoLC)1760231" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "gte": "1925", + "lte": "9999" + }, + "raw": "751101c19259999nyuwn p r 0 a0eng cas a ", + "tag": "c" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "New York (N.Y.) -- Intellectual life -- Directories.", + "Literature -- Collections -- Periodicals." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "AP2 .N6763" + ], + "parallelSubjectLiteral": [], + "formatId": "3", + "collectionIds": [ + "mal" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "physicalDescription": [ + "volumes : illustrations ; 28-31 cm" + ], + "items": [ + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-04-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-6", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-04-08", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-7", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-04-01", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-8", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-03-25", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-9", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-03-18", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-10", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-03-11", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-28", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-02-26", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-11", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 100-2024-02-12", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-30", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2024-02-05", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-39", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2024-01-29", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-40", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2024-01-22", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-41", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2024-01-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-42", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2024-01-01", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-43", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-12-25", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-44", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-12-18", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-45", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-12-11", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-46", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-12-04", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-47", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-11-27", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-48", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-11-13", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-49", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-11-06", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-52", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-10-30", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-53", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-10-23", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-50", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-10-16", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-60", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-10-09", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-61", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-09-25", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-31", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-09-18", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-54", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-09-11", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-32", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-09-04", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-33", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-08-28", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-63", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-08-21", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-58", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-08-14", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-59", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-08-07", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-64", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-07-31", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-55", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-07-24", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-56", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-07-10", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-57", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-07-03", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-65", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-06-26", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-66", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-06-19", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-34", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-06-12", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-67", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-06-05", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-68", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-05-22", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-70", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-05-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-71", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-05-08", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-72", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-04-24", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-73", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-04-17", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-35", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-04-10", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-36", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-04-03", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-37", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-03-27", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-38", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-03-20", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-74", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-03-13", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-75", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-02-27", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-77", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 99-2023-02-13", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-78", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 98-2022-02-14", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-79", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2022-02-07", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-82", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2022-01-31", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-83", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2022-01-24", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-84", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2022-01-10", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-85", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2022-01-03", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-86", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-12-27", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-12", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-12-20", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-87", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-12-13", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-13", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-12-06", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-14", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-11-29", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-15", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-11-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-17", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-11-08", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-18", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-11-01", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-19", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-10-25", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-20", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-10-18", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-21", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-10-11", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-22", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-09-27", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-80", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-09-20", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-24", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-09-13", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-25", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-09-06", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-26", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-08-30", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-27", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-08-23", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-81", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-08-16", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-6", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-08-09", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-16", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-08-02", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-17", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-07-26", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-18", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-07-12", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-21", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-07-05", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-15", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-06-28", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-14", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-06-21", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-13", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-06-14", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-12", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-06-07", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-11", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-05-24", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-9", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-17", + "lte": "2021-05-17" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-05-17", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-8", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 12 (May. 17, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-10", + "lte": "2021-05-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-05-10", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-7", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 11 (May. 10, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-04-26", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-0", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-19", + "lte": "2021-04-19" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-04-19", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-19", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 9 (Apr. 19, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-12", + "lte": "2021-04-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-04-12", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-23", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 8 (Apr. 12, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-05", + "lte": "2021-04-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-04-05", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-20", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 7 (Apr. 5, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-03-29", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-1", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-03-22", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-2", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-15", + "lte": "2021-03-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-03-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-3", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 4 (Mar. 15, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-01", + "lte": "2021-03-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-03-01", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-5", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 2 (Mar. 1, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-02-15", + "lte": "2021-02-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 97-2021-02-15", + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-22", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 1 (Feb. 15, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742420" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 96-2020", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40269798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433136742420" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "idBarcode": [ + "33433136742420" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742412" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 96-2020", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40269794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433136742412" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "idBarcode": [ + "33433136742412" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742404" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 96-2020", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40269792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433136742404" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "idBarcode": [ + "33433136742404" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433136742438" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 96-2020", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40269804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433136742438" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "idBarcode": [ + "33433136742438" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033297" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 95-2019", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40232353", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433130033297" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "idBarcode": [ + "33433130033297" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033339" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 95-2019", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40232406", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433130033339" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "idBarcode": [ + "33433130033339" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033321" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 95-2019", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40232403", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433130033321" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "idBarcode": [ + "33433130033321" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033313" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 95-2019", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40232401", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433130033313" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "idBarcode": [ + "33433130033313" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433130033305" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 95-2019", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40232398", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433130033305" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "idBarcode": [ + "33433130033305" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201310" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 94-2018", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "uri": "i37539307", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 0" + }, + { + "type": "bf:Barcode", + "value": "33433128201310" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "idBarcode": [ + "33433128201310" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 94-2018", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "uri": "i37529513", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 0" + }, + { + "type": "bf:Barcode", + "value": "33433128200973" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "idBarcode": [ + "33433128200973" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128200965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 94-2018", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "uri": "i37529511", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 0" + }, + { + "type": "bf:Barcode", + "value": "33433128200965" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "idBarcode": [ + "33433128200965" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201161" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 94-2018", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "uri": "i37530724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 0" + }, + { + "type": "bf:Barcode", + "value": "33433128201161" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "idBarcode": [ + "33433128201161" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 0", + "urn:barcode:33433128201302" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000000", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 94-2018", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 0" + ], + "uri": "i37539308", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 0" + }, + { + "type": "bf:Barcode", + "value": "33433128201302" + } + ], + "enumerationChronology": [ + "v. 94 (July-Sept. 2018)" + ], + "idBarcode": [ + "33433128201302" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 93-2017", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36790462", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433121911097" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "idBarcode": [ + "33433121911097" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 93-2017", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36790460", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433121911105" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "idBarcode": [ + "33433121911105" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911253" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 93-2017", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36790458", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433121911253" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "idBarcode": [ + "33433121911253" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433121911246" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 93-2017", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36790455", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433121911246" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "idBarcode": [ + "33433121911246" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892341" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 92-2016", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36118780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119892341" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "idBarcode": [ + "33433119892341" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892333" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 92-2016", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36118763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119892333" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "idBarcode": [ + "33433119892333" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872103" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 92-2016", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36060543", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119872103" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "idBarcode": [ + "33433119872103" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855561" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 92-2016", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36058799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119855561" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "idBarcode": [ + "33433119855561" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872095" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 92-2016", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36060542", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119872095" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "idBarcode": [ + "33433119872095" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119855579" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 91-2015", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36058800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119855579" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "idBarcode": [ + "33433119855579" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119892317" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 91-2015", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36118736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119892317" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "idBarcode": [ + "33433119892317" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433119872087" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 91-2015", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i36060538", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433119872087" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "idBarcode": [ + "33433119872087" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102084" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 90-2014", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i34327829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433114102084" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "idBarcode": [ + "33433114102084" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102134" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 90-2014", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i34327846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433114102134" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "idBarcode": [ + "33433114102134" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114101987" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 90-2014", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i34325260", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433114101987" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "idBarcode": [ + "33433114101987" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433114102043" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2014", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i34327008", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433114102043" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "idBarcode": [ + "33433114102043" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762741" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2014", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414227", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762741" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "idBarcode": [ + "33433110762741" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762691" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2013", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414254", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762691" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "idBarcode": [ + "33433110762691" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762709" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2013", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414253", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762709" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "idBarcode": [ + "33433110762709" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762717" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2013", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414252", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762717" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "idBarcode": [ + "33433110762717" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762725" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2013", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414248", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762725" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "idBarcode": [ + "33433110762725" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433110762733" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 89-2013", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i32414245", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433110762733" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "idBarcode": [ + "33433110762733" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528385" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 88-2012", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i31482935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433108528385" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "idBarcode": [ + "33433108528385" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528377" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 88-2012", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i31482930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433108528377" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "idBarcode": [ + "33433108528377" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528393" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 88-2012", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i31482936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433108528393" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "idBarcode": [ + "33433108528393" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433108528401" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 88-2012", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i31482938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433108528401" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "idBarcode": [ + "33433108528401" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611091" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "idBarcode": [ + "33433099611091" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610945" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28879000", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099610945" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "idBarcode": [ + "33433099610945" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099610952" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878991", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099610952" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "idBarcode": [ + "33433099610952" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611109" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "idBarcode": [ + "33433099611109" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611075" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611075" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "idBarcode": [ + "33433099611075" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 87-2011", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611083" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "idBarcode": [ + "33433099611083" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099612925" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 86-2010", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28974701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099612925" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "idBarcode": [ + "33433099612925" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 86-2010", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611141" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "idBarcode": [ + "33433099611141" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 86-2010", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611133" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "idBarcode": [ + "33433099611133" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 86-2010", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611117" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "idBarcode": [ + "33433099611117" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 86-2010", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611125" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "idBarcode": [ + "33433099611125" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 85-2009", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611166" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "idBarcode": [ + "33433099611166" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 85-2009", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611174" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "idBarcode": [ + "33433099611174" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 85-2009", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611182" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "idBarcode": [ + "33433099611182" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 85-2009", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611190" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "idBarcode": [ + "33433099611190" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064214" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589205", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064214" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "idBarcode": [ + "33433085064214" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063950" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589272", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063950" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "idBarcode": [ + "33433085063950" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063976" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589242", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063976" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "idBarcode": [ + "33433085063976" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063992" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589223", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063992" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "idBarcode": [ + "33433085063992" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064172" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589287", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064172" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "idBarcode": [ + "33433085064172" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064008" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 84-2008", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589214", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "idBarcode": [ + "33433085064008" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063943" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589274", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063943" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "idBarcode": [ + "33433085063943" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063984" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589229", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063984" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "idBarcode": [ + "33433085063984" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064180" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589278", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064180" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "idBarcode": [ + "33433085064180" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064198" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589269", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064198" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "idBarcode": [ + "33433085064198" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085064206" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589263", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085064206" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "idBarcode": [ + "33433085064206" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085063968" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 83-2007", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i25589251", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085063968" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "idBarcode": [ + "33433085063968" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240567" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 82-2006", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474921", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240567" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "idBarcode": [ + "33433084240567" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240559" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 82-2006", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240559" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "idBarcode": [ + "33433084240559" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240542" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 82-2006", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474919", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240542" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "idBarcode": [ + "33433084240542" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240583" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 82-2006", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474923", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240583" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "idBarcode": [ + "33433084240583" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240575" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 82-2006", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474922", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240575" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "idBarcode": [ + "33433084240575" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240534" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 81-2005", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474918", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240534" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "idBarcode": [ + "33433084240534" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240526" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 81-2005", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474917", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240526" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "idBarcode": [ + "33433084240526" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240500" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 81-2005", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474915", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240500" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "idBarcode": [ + "33433084240500" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240518" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 81-2005", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474916", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240518" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "idBarcode": [ + "33433084240518" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240492" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 81-2005", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474914", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240492" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "idBarcode": [ + "33433084240492" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240468" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 80-2004", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240468" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "idBarcode": [ + "33433084240468" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240484" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 80-2004", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474913", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240484" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "idBarcode": [ + "33433084240484" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080028222" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 80-2004", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474447", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080028222" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "idBarcode": [ + "33433080028222" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240476" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 80-2004", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474912", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240476" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "idBarcode": [ + "33433084240476" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078508037" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 80-2004", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474399", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078508037" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "idBarcode": [ + "33433078508037" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240419" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240419" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "idBarcode": [ + "33433084240419" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240450" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474910", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240450" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "idBarcode": [ + "33433084240450" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240443" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474909", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240443" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "idBarcode": [ + "33433084240443" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240435" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240435" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "idBarcode": [ + "33433084240435" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240427" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240427" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "idBarcode": [ + "33433084240427" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240401" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 79-2003", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240401" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "idBarcode": [ + "33433084240401" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240393" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240393" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "idBarcode": [ + "33433084240393" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240377" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240377" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "idBarcode": [ + "33433084240377" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240369" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240369" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "idBarcode": [ + "33433084240369" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240351" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240351" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "idBarcode": [ + "33433084240351" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240344" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240344" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "idBarcode": [ + "33433084240344" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240385" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 78-2002", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240385" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "idBarcode": [ + "33433084240385" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079991612" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 77-2001", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474446", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079991612" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "idBarcode": [ + "33433079991612" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240336" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 77-2001", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240336" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "idBarcode": [ + "33433084240336" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240328" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 77-2001", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240328" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "idBarcode": [ + "33433084240328" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240302" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 77-2001", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240302" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "idBarcode": [ + "33433084240302" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240310" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 77-2001", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240310" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "idBarcode": [ + "33433084240310" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240286" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 76-2000", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240286" + } + ], + "enumerationChronology": [ + "v. 76 (Sept.-Oct. 2000)" + ], + "idBarcode": [ + "33433084240286" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078639105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 76-2000", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474402", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078639105" + } + ], + "enumerationChronology": [ + "v. 76 (July-Aug. 2000)" + ], + "idBarcode": [ + "33433078639105" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240278" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 76-2000", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i40028166", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240278" + } + ], + "enumerationChronology": [ + "v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "idBarcode": [ + "33433084240278" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080426707" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 76-2000", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474434", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080426707" + } + ], + "enumerationChronology": [ + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "idBarcode": [ + "33433080426707" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240294" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 76-2000", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240294" + } + ], + "enumerationChronology": [ + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "idBarcode": [ + "33433084240294" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240211" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240211" + } + ], + "enumerationChronology": [ + "v. 75(Feb.22-May 3, 1999)" + ], + "idBarcode": [ + "33433084240211" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240260" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240260" + } + ], + "enumerationChronology": [ + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "idBarcode": [ + "33433084240260" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240252" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240252" + } + ], + "enumerationChronology": [ + "v. 75 (Nov. 1999)" + ], + "idBarcode": [ + "33433084240252" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240237" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240237" + } + ], + "enumerationChronology": [ + "v. 75 (July-Aug. 1999)" + ], + "idBarcode": [ + "33433084240237" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240229" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240229" + } + ], + "enumerationChronology": [ + "v. 75 (May 10-June 28, 1999)" + ], + "idBarcode": [ + "33433084240229" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240245" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 75-1999", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240245" + } + ], + "enumerationChronology": [ + "v. 75 (Sept.-Oct. 1999)" + ], + "idBarcode": [ + "33433084240245" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240203" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 74-1998", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240203" + } + ], + "enumerationChronology": [ + "v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "idBarcode": [ + "33433084240203" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240195" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 74-1998", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240195" + } + ], + "enumerationChronology": [ + "v. 74 (June- Aug. 1998)" + ], + "idBarcode": [ + "33433084240195" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078660671" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 74-1998", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474403", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078660671" + } + ], + "enumerationChronology": [ + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "idBarcode": [ + "33433078660671" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080030616" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 74-", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474453", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080030616" + } + ], + "enumerationChronology": [ + "v. 74" + ], + "idBarcode": [ + "33433080030616" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433081121117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 73-1997", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433081121117" + } + ], + "enumerationChronology": [ + "v. 73 (May 12-July 28, 1997)" + ], + "idBarcode": [ + "33433081121117" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658113" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 73-1997", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474430", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658113" + } + ], + "enumerationChronology": [ + "v. 73 (Aug-Oct 1997)" + ], + "idBarcode": [ + "33433078658113" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078530031" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1997", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 73-1997", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17142393", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078530031" + } + ], + "enumerationChronology": [ + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "idBarcode": [ + "33433078530031" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 73-1997", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474429", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658105" + } + ], + "enumerationChronology": [ + "v. 73 (Feb 17-May 5 1997)" + ], + "idBarcode": [ + "33433078658105" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 72-1996", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474426", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658071" + } + ], + "enumerationChronology": [ + "v. 72 (July 8-Sept 30 1996 (inc))" + ], + "idBarcode": [ + "33433078658071" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1996", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 72-1996", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474428", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658097" + } + ], + "enumerationChronology": [ + "v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "idBarcode": [ + "33433078658097" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 72-1996", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474427", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658089" + } + ], + "enumerationChronology": [ + "v. 72 (Oct 7-Nov 25 1996)" + ], + "idBarcode": [ + "33433078658089" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078626128" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 72-1996", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474400", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078626128" + } + ], + "enumerationChronology": [ + "v. 72 (Feb 19-Apr 22 1996)" + ], + "idBarcode": [ + "33433078626128" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 72-1996", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474425", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658063" + } + ], + "enumerationChronology": [ + "v. 72 (Apr 29-July 1 1996)" + ], + "idBarcode": [ + "33433078658063" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240179" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474883", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240179" + } + ], + "enumerationChronology": [ + "v. 71 (Feb. 20-Mar. 27, 1995)" + ], + "idBarcode": [ + "33433084240179" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658030" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474422", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658030" + } + ], + "enumerationChronology": [ + "v. 71 (Aug-Sept 1995)" + ], + "idBarcode": [ + "33433078658030" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658022" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474421", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658022" + } + ], + "enumerationChronology": [ + "v. 71 (June-July 1995)" + ], + "idBarcode": [ + "33433078658022" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240187" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474884", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240187" + } + ], + "enumerationChronology": [ + "v. 71 (Apr.-May 1995)" + ], + "idBarcode": [ + "33433084240187" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474424", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658055" + } + ], + "enumerationChronology": [ + "v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "idBarcode": [ + "33433078658055" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 71-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474423", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658048" + } + ], + "enumerationChronology": [ + "v. 71 (Oct-Nov 1995)" + ], + "idBarcode": [ + "33433078658048" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240161" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1995", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474882", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240161" + } + ], + "enumerationChronology": [ + "v. 70 (Jan. 9-Feb. 13, 1995)" + ], + "idBarcode": [ + "33433084240161" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240153" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474881", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240153" + } + ], + "enumerationChronology": [ + "v. 70 (Dec. 5, 1994-Jan. 2,1995)" + ], + "idBarcode": [ + "33433084240153" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240120" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474878", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240120" + } + ], + "enumerationChronology": [ + "v. 70 (Aug.-Sept. 1994)" + ], + "idBarcode": [ + "33433084240120" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240104" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474876", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240104" + } + ], + "enumerationChronology": [ + "v. 70 (May 1994)" + ], + "idBarcode": [ + "33433084240104" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240096" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474875", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240096" + } + ], + "enumerationChronology": [ + "v. 70 (Feb. 21-Mar. 28, 1994)" + ], + "idBarcode": [ + "33433084240096" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240146" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474880", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240146" + } + ], + "enumerationChronology": [ + "v. 70 (Nov. 1994)" + ], + "idBarcode": [ + "33433084240146" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240138" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474879", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240138" + } + ], + "enumerationChronology": [ + "v. 70 (Oct. 1994)" + ], + "idBarcode": [ + "33433084240138" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240112" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 70-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474877", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240112" + } + ], + "enumerationChronology": [ + "v. 70 (June-July 1994)" + ], + "idBarcode": [ + "33433084240112" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240088" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474874", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240088" + } + ], + "enumerationChronology": [ + "v. 69 (Jan. 10-Feb. 14, 1994)" + ], + "idBarcode": [ + "33433084240088" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078696048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078696048" + } + ], + "enumerationChronology": [ + "v. 69 (Feb. 22-Mar. 29 1993)" + ], + "idBarcode": [ + "33433078696048" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078696071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078696071" + } + ], + "enumerationChronology": [ + "v. 69 (June-July 1993)" + ], + "idBarcode": [ + "33433078696071" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078696063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078696063" + } + ], + "enumerationChronology": [ + "v. 69 (May 1993)" + ], + "idBarcode": [ + "33433078696063" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240047" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474870", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240047" + } + ], + "enumerationChronology": [ + "v. 69 (Sept. 1993)" + ], + "idBarcode": [ + "33433084240047" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240054" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474871", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240054" + } + ], + "enumerationChronology": [ + "v. 69 (Oct. 1993)" + ], + "idBarcode": [ + "33433084240054" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240070" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474873", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240070" + } + ], + "enumerationChronology": [ + "v. 69 (Dec. 1993)" + ], + "idBarcode": [ + "33433084240070" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240062" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474872", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240062" + } + ], + "enumerationChronology": [ + "v. 69 (Nov. 1993)" + ], + "idBarcode": [ + "33433084240062" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078696055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078696055" + } + ], + "enumerationChronology": [ + "v. 69 (Apr. 1993)" + ], + "idBarcode": [ + "33433078696055" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078696089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 69-1993", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078696089" + } + ], + "enumerationChronology": [ + "v. 69 (Aug. 1993)" + ], + "idBarcode": [ + "33433078696089" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474864", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239981" + } + ], + "enumerationChronology": [ + "v. 68 (Apr.-May 1992)" + ], + "idBarcode": [ + "33433084239981" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240013" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474867", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240013" + } + ], + "enumerationChronology": [ + "v. 68 (Nov. 1992)" + ], + "idBarcode": [ + "33433084240013" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474865", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239999" + } + ], + "enumerationChronology": [ + "v. 68 (Aug.-Sept. 1992)" + ], + "idBarcode": [ + "33433084239999" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474863", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239973" + } + ], + "enumerationChronology": [ + "v. 68 (Feb. 24-Mar. 30, 1992)" + ], + "idBarcode": [ + "33433084239973" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078653247" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474404", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078653247" + } + ], + "enumerationChronology": [ + "v. 68 (June-July 1992)" + ], + "idBarcode": [ + "33433078653247" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240021" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474868", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240021" + } + ], + "enumerationChronology": [ + "v. 68 (Dec. 7, 1992-Jan. 4, 1993)" + ], + "idBarcode": [ + "33433084240021" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240005" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 68-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474866", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240005" + } + ], + "enumerationChronology": [ + "v. 68 (Oct. 1992)" + ], + "idBarcode": [ + "33433084240005" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1992", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474862", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239965" + } + ], + "enumerationChronology": [ + "v. 67 (Jan. 6-Feb. 17, 1992)" + ], + "idBarcode": [ + "33433084239965" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239957" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474861", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239957" + } + ], + "enumerationChronology": [ + "v. 67 (N0v.-Dec. 1991)" + ], + "idBarcode": [ + "33433084239957" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239916" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474857", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239916" + } + ], + "enumerationChronology": [ + "v. 67 (Feb. 25-Apr. 29, 1991)" + ], + "idBarcode": [ + "33433084239916" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239940" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474860", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239940" + } + ], + "enumerationChronology": [ + "v. 67 (Sept.-Oct. 1991)" + ], + "idBarcode": [ + "33433084239940" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239932" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474859", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239932" + } + ], + "enumerationChronology": [ + "v. 67 (July-Aug. 1991)" + ], + "idBarcode": [ + "33433084239932" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239924" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 67-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474858", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239924" + } + ], + "enumerationChronology": [ + "v. 67 (May-June 1991)" + ], + "idBarcode": [ + "33433084239924" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239908" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 66-1991", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474856", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239908" + } + ], + "enumerationChronology": [ + "v. 66 (Jan. 7-Feb. 18, 1991)" + ], + "idBarcode": [ + "33433084239908" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657990" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 66-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474418", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657990" + } + ], + "enumerationChronology": [ + "v. 66 (Feb. 19-Apr. 30, 1990)" + ], + "idBarcode": [ + "33433078657990" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239890" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 66-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474855", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239890" + } + ], + "enumerationChronology": [ + "v. 66 (Sept.-Oct. 1990)" + ], + "idBarcode": [ + "33433084239890" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239882" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 66-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474854", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239882" + } + ], + "enumerationChronology": [ + "v. 66 (May-June 1990)" + ], + "idBarcode": [ + "33433084239882" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658014" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 66-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474420", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658014" + } + ], + "enumerationChronology": [ + "v. 66 (Nov-Dec 1990)" + ], + "idBarcode": [ + "33433078658014" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078658006" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 66-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474419", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078658006" + } + ], + "enumerationChronology": [ + "v. 66 (July-Aug 1990)" + ], + "idBarcode": [ + "33433078658006" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657982" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1990", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474417", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657982" + } + ], + "enumerationChronology": [ + "v. 65 (Jan. -Feb 12 1990)" + ], + "idBarcode": [ + "33433078657982" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239866" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474852", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239866" + } + ], + "enumerationChronology": [ + "v. 65 (May 1-June 26, 1989)" + ], + "idBarcode": [ + "33433084239866" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239858" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474851", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239858" + } + ], + "enumerationChronology": [ + "v. 65 (Feb. 20-Apr. 24, 1989)" + ], + "idBarcode": [ + "33433084239858" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239874" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474853", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239874" + } + ], + "enumerationChronology": [ + "v. 65 (Sept. 4-Oct. 30, 1989)" + ], + "idBarcode": [ + "33433084239874" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079122770" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474437", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079122770" + } + ], + "enumerationChronology": [ + "v. 65 (Nov.6-Dec. 25, 1989)" + ], + "idBarcode": [ + "33433079122770" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079122762" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 65-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474436", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079122762" + } + ], + "enumerationChronology": [ + "v. 65 (July 3-Aug. 28, 1989)" + ], + "idBarcode": [ + "33433079122762" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239841" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1989", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474850", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239841" + } + ], + "enumerationChronology": [ + "v. 64 (Jan.2-Feb. 13, 1989)" + ], + "idBarcode": [ + "33433084239841" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239833" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474849", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239833" + } + ], + "enumerationChronology": [ + "v. 64 (Nov.-Dec. 1988)" + ], + "idBarcode": [ + "33433084239833" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079122754" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474435", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079122754" + } + ], + "enumerationChronology": [ + "v. 64 (Sept. 5-Oct. 31, 1988)" + ], + "idBarcode": [ + "33433079122754" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657974" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474416", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657974" + } + ], + "enumerationChronology": [ + "v. 64 (Feb. 22-Apr. 25, 1988)" + ], + "idBarcode": [ + "33433078657974" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657966" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474415", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657966" + } + ], + "enumerationChronology": [ + "v. 64 (July-Aug 1988)" + ], + "idBarcode": [ + "33433078657966" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 3341", + "urn:barcode:33433078657958" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 003341", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 64-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 3341" + ], + "uri": "i17474414", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 3341" + }, + { + "type": "bf:Barcode", + "value": "33433078657958" + } + ], + "enumerationChronology": [ + "v. 64 (May 2-June 27, 1988)" + ], + "idBarcode": [ + "33433078657958" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657941" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1988", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474413", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657941" + } + ], + "enumerationChronology": [ + "v. 63 (Jan. 4-Feb. 15, 1988)" + ], + "idBarcode": [ + "33433078657941" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239825" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474848", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239825" + } + ], + "enumerationChronology": [ + "v. 63 (Dec. 7-28, 1987)" + ], + "idBarcode": [ + "33433084239825" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239809" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239809" + } + ], + "enumerationChronology": [ + "v. 63 (Sept. -Oct. 1987)" + ], + "idBarcode": [ + "33433084239809" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239783" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474844", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239783" + } + ], + "enumerationChronology": [ + "v. 63 (May-June 1987)" + ], + "idBarcode": [ + "33433084239783" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239775" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474843", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239775" + } + ], + "enumerationChronology": [ + "v. 63 (Feb. 23-Apr. 1987)" + ], + "idBarcode": [ + "33433084239775" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239791" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474845", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239791" + } + ], + "enumerationChronology": [ + "v. 63 (July-Aug. 1987)" + ], + "idBarcode": [ + "33433084239791" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239817" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 63-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474847", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239817" + } + ], + "enumerationChronology": [ + "v. 63 (Nov. 1987)" + ], + "idBarcode": [ + "33433084239817" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239767" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 62-1987", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474842", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239767" + } + ], + "enumerationChronology": [ + "v. 62 (Jan. -Feb. 1987)" + ], + "idBarcode": [ + "33433084239767" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239759" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 62-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474841", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239759" + } + ], + "enumerationChronology": [ + "v. 62 (Nov. -Dec. 1986)" + ], + "idBarcode": [ + "33433084239759" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239742" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 62-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474840", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239742" + } + ], + "enumerationChronology": [ + "v. 62 (Sept. -Oct. 1986)" + ], + "idBarcode": [ + "33433084239742" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657933" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 62-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474412", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657933" + } + ], + "enumerationChronology": [ + "v. 62 (July-Aug. 1986)" + ], + "idBarcode": [ + "33433078657933" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657925" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 62-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474411", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657925" + } + ], + "enumerationChronology": [ + "v. 62 (May-June 1986)" + ], + "idBarcode": [ + "33433078657925" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657917" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474410", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657917" + } + ], + "enumerationChronology": [ + "v. 61 (Feb. 24-Apr. 28 1986)" + ], + "idBarcode": [ + "33433078657917" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657909" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1986", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474409", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657909" + } + ], + "enumerationChronology": [ + "v. 61 (Jan 6 1986-Feb 10 1986)" + ], + "idBarcode": [ + "33433078657909" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239726" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474838", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239726" + } + ], + "enumerationChronology": [ + "v. 61 (Sept. -Oct. 1985)" + ], + "idBarcode": [ + "33433084239726" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657891" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474408", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657891" + } + ], + "enumerationChronology": [ + "v. 61 (July-Aug. 1985)" + ], + "idBarcode": [ + "33433078657891" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657883" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474407", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657883" + } + ], + "enumerationChronology": [ + "v. 61 (May-June 1985)" + ], + "idBarcode": [ + "33433078657883" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657875" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474406", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657875" + } + ], + "enumerationChronology": [ + "v. 61 (Feb. 25-Apr. 29 1985)" + ], + "idBarcode": [ + "33433078657875" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239734" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 61-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474839", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239734" + } + ], + "enumerationChronology": [ + "v. 61 (Nov. -Dec. 1985)" + ], + "idBarcode": [ + "33433084239734" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078657867" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 60-1985", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474405", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078657867" + } + ], + "enumerationChronology": [ + "v. 60 (Jan. 7 1985-Feb. 18 1985)" + ], + "idBarcode": [ + "33433078657867" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239718" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474837", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239718" + } + ], + "enumerationChronology": [ + "v. 60 (Nov. -Dec. 1984)" + ], + "idBarcode": [ + "33433084239718" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239700" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474836", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239700" + } + ], + "enumerationChronology": [ + "v. 60 (Sept. -Oct. 1984)" + ], + "idBarcode": [ + "33433084239700" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239692" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474835", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239692" + } + ], + "enumerationChronology": [ + "v. 60 (July-Aug. 1984)" + ], + "idBarcode": [ + "33433084239692" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239668" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239668" + } + ], + "enumerationChronology": [ + "v. 60 (Feb. 20-Mar. 26, 1984)" + ], + "idBarcode": [ + "33433084239668" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239676" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239676" + } + ], + "enumerationChronology": [ + "v. 60 (Apr. 1984)" + ], + "idBarcode": [ + "33433084239676" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239684" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 60-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474834", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239684" + } + ], + "enumerationChronology": [ + "v. 60 (May-June 1984)" + ], + "idBarcode": [ + "33433084239684" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1984", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239650" + } + ], + "enumerationChronology": [ + "v. 59 (Jan.2-Feb. 13, 1984)" + ], + "idBarcode": [ + "33433084239650" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239643" + } + ], + "enumerationChronology": [ + "v. 59 (Dec. 1983)" + ], + "idBarcode": [ + "33433084239643" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474827", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239619" + } + ], + "enumerationChronology": [ + "v. 59 (Aug.-Sept. 1983)" + ], + "idBarcode": [ + "33433084239619" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474828", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239627" + } + ], + "enumerationChronology": [ + "v. 59 (Oct. 1983)" + ], + "idBarcode": [ + "33433084239627" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474825", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239593" + } + ], + "enumerationChronology": [ + "v. 59 (Apr. 1983)" + ], + "idBarcode": [ + "33433084239593" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474826", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239601" + } + ], + "enumerationChronology": [ + "v. 59 (June-July 1983)" + ], + "idBarcode": [ + "33433084239601" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239635" + } + ], + "enumerationChronology": [ + "v. 59 (Nov. 1983)" + ], + "idBarcode": [ + "33433084239635" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078712639" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 59-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078712639" + } + ], + "enumerationChronology": [ + "v. 59 (May 1983)" + ], + "idBarcode": [ + "33433078712639" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474823", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239577" + } + ], + "enumerationChronology": [ + "v. 58 (Jan. 3-Feb. 14, 1983)" + ], + "idBarcode": [ + "33433084239577" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1983", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474824", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239585" + } + ], + "enumerationChronology": [ + "v. 58 (Feb. 21-Mar. 1983)" + ], + "idBarcode": [ + "33433084239585" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239510" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474817", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239510" + } + ], + "enumerationChronology": [ + "v. 58 (Feb. 22-Mar. 29, 1982)" + ], + "idBarcode": [ + "33433084239510" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474819", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239536" + } + ], + "enumerationChronology": [ + "v. 58 (May-June 1982)" + ], + "idBarcode": [ + "33433084239536" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239551" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474821", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239551" + } + ], + "enumerationChronology": [ + "v. 58 (Sept.-Oct. 1982)" + ], + "idBarcode": [ + "33433084239551" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239569" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474822", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239569" + } + ], + "enumerationChronology": [ + "v. 58 (Nov.-Dec. 1982)" + ], + "idBarcode": [ + "33433084239569" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239528" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474818", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239528" + } + ], + "enumerationChronology": [ + "v. 58 (Apr. 5-26, 1982)" + ], + "idBarcode": [ + "33433084239528" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 58-1982", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474820", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239544" + } + ], + "enumerationChronology": [ + "v. 58 (July 5-Aug. 30, 1982)" + ], + "idBarcode": [ + "33433084239544" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474815", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239494" + } + ], + "enumerationChronology": [ + "v. 57 (Nov. 1981)" + ], + "idBarcode": [ + "33433084239494" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239502" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474816", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239502" + } + ], + "enumerationChronology": [ + "v. 57 (Dec. 1981)" + ], + "idBarcode": [ + "33433084239502" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474812", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239460" + } + ], + "enumerationChronology": [ + "v. 57 (July-Aug. 1981)" + ], + "idBarcode": [ + "33433084239460" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239437" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474809", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239437" + } + ], + "enumerationChronology": [ + "v. 57 (Apr. 1981)" + ], + "idBarcode": [ + "33433084239437" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474814", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239486" + } + ], + "enumerationChronology": [ + "v. 57 (Oct. 1981)" + ], + "idBarcode": [ + "33433084239486" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474813", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239478" + } + ], + "enumerationChronology": [ + "v. 57 (Sept. 1981)" + ], + "idBarcode": [ + "33433084239478" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239429" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474808", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239429" + } + ], + "enumerationChronology": [ + "v. 57 (Mar. 1981)" + ], + "idBarcode": [ + "33433084239429" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239445" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474810", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239445" + } + ], + "enumerationChronology": [ + "v. 57 (May 1981)" + ], + "idBarcode": [ + "33433084239445" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239452" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 57-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474811", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239452" + } + ], + "enumerationChronology": [ + "v. 57 (June 1981)" + ], + "idBarcode": [ + "33433084239452" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239411" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1981", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474807", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239411" + } + ], + "enumerationChronology": [ + "v. 56-57 (Jan.-Feb. 1981)" + ], + "idBarcode": [ + "33433084239411" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239395" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474805", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239395" + } + ], + "enumerationChronology": [ + "v. 56 (Nov. 1980)" + ], + "idBarcode": [ + "33433084239395" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079128785" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17586832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079128785" + } + ], + "enumerationChronology": [ + "v. 56 (May 1980)" + ], + "idBarcode": [ + "33433079128785" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239403" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239403" + } + ], + "enumerationChronology": [ + "v. 56 (Dec. 1980)" + ], + "idBarcode": [ + "33433084239403" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239346" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239346" + } + ], + "enumerationChronology": [ + "v. 56 (Mar. 1980)" + ], + "idBarcode": [ + "33433084239346" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239361" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239361" + } + ], + "enumerationChronology": [ + "v. 56 (June-July 1980)" + ], + "idBarcode": [ + "33433084239361" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239353" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474801", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239353" + } + ], + "enumerationChronology": [ + "v. 56 (Apr. 1980)" + ], + "idBarcode": [ + "33433084239353" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239379" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474803", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239379" + } + ], + "enumerationChronology": [ + "v. 56 (Aug.-Sept. 1980)" + ], + "idBarcode": [ + "33433084239379" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239387" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 56-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239387" + } + ], + "enumerationChronology": [ + "v. 56 (Oct. 1980)" + ], + "idBarcode": [ + "33433084239387" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239338" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1980", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239338" + } + ], + "enumerationChronology": [ + "v. 55-56 (Jan.-Feb. 1980)" + ], + "idBarcode": [ + "33433084239338" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239288" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239288" + } + ], + "enumerationChronology": [ + "v. 55 (July-Aug. 1979)" + ], + "idBarcode": [ + "33433084239288" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239270" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474793", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239270" + } + ], + "enumerationChronology": [ + "v. 55 (May-June 1979)" + ], + "idBarcode": [ + "33433084239270" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239304" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474796", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239304" + } + ], + "enumerationChronology": [ + "v. 55 (Oct. 1979)" + ], + "idBarcode": [ + "33433084239304" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239296" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239296" + } + ], + "enumerationChronology": [ + "v. 55 (Sept. 1979)" + ], + "idBarcode": [ + "33433084239296" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239262" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239262" + } + ], + "enumerationChronology": [ + "v. 55 (Apr. 1979)" + ], + "idBarcode": [ + "33433084239262" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239254" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474791", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239254" + } + ], + "enumerationChronology": [ + "v. 55 (Mar. 1979)" + ], + "idBarcode": [ + "33433084239254" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239320" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239320" + } + ], + "enumerationChronology": [ + "v. 55 (Dec. 1979)" + ], + "idBarcode": [ + "33433084239320" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239312" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 55-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474797", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239312" + } + ], + "enumerationChronology": [ + "v. 55 (Nov. 1979)" + ], + "idBarcode": [ + "33433084239312" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239247" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1979", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474790", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239247" + } + ], + "enumerationChronology": [ + "v. 54-55 (Jan.-Feb. 1979)" + ], + "idBarcode": [ + "33433084239247" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239171" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474783", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239171" + } + ], + "enumerationChronology": [ + "v. 54 (Apr. 1978)" + ], + "idBarcode": [ + "33433084239171" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239239" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474789", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239239" + } + ], + "enumerationChronology": [ + "v. 54 (Dec. 1978)" + ], + "idBarcode": [ + "33433084239239" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239221" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239221" + } + ], + "enumerationChronology": [ + "v. 54 (Nov. 1978)" + ], + "idBarcode": [ + "33433084239221" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239213" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474787", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239213" + } + ], + "enumerationChronology": [ + "v. 54 (Oct. 1978)" + ], + "idBarcode": [ + "33433084239213" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239163" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474782", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239163" + } + ], + "enumerationChronology": [ + "v. 54 (Mar. 1978)" + ], + "idBarcode": [ + "33433084239163" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239197" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474785", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239197" + } + ], + "enumerationChronology": [ + "v. 54 (June-July 1978)" + ], + "idBarcode": [ + "33433084239197" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239205" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474786", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239205" + } + ], + "enumerationChronology": [ + "v. 54 (Aug.-Sept. 1978)" + ], + "idBarcode": [ + "33433084239205" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239189" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 54-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474784", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239189" + } + ], + "enumerationChronology": [ + "v. 54 (May 1978)" + ], + "idBarcode": [ + "33433084239189" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239155" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1978", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474781", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239155" + } + ], + "enumerationChronology": [ + "v. 53-54 (Jan.-Feb. 1978)" + ], + "idBarcode": [ + "33433084239155" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239114" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474777", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239114" + } + ], + "enumerationChronology": [ + "v. 53 (July-Aug. 1977)" + ], + "idBarcode": [ + "33433084239114" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239106" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474776", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239106" + } + ], + "enumerationChronology": [ + "v. 53 (May-June 1977)" + ], + "idBarcode": [ + "33433084239106" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239148" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239148" + } + ], + "enumerationChronology": [ + "v. 53 (Dec. 1977)" + ], + "idBarcode": [ + "33433084239148" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239080" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474774", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239080" + } + ], + "enumerationChronology": [ + "v. 53 (Mar. 1977)" + ], + "idBarcode": [ + "33433084239080" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 2", + "urn:barcode:33433080722055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000002", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 2" + ], + "uri": "i17586829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 2" + }, + { + "type": "bf:Barcode", + "value": "33433080722055" + } + ], + "enumerationChronology": [ + "v. 53 (Nov. 1977)" + ], + "idBarcode": [ + "33433080722055" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239130" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239130" + } + ], + "enumerationChronology": [ + "v. 53 (Oct. 1977)" + ], + "idBarcode": [ + "33433084239130" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239098" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474775", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239098" + } + ], + "enumerationChronology": [ + "v. 53 (Apr. 1977)" + ], + "idBarcode": [ + "33433084239098" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239122" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 53-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474778", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239122" + } + ], + "enumerationChronology": [ + "v. 53 (Sept. 1977)" + ], + "idBarcode": [ + "33433084239122" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239072" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1977", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474773", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239072" + } + ], + "enumerationChronology": [ + "v. 52-52 (Jan.-Feb. 1977)" + ], + "idBarcode": [ + "33433084239072" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622460" + } + ], + "enumerationChronology": [ + "v. 52 (Dec. 1976)" + ], + "idBarcode": [ + "33433099622460" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622486" + } + ], + "enumerationChronology": [ + "v. 52 (Oct. 11-25, 1976)" + ], + "idBarcode": [ + "33433099622486" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622494" + } + ], + "enumerationChronology": [ + "v. 52 (Aug-Sept 1976)" + ], + "idBarcode": [ + "33433099622494" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622478" + } + ], + "enumerationChronology": [ + "v. 52 (Nov. 1-22, 1976)" + ], + "idBarcode": [ + "33433099622478" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622502" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622502" + } + ], + "enumerationChronology": [ + "v. 52 (June-July 1976)" + ], + "idBarcode": [ + "33433099622502" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622510" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622510" + } + ], + "enumerationChronology": [ + "v. 52 (May 1976)" + ], + "idBarcode": [ + "33433099622510" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622528" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 52-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597675", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622528" + } + ], + "enumerationChronology": [ + "v. 52 (Feb. 23-Apr. 5, 1976)" + ], + "idBarcode": [ + "33433099622528" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1976", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597430", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622601" + } + ], + "enumerationChronology": [ + "v. 51 (Jan. 12-Feb. 16, 1976)" + ], + "idBarcode": [ + "33433099622601" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597656", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622544" + } + ], + "enumerationChronology": [ + "v. 51 (Nov 1975)" + ], + "idBarcode": [ + "33433099622544" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597665", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622536" + } + ], + "enumerationChronology": [ + "v. 51 (Dec. 1975)" + ], + "idBarcode": [ + "33433099622536" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622551" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597655", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622551" + } + ], + "enumerationChronology": [ + "v. 51 (Oct. 1975)" + ], + "idBarcode": [ + "33433099622551" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622569" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597639", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622569" + } + ], + "enumerationChronology": [ + "v. 51 (Aug-Sept 1975)" + ], + "idBarcode": [ + "33433099622569" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597630", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622577" + } + ], + "enumerationChronology": [ + "v. 51 (June-July 1975)" + ], + "idBarcode": [ + "33433099622577" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597620", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622585" + } + ], + "enumerationChronology": [ + "v. 51 (Apr-May 1975)" + ], + "idBarcode": [ + "33433099622585" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 51-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597442", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622593" + } + ], + "enumerationChronology": [ + "v. 51 (Feb. 24-Mar. 31, 1975)" + ], + "idBarcode": [ + "33433099622593" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 50-1975", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597003", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622650" + } + ], + "enumerationChronology": [ + "v. 50 (Jan. 6-Feb. 17, 1975)" + ], + "idBarcode": [ + "33433099622650" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 50-1974", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597322", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622619" + } + ], + "enumerationChronology": [ + "v. 50 inc. (Nov.-Dec. 1974)" + ], + "idBarcode": [ + "33433099622619" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 50-1974", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597316", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622627" + } + ], + "enumerationChronology": [ + "v. 50 (Oct. 1974)" + ], + "idBarcode": [ + "33433099622627" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 50-1974", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597294", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622635" + } + ], + "enumerationChronology": [ + "v. 50 (Aug. 19-Sept. 30, 1974)" + ], + "idBarcode": [ + "33433099622635" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099622643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 50-1974", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29597286", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099622643" + } + ], + "enumerationChronology": [ + "v. 50 (Apr. 29, 1974)" + ], + "idBarcode": [ + "33433099622643" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078744582" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1973", + "lte": "1973" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1973", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078744582" + } + ], + "enumerationChronology": [ + "v. 48 (Jan.-Feb. 17, 1973)" + ], + "idBarcode": [ + "33433078744582" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239064" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239064" + } + ], + "enumerationChronology": [ + "v. 48 (Apr. 1972)" + ], + "idBarcode": [ + "33433084239064" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239056" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239056" + } + ], + "enumerationChronology": [ + "v. 48 (Feb. 26-Mar. 1972)" + ], + "idBarcode": [ + "33433084239056" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080731296" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474431", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080731296" + } + ], + "enumerationChronology": [ + "v. 48 (May-June 1972)" + ], + "idBarcode": [ + "33433080731296" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433081121083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433081121083" + } + ], + "enumerationChronology": [ + "v. 48 (Sept.-Oct. 1972)" + ], + "idBarcode": [ + "33433081121083" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433081121109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433081121109" + } + ], + "enumerationChronology": [ + "v. 48 (Dec. 1972)" + ], + "idBarcode": [ + "33433081121109" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433081121091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433081121091" + } + ], + "enumerationChronology": [ + "v. 48 (Nov. 1972)" + ], + "idBarcode": [ + "33433081121091" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433081120473" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 48-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433081120473" + } + ], + "enumerationChronology": [ + "v. 48 (July-Aug. 1972)" + ], + "idBarcode": [ + "33433081120473" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239023" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474768", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239023" + } + ], + "enumerationChronology": [ + "v. 47 (Oct. 1971)" + ], + "idBarcode": [ + "33433084239023" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239049" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474770", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239049" + } + ], + "enumerationChronology": [ + "v. 47 (Dec. 1971)" + ], + "idBarcode": [ + "33433084239049" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239031" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474769", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239031" + } + ], + "enumerationChronology": [ + "v. 47 (Nov. 1971)" + ], + "idBarcode": [ + "33433084239031" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239015" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474767", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239015" + } + ], + "enumerationChronology": [ + "v. 47 (Aug.-Sept. 1971)" + ], + "idBarcode": [ + "33433084239015" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084239007" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474766", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084239007" + } + ], + "enumerationChronology": [ + "v. 47 (June-July 1971)" + ], + "idBarcode": [ + "33433084239007" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238983" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474764", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238983" + } + ], + "enumerationChronology": [ + "v. 47 (Apr. 1971)" + ], + "idBarcode": [ + "33433084238983" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238991" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474765", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238991" + } + ], + "enumerationChronology": [ + "v. 47 (May 1971)" + ], + "idBarcode": [ + "33433084238991" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238975" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 47-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238975" + } + ], + "enumerationChronology": [ + "v. 47 (Feb. 20-Mar. 1971)" + ], + "idBarcode": [ + "33433084238975" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238967" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1971", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474762", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238967" + } + ], + "enumerationChronology": [ + "v. 46 (Jan.-Feb. 13, 1971)" + ], + "idBarcode": [ + "33433084238967" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238918" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474757", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238918" + } + ], + "enumerationChronology": [ + "v. 46 (June-July 1970)" + ], + "idBarcode": [ + "33433084238918" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238892" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474755", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238892" + } + ], + "enumerationChronology": [ + "v. 46 (Feb. 21-Mar. 28, 1970)" + ], + "idBarcode": [ + "33433084238892" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433104098789" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29250562", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433104098789" + } + ], + "enumerationChronology": [ + "v. 46 (May 1970)" + ], + "idBarcode": [ + "33433104098789" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238926" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474758", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238926" + } + ], + "enumerationChronology": [ + "v. 46 (Aug.-Sept. 1970)" + ], + "idBarcode": [ + "33433084238926" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238934" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474759", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238934" + } + ], + "enumerationChronology": [ + "v. 46 (Oct. 1970)" + ], + "idBarcode": [ + "33433084238934" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238900" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474756", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238900" + } + ], + "enumerationChronology": [ + "v. 46 (Apr. 1970)" + ], + "idBarcode": [ + "33433084238900" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238959" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474761", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238959" + } + ], + "enumerationChronology": [ + "v. 46 (Dec. 1970)" + ], + "idBarcode": [ + "33433084238959" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238942" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 46-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474760", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238942" + } + ], + "enumerationChronology": [ + "v. 46 (Nov. 1970)" + ], + "idBarcode": [ + "33433084238942" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238884" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1970", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474754", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238884" + } + ], + "enumerationChronology": [ + "v. 45 (Jan. 3-Feb. 14, 1970)" + ], + "idBarcode": [ + "33433084238884" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238876" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474753", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238876" + } + ], + "enumerationChronology": [ + "v. 45 (Dec. 1969)" + ], + "idBarcode": [ + "33433084238876" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238835" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474750", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238835" + } + ], + "enumerationChronology": [ + "v. 45 (Sept. 1969)" + ], + "idBarcode": [ + "33433084238835" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238868" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474752", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238868" + } + ], + "enumerationChronology": [ + "v. 45 (Nov. 1969)" + ], + "idBarcode": [ + "33433084238868" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238843" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474749", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238843" + } + ], + "enumerationChronology": [ + "v. 45 (Aug. 1969)" + ], + "idBarcode": [ + "33433084238843" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238785" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474744", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238785" + } + ], + "enumerationChronology": [ + "v. 45 (Feb. 22-Mar. 29, 1969)" + ], + "idBarcode": [ + "33433084238785" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238827" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474748", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238827" + } + ], + "enumerationChronology": [ + "v. 45 (July 1969)" + ], + "idBarcode": [ + "33433084238827" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238819" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474747", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238819" + } + ], + "enumerationChronology": [ + "v. 45 (June 1969)" + ], + "idBarcode": [ + "33433084238819" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238793" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474745", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238793" + } + ], + "enumerationChronology": [ + "v. 45 (Apr. 1969)" + ], + "idBarcode": [ + "33433084238793" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238801" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474746", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238801" + } + ], + "enumerationChronology": [ + "v. 45 (May 1969)" + ], + "idBarcode": [ + "33433084238801" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238850" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 45-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474751", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238850" + } + ], + "enumerationChronology": [ + "v. 45 (Oct. 1969)" + ], + "idBarcode": [ + "33433084238850" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238777" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1969", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474743", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238777" + } + ], + "enumerationChronology": [ + "v. 44 (Jan.4-Feb. 15, 1969)" + ], + "idBarcode": [ + "33433084238777" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238694" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474735", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238694" + } + ], + "enumerationChronology": [ + "v. 44 (May 1968)" + ], + "idBarcode": [ + "33433084238694" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238686" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474734", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238686" + } + ], + "enumerationChronology": [ + "v. 44 (Apr. 1968)" + ], + "idBarcode": [ + "33433084238686" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238769" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474742", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238769" + } + ], + "enumerationChronology": [ + "v. 44 (Dec. 1968)" + ], + "idBarcode": [ + "33433084238769" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238728" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474738", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238728" + } + ], + "enumerationChronology": [ + "v. 44 (Aug. 1968)" + ], + "idBarcode": [ + "33433084238728" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238744" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238744" + } + ], + "enumerationChronology": [ + "v. 44 (Oct. 1968)" + ], + "idBarcode": [ + "33433084238744" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238736" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474739", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238736" + } + ], + "enumerationChronology": [ + "v. 44 (Sept. 1968)" + ], + "idBarcode": [ + "33433084238736" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238678" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474733", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238678" + } + ], + "enumerationChronology": [ + "v. 44 (Feb. 24-Mar. 30, 1968)" + ], + "idBarcode": [ + "33433084238678" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238702" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238702" + } + ], + "enumerationChronology": [ + "v. 44 (June 1968)" + ], + "idBarcode": [ + "33433084238702" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238710" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474737", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238710" + } + ], + "enumerationChronology": [ + "v. 44 (July 1968)" + ], + "idBarcode": [ + "33433084238710" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238751" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 44-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474741", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238751" + } + ], + "enumerationChronology": [ + "v. 44 (Nov. 1968)" + ], + "idBarcode": [ + "33433084238751" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238660" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1968", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474732", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238660" + } + ], + "enumerationChronology": [ + "v. 43 (Jan. 6-Feb. 17, 1968)" + ], + "idBarcode": [ + "33433084238660" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238652" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474731", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238652" + } + ], + "enumerationChronology": [ + "v. 43 (Dec. 1967)" + ], + "idBarcode": [ + "33433084238652" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474723", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159973" + } + ], + "enumerationChronology": [ + "v. 43 (Apr. 1967)" + ], + "idBarcode": [ + "33433084159973" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238645" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474730", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238645" + } + ], + "enumerationChronology": [ + "v. 43 (Nov. 1967)" + ], + "idBarcode": [ + "33433084238645" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159981" + } + ], + "enumerationChronology": [ + "v. 43 (May 1967)" + ], + "idBarcode": [ + "33433084159981" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238637" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474729", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238637" + } + ], + "enumerationChronology": [ + "v. 43 (Oct. 1967)" + ], + "idBarcode": [ + "33433084238637" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238629" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238629" + } + ], + "enumerationChronology": [ + "v. 43 (Sept. 1967)" + ], + "idBarcode": [ + "33433084238629" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084238611" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474727", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084238611" + } + ], + "enumerationChronology": [ + "v. 43 (Aug. 1967)" + ], + "idBarcode": [ + "33433084238611" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084160005" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474726", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084160005" + } + ], + "enumerationChronology": [ + "v. 43 (July 1967)" + ], + "idBarcode": [ + "33433084160005" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474725", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159999" + } + ], + "enumerationChronology": [ + "v. 43 (June 1967)" + ], + "idBarcode": [ + "33433084159999" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 43-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474722", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159965" + } + ], + "enumerationChronology": [ + "v. 43 (Feb. 25-Mar. 25, 1967)" + ], + "idBarcode": [ + "33433084159965" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159957" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1967", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474721", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159957" + } + ], + "enumerationChronology": [ + "v. 42 (Jan. 7-Feb. 18, 1967)" + ], + "idBarcode": [ + "33433084159957" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159908" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474716", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159908" + } + ], + "enumerationChronology": [ + "v. 42 (July 1966)" + ], + "idBarcode": [ + "33433084159908" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159940" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474720", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159940" + } + ], + "enumerationChronology": [ + "v. 42 (Dec. 1966)" + ], + "idBarcode": [ + "33433084159940" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159932" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474719", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159932" + } + ], + "enumerationChronology": [ + "v. 42 (Oct. 1966)" + ], + "idBarcode": [ + "33433084159932" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159882" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474714", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159882" + } + ], + "enumerationChronology": [ + "v. 42 (May 1966)" + ], + "idBarcode": [ + "33433084159882" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079128975" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474438", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079128975" + } + ], + "enumerationChronology": [ + "v. 42 (Nov. 1966)" + ], + "idBarcode": [ + "33433079128975" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159890" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474715", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159890" + } + ], + "enumerationChronology": [ + "v. 42 (June 1966)" + ], + "idBarcode": [ + "33433084159890" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159916" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474717", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159916" + } + ], + "enumerationChronology": [ + "v. 42 (Aug. 1966)" + ], + "idBarcode": [ + "33433084159916" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159866" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474712", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159866" + } + ], + "enumerationChronology": [ + "v. 42 (Feb. 26-Mar. 26, 1966)" + ], + "idBarcode": [ + "33433084159866" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159874" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474713", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159874" + } + ], + "enumerationChronology": [ + "v. 42 (April 1966)" + ], + "idBarcode": [ + "33433084159874" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159924" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 42-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474718", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159924" + } + ], + "enumerationChronology": [ + "v. 42 (Aug. 1966)" + ], + "idBarcode": [ + "33433084159924" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078698390" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1972", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078698390" + } + ], + "enumerationChronology": [ + "v. 41 (Jan.-Feb. 19 1972)" + ], + "idBarcode": [ + "33433078698390" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240591" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1966", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474711", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240591" + } + ], + "enumerationChronology": [ + "v. 41 (Jan. 1-Feb. 19, 1966)" + ], + "idBarcode": [ + "33433084240591" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240609" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474706", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240609" + } + ], + "enumerationChronology": [ + "v. 41 (June 1965)" + ], + "idBarcode": [ + "33433084240609" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159817" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474705", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159817" + } + ], + "enumerationChronology": [ + "v. 41 (may 1965)" + ], + "idBarcode": [ + "33433084159817" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079575118" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474456", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079575118" + } + ], + "enumerationChronology": [ + "v. 41 (Sept 1965)" + ], + "idBarcode": [ + "33433079575118" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159809" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474704", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159809" + } + ], + "enumerationChronology": [ + "v. 41 (Apr. 1965)" + ], + "idBarcode": [ + "33433084159809" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159841" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474709", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159841" + } + ], + "enumerationChronology": [ + "v. 41 (Nov. 1965)" + ], + "idBarcode": [ + "33433084159841" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159825" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474707", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159825" + } + ], + "enumerationChronology": [ + "v. 41 (July 1965)" + ], + "idBarcode": [ + "33433084159825" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084240617" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474703", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084240617" + } + ], + "enumerationChronology": [ + "v. 41 (Feb. 20-Mar. 27, 1965)" + ], + "idBarcode": [ + "33433084240617" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079575126" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474457", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079575126" + } + ], + "enumerationChronology": [ + "v. 41 (Oct 1965)" + ], + "idBarcode": [ + "33433079575126" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159858" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474710", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159858" + } + ], + "enumerationChronology": [ + "v. 41 Dec. 1965)" + ], + "idBarcode": [ + "33433084159858" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159833" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 41-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474708", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159833" + } + ], + "enumerationChronology": [ + "v. 41 (Aug. 1965)" + ], + "idBarcode": [ + "33433084159833" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159791" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1965", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474702", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159791" + } + ], + "enumerationChronology": [ + "v. 40 (Jan.2-Feb. 13, 1965)" + ], + "idBarcode": [ + "33433084159791" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159734" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "dueDate": [ + "2024-05-02" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474696", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159734" + } + ], + "enumerationChronology": [ + "v. 40 (July 1964)" + ], + "idBarcode": [ + "33433084159734" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159759" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474698", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159759" + } + ], + "enumerationChronology": [ + "v. 40 (Sept. 1964)" + ], + "idBarcode": [ + "33433084159759" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159767" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474699", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159767" + } + ], + "enumerationChronology": [ + "v. 40 (Oct. 1964)" + ], + "idBarcode": [ + "33433084159767" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159783" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159783" + } + ], + "enumerationChronology": [ + "v. 40 (Dec. 1964)" + ], + "idBarcode": [ + "33433084159783" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159692" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474692", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159692" + } + ], + "enumerationChronology": [ + "v. 40 (Feb. 22-mar. 28, 1964)" + ], + "idBarcode": [ + "33433084159692" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159700" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474693", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159700" + } + ], + "enumerationChronology": [ + "v. 40 (Apr. 1964)" + ], + "idBarcode": [ + "33433084159700" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159718" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474694", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159718" + } + ], + "enumerationChronology": [ + "v. 40 (May 1964)" + ], + "idBarcode": [ + "33433084159718" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159775" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474700", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159775" + } + ], + "enumerationChronology": [ + "v. 40 (Nov. 1964)" + ], + "idBarcode": [ + "33433084159775" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159742" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474697", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159742" + } + ], + "enumerationChronology": [ + "v. 40 (Aug. 1964)" + ], + "idBarcode": [ + "33433084159742" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159726" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 40-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474695", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159726" + } + ], + "enumerationChronology": [ + "v. 40 (June 1964)" + ], + "idBarcode": [ + "33433084159726" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159684" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1964", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474691", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159684" + } + ], + "enumerationChronology": [ + "v. 39 (Jan. 4-Feb. 15, 1964)" + ], + "idBarcode": [ + "33433084159684" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474682", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159593" + } + ], + "enumerationChronology": [ + "v. 39 (Mar. 23-Apr. 27, 1963)" + ], + "idBarcode": [ + "33433084159593" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474683", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159601" + } + ], + "enumerationChronology": [ + "v. 39 (May 1963)" + ], + "idBarcode": [ + "33433084159601" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159650" + } + ], + "enumerationChronology": [ + "v. 39 (Oct. 1963)" + ], + "idBarcode": [ + "33433084159650" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474685", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159627" + } + ], + "enumerationChronology": [ + "v. 39 (July 1963)" + ], + "idBarcode": [ + "33433084159627" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474681", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159585" + } + ], + "enumerationChronology": [ + "v. 39 (Feb. 23-Mar. 16, 1963)" + ], + "idBarcode": [ + "33433084159585" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474686", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159635" + } + ], + "enumerationChronology": [ + "v. 39 (Aug. 1963)" + ], + "idBarcode": [ + "33433084159635" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474684", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159619" + } + ], + "enumerationChronology": [ + "v. 39 (June 1963)" + ], + "idBarcode": [ + "33433084159619" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159676" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474690", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159676" + } + ], + "enumerationChronology": [ + "v. 39 (Dec. 1963)" + ], + "idBarcode": [ + "33433084159676" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474687", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159643" + } + ], + "enumerationChronology": [ + "v. 39 (Sept. 1963)" + ], + "idBarcode": [ + "33433084159643" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159668" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 39-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474689", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159668" + } + ], + "enumerationChronology": [ + "v. 39 (Nov. 1963)" + ], + "idBarcode": [ + "33433084159668" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 38-1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474680", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159577" + } + ], + "enumerationChronology": [ + "v. 38 (Jan. 5-Feb. 16, 1963)" + ], + "idBarcode": [ + "33433084159577" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1962", + "lte": "1962" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 38-1962", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474676", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159536" + } + ], + "enumerationChronology": [ + "v. 38 (May 26-July 7, 1962)" + ], + "idBarcode": [ + "33433084159536" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1962", + "lte": "1962" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 38-1962", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474677", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159544" + } + ], + "enumerationChronology": [ + "v. 38 (July 14-Aug.18, 1962)" + ], + "idBarcode": [ + "33433084159544" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080065141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 38-", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17586833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080065141" + } + ], + "enumerationChronology": [ + "v. 38" + ], + "idBarcode": [ + "33433080065141" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159429" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474665", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159429" + } + ], + "enumerationChronology": [ + "v. 37 (Feb. 18-Apr. 1, 1961)" + ], + "idBarcode": [ + "33433084159429" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159411" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474664", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159411" + } + ], + "enumerationChronology": [ + "v. 37 (Jan.7-Feb. 11, 1961)" + ], + "idBarcode": [ + "33433084159411" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159452" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474668", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159452" + } + ], + "enumerationChronology": [ + "v. 37 (July 8-Aug. 19, 1961)" + ], + "idBarcode": [ + "33433084159452" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159437" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474666", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159437" + } + ], + "enumerationChronology": [ + "v. 37 (Apr. 8-May 20, 1961)" + ], + "idBarcode": [ + "33433084159437" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159445" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474667", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159445" + } + ], + "enumerationChronology": [ + "v. 37 (May 27-July 1, 1961)" + ], + "idBarcode": [ + "33433084159445" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474670", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159478" + } + ], + "enumerationChronology": [ + "v. 37 (Oct. 14-28, 1961)" + ], + "idBarcode": [ + "33433084159478" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474671", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159486" + } + ], + "enumerationChronology": [ + "v. 37 (Nov. 4-18, 1961)" + ], + "idBarcode": [ + "33433084159486" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474672", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159494" + } + ], + "enumerationChronology": [ + "v. 37 (Nov. 25-Dec. 30, 1961)" + ], + "idBarcode": [ + "33433084159494" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084159460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 37-1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474669", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084159460" + } + ], + "enumerationChronology": [ + "v. 37 (Aug. 26-Oct. 7, 1961)" + ], + "idBarcode": [ + "33433084159460" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149800" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474663", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149800" + } + ], + "enumerationChronology": [ + "v. 36 (Aug. 20-Oct. 1, 1960)" + ], + "idBarcode": [ + "33433084149800" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149792" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474662", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149792" + } + ], + "enumerationChronology": [ + "v. 36 (July 2-Aug 13, 1960)" + ], + "idBarcode": [ + "33433084149792" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433071556728" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474432", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433071556728" + } + ], + "enumerationChronology": [ + "v. 36 (Oct.-Nov. 1960)" + ], + "idBarcode": [ + "33433071556728" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149784" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474661", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149784" + } + ], + "enumerationChronology": [ + "v. 36 (May 21-June 25, 1960)" + ], + "idBarcode": [ + "33433084149784" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149776" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474660", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149776" + } + ], + "enumerationChronology": [ + "v. 36 (Apr. 2-May 14, 1960)" + ], + "idBarcode": [ + "33433084149776" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433071556736" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474433", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433071556736" + } + ], + "enumerationChronology": [ + "v. 36 (Nov. 19-Dec. 31, 1960)" + ], + "idBarcode": [ + "33433071556736" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149768" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 36-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474659", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149768" + } + ], + "enumerationChronology": [ + "v. 36 (Feb. 20-Mar. 26, 1960)" + ], + "idBarcode": [ + "33433084149768" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149750" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474658", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149750" + } + ], + "enumerationChronology": [ + "v. 35 (Jan. 2-Feb. 13, 1960)" + ], + "idBarcode": [ + "33433084149750" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078804303" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078804303" + } + ], + "enumerationChronology": [ + "v. 35 (Nov. 21-Dec. 26, 1959)" + ], + "idBarcode": [ + "33433078804303" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078506965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078506965" + } + ], + "enumerationChronology": [ + "v. 35 (Apr 4-May 16 1959)" + ], + "idBarcode": [ + "33433078506965" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078264508" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078264508" + } + ], + "enumerationChronology": [ + "v. 35 (May-June 1959)" + ], + "idBarcode": [ + "33433078264508" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078506973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078506973" + } + ], + "enumerationChronology": [ + "v. 35 (July 4-Aug 15 1959)" + ], + "idBarcode": [ + "33433078506973" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078264490" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078264490" + } + ], + "enumerationChronology": [ + "v. 35 (Feb 21-Mar 28 1959)" + ], + "idBarcode": [ + "33433078264490" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078506999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078506999" + } + ], + "enumerationChronology": [ + "v. 35 (Oct 3-Nov 14 1959)" + ], + "idBarcode": [ + "33433078506999" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078506981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 35-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078506981" + } + ], + "enumerationChronology": [ + "v. 35 (Aug 22-Sept 26 1959)" + ], + "idBarcode": [ + "33433078506981" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149743" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474657", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149743" + } + ], + "enumerationChronology": [ + "v. 34 (Jan. 3-Feb. 14, 1959)" + ], + "idBarcode": [ + "33433084149743" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149719" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474654", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149719" + } + ], + "enumerationChronology": [ + "v. 34 (Aug. 23-Oct. 4, 1958)" + ], + "idBarcode": [ + "33433084149719" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149701" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474653", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149701" + } + ], + "enumerationChronology": [ + "v. 34 (July 13-Aug. 16, 1958)" + ], + "idBarcode": [ + "33433084149701" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149735" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474656", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149735" + } + ], + "enumerationChronology": [ + "v. 34 (Nov. 22-Dec. 27, 1958)" + ], + "idBarcode": [ + "33433084149735" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149727" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474655", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149727" + } + ], + "enumerationChronology": [ + "v. 34 (Oct. 11-Nov. 15, 1958)" + ], + "idBarcode": [ + "33433084149727" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149693" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474652", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149693" + } + ], + "enumerationChronology": [ + "v. 34 (May 24-July 5, 1958)" + ], + "idBarcode": [ + "33433084149693" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149685" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474651", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149685" + } + ], + "enumerationChronology": [ + "v. 34 (Apr. 12-May 17, 1958)" + ], + "idBarcode": [ + "33433084149685" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149677" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 34-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474650", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149677" + } + ], + "enumerationChronology": [ + "v. 34 (Feb. 22-Apr. 5, 1958)" + ], + "idBarcode": [ + "33433084149677" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149669" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474649", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149669" + } + ], + "enumerationChronology": [ + "v. 33 (Jan. 11-Feb. 15, 1958)" + ], + "idBarcode": [ + "33433084149669" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433104098797" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i29250588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433104098797" + } + ], + "enumerationChronology": [ + "v. 33 (Apr. 6- May 18, 1957)" + ], + "idBarcode": [ + "33433104098797" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149610" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474644", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149610" + } + ], + "enumerationChronology": [ + "v. 33 (July 6-Aug. 17, 1957)" + ], + "idBarcode": [ + "33433084149610" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149636" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474646", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149636" + } + ], + "enumerationChronology": [ + "v. 33 (Oct. 1957)" + ], + "idBarcode": [ + "33433084149636" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149594" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474642", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149594" + } + ], + "enumerationChronology": [ + "v. 33 (Feb. 23-Mar. 30, 1957)" + ], + "idBarcode": [ + "33433084149594" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149644" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474647", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149644" + } + ], + "enumerationChronology": [ + "v. 33 (Nov. 2-Nov. 23, 1957)" + ], + "idBarcode": [ + "33433084149644" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149651" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474648", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149651" + } + ], + "enumerationChronology": [ + "v. 33 (Nov. 30, 1957-Jan. 4, 1958)" + ], + "idBarcode": [ + "33433084149651" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149628" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474645", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149628" + } + ], + "enumerationChronology": [ + "v. 33 (aug. 24-Sept. 28, 1957)" + ], + "idBarcode": [ + "33433084149628" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149602" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 33-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474643", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149602" + } + ], + "enumerationChronology": [ + "v. 33 (May 25-June 29, 1957)" + ], + "idBarcode": [ + "33433084149602" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149586" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474641", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149586" + } + ], + "enumerationChronology": [ + "v. 32 (Jan. 5-Feb. 16, 1957)" + ], + "idBarcode": [ + "33433084149586" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149529" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474635", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149529" + } + ], + "enumerationChronology": [ + "v. 32 (Apr. 7-May 19, 1956)" + ], + "idBarcode": [ + "33433084149529" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149537" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474636", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149537" + } + ], + "enumerationChronology": [ + "v. 32 (May 26-June 30, 1956)" + ], + "idBarcode": [ + "33433084149537" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149578" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474640", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149578" + } + ], + "enumerationChronology": [ + "v. 32 (Nov. 17-Dec. 29, 1956)" + ], + "idBarcode": [ + "33433084149578" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149560" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474639", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149560" + } + ], + "enumerationChronology": [ + "v. 32 (Oct. 6-Nov. 10, 1956)" + ], + "idBarcode": [ + "33433084149560" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149511" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474634", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149511" + } + ], + "enumerationChronology": [ + "v. 32 (Feb. 18-Mar. 31, 1956)" + ], + "idBarcode": [ + "33433084149511" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149552" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474638", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149552" + } + ], + "enumerationChronology": [ + "v. 32 (Aug. 25-Sept. 29, 1956)" + ], + "idBarcode": [ + "33433084149552" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149545" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 32-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474637", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149545" + } + ], + "enumerationChronology": [ + "v. 32 (July 7-Aug. 18, 1956)" + ], + "idBarcode": [ + "33433084149545" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149495" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474633", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149495" + } + ], + "enumerationChronology": [ + "v. 31 (Jan.7-Feb. 11, 1956)" + ], + "idBarcode": [ + "33433084149495" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149453" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474628", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149453" + } + ], + "enumerationChronology": [ + "v. 31 (Feb. 19-Mar. 26, 1955)" + ], + "idBarcode": [ + "33433084149453" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433076830482" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474444", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433076830482" + } + ], + "enumerationChronology": [ + "v. 31 (Oct. 1-Nov. 12 1955)" + ], + "idBarcode": [ + "33433076830482" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149503" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474632", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149503" + } + ], + "enumerationChronology": [ + "v. 31 ((Apr. 2-May 14, 1955)" + ], + "idBarcode": [ + "33433084149503" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149461" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474629", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149461" + } + ], + "enumerationChronology": [ + "v. 31 (May 21-June 25, 1955)" + ], + "idBarcode": [ + "33433084149461" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149479" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474630", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149479" + } + ], + "enumerationChronology": [ + "v. 31 (July 12-Aug. 13, 1955)" + ], + "idBarcode": [ + "33433084149479" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149487" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474631", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149487" + } + ], + "enumerationChronology": [ + "v. 31 (Aug. 20-Sept. 24, 1955)" + ], + "idBarcode": [ + "33433084149487" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080030624" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 31-", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474452", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080030624" + } + ], + "enumerationChronology": [ + "v. 31" + ], + "idBarcode": [ + "33433080030624" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149446" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474627", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149446" + } + ], + "enumerationChronology": [ + "v. 30 (Jan. 1-Feb. 12, 1955)" + ], + "idBarcode": [ + "33433084149446" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149412" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474624", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149412" + } + ], + "enumerationChronology": [ + "v. 30 (Aug. 21-Sept. 25, 1954)" + ], + "idBarcode": [ + "33433084149412" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149420" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474625", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149420" + } + ], + "enumerationChronology": [ + "v. 30 (Nov. 20-Dec. 25, 1954)" + ], + "idBarcode": [ + "33433084149420" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149404" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474623", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149404" + } + ], + "enumerationChronology": [ + "v. 30 (July 3-Aug. 14, 1954)" + ], + "idBarcode": [ + "33433084149404" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149396" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474622", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149396" + } + ], + "enumerationChronology": [ + "v. 30 (May 22-June 26, 1954)" + ], + "idBarcode": [ + "33433084149396" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149438" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474626", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149438" + } + ], + "enumerationChronology": [ + "v. 30 (Oct. 2-Nov. 13, 1954)" + ], + "idBarcode": [ + "33433084149438" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149388" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474621", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149388" + } + ], + "enumerationChronology": [ + "v. 30 (Feb. 20-Mar. 27, 1954)" + ], + "idBarcode": [ + "33433084149388" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078258260" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 30-1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078258260" + } + ], + "enumerationChronology": [ + "v. 30 (Apr. 3-May 15 1954)" + ], + "idBarcode": [ + "33433078258260" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149339" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474616", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149339" + } + ], + "enumerationChronology": [ + "v. 29 (Apr. 4-May 16, 1953)" + ], + "idBarcode": [ + "33433084149339" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149362" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474619", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149362" + } + ], + "enumerationChronology": [ + "v. 29 (Aug. 27-Oct. 10, 1953)" + ], + "idBarcode": [ + "33433084149362" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433077598997" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474448", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433077598997" + } + ], + "enumerationChronology": [ + "v. 29 (Dec. 5, 1953-Feb. 13, 1954)" + ], + "idBarcode": [ + "33433077598997" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149354" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474618", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149354" + } + ], + "enumerationChronology": [ + "v. 29 (July 11-Aug. 22, 1953)" + ], + "idBarcode": [ + "33433084149354" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149347" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474617", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149347" + } + ], + "enumerationChronology": [ + "v. 29 (May 23-July 4, 1953)" + ], + "idBarcode": [ + "33433084149347" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149370" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474620", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149370" + } + ], + "enumerationChronology": [ + "v. 29 (Oct. 17-Nov. 28, 1953)" + ], + "idBarcode": [ + "33433084149370" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149321" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 29-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474615", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149321" + } + ], + "enumerationChronology": [ + "v. 29 (Feb. 21-Mar. 28, 1953)" + ], + "idBarcode": [ + "33433084149321" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149313" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474614", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149313" + } + ], + "enumerationChronology": [ + "v. 28 (Jan. 3-Feb. 14, 1953)" + ], + "idBarcode": [ + "33433084149313" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149305" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474613", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149305" + } + ], + "enumerationChronology": [ + "v. 28 (Nov. 29-Dec. 27, 1952)" + ], + "idBarcode": [ + "33433084149305" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149255" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474608", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149255" + } + ], + "enumerationChronology": [ + "v. 28 (Apr.5-May 17, 1952)" + ], + "idBarcode": [ + "33433084149255" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149263" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474609", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149263" + } + ], + "enumerationChronology": [ + "v. 28 (may 24-July 12, 1952)" + ], + "idBarcode": [ + "33433084149263" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149289" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474611", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149289" + } + ], + "enumerationChronology": [ + "v. 28 (Aug. 30-oCT. 11, 1952)" + ], + "idBarcode": [ + "33433084149289" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149248" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474607", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149248" + } + ], + "enumerationChronology": [ + "v. 28 (Feb. 23-Mar. 29, 1952)" + ], + "idBarcode": [ + "33433084149248" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149271" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474610", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149271" + } + ], + "enumerationChronology": [ + "v. 28 (July 19-Aug. 23, 1952)" + ], + "idBarcode": [ + "33433084149271" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149297" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 28-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474612", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149297" + } + ], + "enumerationChronology": [ + "v. 28 (Oct. 18-Nov. 22, 1952)" + ], + "idBarcode": [ + "33433084149297" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149230" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474606", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149230" + } + ], + "enumerationChronology": [ + "v. 27 (Jan. 12-Feb. 16, 1952)" + ], + "idBarcode": [ + "33433084149230" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149180" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474601", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149180" + } + ], + "enumerationChronology": [ + "v. 27 (Apr.5-May 12, 1951)" + ], + "idBarcode": [ + "33433084149180" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149222" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474605", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149222" + } + ], + "enumerationChronology": [ + "v. 27 (Dec. 1, 1951-Jan. 5, 1952)" + ], + "idBarcode": [ + "33433084149222" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149198" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474602", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149198" + } + ], + "enumerationChronology": [ + "v. 27 (May 19-June 30, 1951)" + ], + "idBarcode": [ + "33433084149198" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149214" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474604", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149214" + } + ], + "enumerationChronology": [ + "v. 27 (Oct. 13-Nov. 24, 1951)" + ], + "idBarcode": [ + "33433084149214" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149172" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474600", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149172" + } + ], + "enumerationChronology": [ + "v. 27 (Feb. 17-Mar, 31, 1951)" + ], + "idBarcode": [ + "33433084149172" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078744574" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 27-1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078744574" + } + ], + "enumerationChronology": [ + "v. 27 (Sept. 1-Oct. 6, 1951)" + ], + "idBarcode": [ + "33433078744574" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149123" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474595", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149123" + } + ], + "enumerationChronology": [ + "v. 26 (Apr. 15-May 20, 1950)" + ], + "idBarcode": [ + "33433084149123" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149131" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474596", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149131" + } + ], + "enumerationChronology": [ + "v. 26 (May 27-July 8, 1950)" + ], + "idBarcode": [ + "33433084149131" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149156" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474598", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149156" + } + ], + "enumerationChronology": [ + "v. 26 (Sept. 2-Oct. 7, 1950)" + ], + "idBarcode": [ + "33433084149156" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149149" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474597", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149149" + } + ], + "enumerationChronology": [ + "v. 26 (July 15-Aug. 26, 1950)" + ], + "idBarcode": [ + "33433084149149" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149115" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474594", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149115" + } + ], + "enumerationChronology": [ + "v. 26 (Feb. 25-Apr. 8, 1950)" + ], + "idBarcode": [ + "33433084149115" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149164" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 26-1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474599", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149164" + } + ], + "enumerationChronology": [ + "v. 26 (Dec. 9, 1950-Feb. 10, 1951)" + ], + "idBarcode": [ + "33433084149164" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149107" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474593", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149107" + } + ], + "enumerationChronology": [ + "v. 25 (Dec. 17, 1949-Feb. 18, 1950)" + ], + "idBarcode": [ + "33433084149107" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149065" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474589", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149065" + } + ], + "enumerationChronology": [ + "v. 25 (June 11-July 16, 1949)" + ], + "idBarcode": [ + "33433084149065" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149057" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149057" + } + ], + "enumerationChronology": [ + "v. 25 (Apr. 23-June 4, 1949)" + ], + "idBarcode": [ + "33433084149057" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149099" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474592", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149099" + } + ], + "enumerationChronology": [ + "v. 25 (Oct. 29-Dec. 10, 1949)" + ], + "idBarcode": [ + "33433084149099" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149081" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474591", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149081" + } + ], + "enumerationChronology": [ + "v. 25 (Sept. 17-Oct. 22, 1949)" + ], + "idBarcode": [ + "33433084149081" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149073" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474590", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149073" + } + ], + "enumerationChronology": [ + "v. 25 (July 23-Sept. 10, 1949)" + ], + "idBarcode": [ + "33433084149073" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149040" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 25-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474587", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149040" + } + ], + "enumerationChronology": [ + "v. 25 (Feb. 26-Apr. 16, 1949)" + ], + "idBarcode": [ + "33433084149040" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149032" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474586", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149032" + } + ], + "enumerationChronology": [ + "v. 24 (Jan.22-Feb. 19, 1949)" + ], + "idBarcode": [ + "33433084149032" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149008" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474583", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149008" + } + ], + "enumerationChronology": [ + "v. 24 (sept. 4-Oct. 16, 1948)" + ], + "idBarcode": [ + "33433084149008" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148992" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474582", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148992" + } + ], + "enumerationChronology": [ + "v. 24 (July 24-Aug. 28, 1948)" + ], + "idBarcode": [ + "33433084148992" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149024" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474585", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149024" + } + ], + "enumerationChronology": [ + "v. 24 (Dec. 4, 1948-Jan. 15, 1949" + ], + "idBarcode": [ + "33433084149024" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084149016" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474584", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084149016" + } + ], + "enumerationChronology": [ + "v. 24 (Oct. 23-Nov. 27, 1948)" + ], + "idBarcode": [ + "33433084149016" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148984" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474581", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148984" + } + ], + "enumerationChronology": [ + "v. 24 (May 29-July 17, 1948)" + ], + "idBarcode": [ + "33433084148984" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148976" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 24-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474580", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148976" + } + ], + "enumerationChronology": [ + "v. 24 (Apr. 10-May 22, 1948)" + ], + "idBarcode": [ + "33433084148976" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148950" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474578", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148950" + } + ], + "enumerationChronology": [ + "v. 23 (Jan. 10-Feb. 21, 1948)" + ], + "idBarcode": [ + "33433084148950" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148968" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474579", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148968" + } + ], + "enumerationChronology": [ + "v. 23 (Feb. 28-Apr. 3, 1948)" + ], + "idBarcode": [ + "33433084148968" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148901" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474573", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148901" + } + ], + "enumerationChronology": [ + "v. 23 (May 24-July 5, 1947)" + ], + "idBarcode": [ + "33433084148901" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148893" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474572", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148893" + } + ], + "enumerationChronology": [ + "v. 23 (Apr. 12-May 17, 1947)" + ], + "idBarcode": [ + "33433084148893" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148935" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474576", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148935" + } + ], + "enumerationChronology": [ + "v. 23 (Oct. 11-Nov. 15, 1947)" + ], + "idBarcode": [ + "33433084148935" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148943" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474577", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148943" + } + ], + "enumerationChronology": [ + "v. 23 (Nov. 22, 1947-Jan.3, 1948)" + ], + "idBarcode": [ + "33433084148943" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148919" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474574", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148919" + } + ], + "enumerationChronology": [ + "v. 23 (July 12-Aug. 16, 1947)" + ], + "idBarcode": [ + "33433084148919" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148885" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474571", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148885" + } + ], + "enumerationChronology": [ + "v. 23 (Feb. 22-Apr. 5, 1947)" + ], + "idBarcode": [ + "33433084148885" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148927" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 23-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474575", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148927" + } + ], + "enumerationChronology": [ + "v. 23 (Aug. 23-Oct. 4, 1947)" + ], + "idBarcode": [ + "33433084148927" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148877" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474570", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148877" + } + ], + "enumerationChronology": [ + "v. 22 (Jan. 4-Feb. 15, 1947" + ], + "idBarcode": [ + "33433084148877" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148810" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474564", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148810" + } + ], + "enumerationChronology": [ + "v. 22 (Apr. 6-May 11, 1946)" + ], + "idBarcode": [ + "33433084148810" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148869" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474569", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148869" + } + ], + "enumerationChronology": [ + "v. 22 (Nov. 16-Dec. 28, 1946)" + ], + "idBarcode": [ + "33433084148869" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148851" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474568", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148851" + } + ], + "enumerationChronology": [ + "v. 22 (Oct. 5-Nov. 9, 1946)" + ], + "idBarcode": [ + "33433084148851" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148828" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474565", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148828" + } + ], + "enumerationChronology": [ + "v. 22 (May 18-June 29, 1946)" + ], + "idBarcode": [ + "33433084148828" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148844" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474567", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148844" + } + ], + "enumerationChronology": [ + "v. 22 (Aug. 17-Sept. 28, 1946)" + ], + "idBarcode": [ + "33433084148844" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148802" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474563", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148802" + } + ], + "enumerationChronology": [ + "v. 22 (Feb. 16-Mar. 30, 1946)" + ], + "idBarcode": [ + "33433084148802" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148836" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 22-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474566", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148836" + } + ], + "enumerationChronology": [ + "v. 22 (July 6-Aug. 10, 1946)" + ], + "idBarcode": [ + "33433084148836" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148794" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474562", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148794" + } + ], + "enumerationChronology": [ + "v. 21 (Jan. 5-Feb. 9, 1946)" + ], + "idBarcode": [ + "33433084148794" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148786" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474561", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148786" + } + ], + "enumerationChronology": [ + "v. 21 (Nov. 24-Dec. 29, 1945)" + ], + "idBarcode": [ + "33433084148786" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148760" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474559", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148760" + } + ], + "enumerationChronology": [ + "v. 21 (aUG. 18-sEPT. 29, 1945)" + ], + "idBarcode": [ + "33433084148760" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148752" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474558", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148752" + } + ], + "enumerationChronology": [ + "v. 21 (July 7-Aug. 11, 1945)" + ], + "idBarcode": [ + "33433084148752" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148729" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474555", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148729" + } + ], + "enumerationChronology": [ + "v. 21 (Feb, 17-Mar. 31, 1945)" + ], + "idBarcode": [ + "33433084148729" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148745" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474557", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148745" + } + ], + "enumerationChronology": [ + "v. 21 (May 19-June 30, 1945)" + ], + "idBarcode": [ + "33433084148745" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148778" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474560", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148778" + } + ], + "enumerationChronology": [ + "v. 21 (Oct. 6-Nov.17, 1945)" + ], + "idBarcode": [ + "33433084148778" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148737" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 21-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474556", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148737" + } + ], + "enumerationChronology": [ + "v. 21 (Apr. 7-May 12, 1945)" + ], + "idBarcode": [ + "33433084148737" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148711" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1945", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474554", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148711" + } + ], + "enumerationChronology": [ + "v. 20 (Jan, 6-Feb. 10, 1945)" + ], + "idBarcode": [ + "33433084148711" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148687" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474551", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148687" + } + ], + "enumerationChronology": [ + "v. 20 (Aug 19-Sept. 30, 1944)" + ], + "idBarcode": [ + "33433084148687" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148661" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474549", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148661" + } + ], + "enumerationChronology": [ + "v. 20 (May 20-July 1, 1944)" + ], + "idBarcode": [ + "33433084148661" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148679" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474550", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148679" + } + ], + "enumerationChronology": [ + "v. 20 (July 8, -Aug 12,1944)" + ], + "idBarcode": [ + "33433084148679" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148653" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474548", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148653" + } + ], + "enumerationChronology": [ + "v. 20 (Apr. 8-May 13, 1944)" + ], + "idBarcode": [ + "33433084148653" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148646" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474547", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148646" + } + ], + "enumerationChronology": [ + "v. 20 ( Feb. 19-Apr.1, 1944)" + ], + "idBarcode": [ + "33433084148646" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148695" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474552", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148695" + } + ], + "enumerationChronology": [ + "v. 20 (Oct. 7-Nov. 11, 1944)" + ], + "idBarcode": [ + "33433084148695" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148703" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 20-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474553", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148703" + } + ], + "enumerationChronology": [ + "v. 20 (Nov. 18-Dec. 30, 1944)" + ], + "idBarcode": [ + "33433084148703" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148638" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1944", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474546", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148638" + } + ], + "enumerationChronology": [ + "v. 19 (Jan. 1-Feb. 12, 1944)" + ], + "idBarcode": [ + "33433084148638" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148562" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474539", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148562" + } + ], + "enumerationChronology": [ + "v. 19 (Feb. 20-Apr. 3, 1943)" + ], + "idBarcode": [ + "33433084148562" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148570" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474540", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148570" + } + ], + "enumerationChronology": [ + "v. 19 (Apr. 10-May 15, 1943)" + ], + "idBarcode": [ + "33433084148570" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148620" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474545", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148620" + } + ], + "enumerationChronology": [ + "v. 19 (Nov. 20-Dec. 25, 1943)" + ], + "idBarcode": [ + "33433084148620" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148596" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474542", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148596" + } + ], + "enumerationChronology": [ + "v. 19 (July 10-Aug. 14, 1943)" + ], + "idBarcode": [ + "33433084148596" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148588" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474541", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148588" + } + ], + "enumerationChronology": [ + "v. 19 (May 22-July 3, 1943)" + ], + "idBarcode": [ + "33433084148588" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148612" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474544", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148612" + } + ], + "enumerationChronology": [ + "v. 19 (Oct.9-Nov. 13, 1943)" + ], + "idBarcode": [ + "33433084148612" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148604" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 19-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474543", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148604" + } + ], + "enumerationChronology": [ + "v. 19 (Aug. 21-Oct. 2, 1943)" + ], + "idBarcode": [ + "33433084148604" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148554" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1943", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474538", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148554" + } + ], + "enumerationChronology": [ + "v. 18 (Jan. 9-Feb. 13, 1943)" + ], + "idBarcode": [ + "33433084148554" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148521" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474535", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148521" + } + ], + "enumerationChronology": [ + "v. 18 (May 23-June 27, 1942)" + ], + "idBarcode": [ + "33433084148521" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148513" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474534", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148513" + } + ], + "enumerationChronology": [ + "v. 18 (Feb.21-May 16, 1942)" + ], + "idBarcode": [ + "33433084148513" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148547" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474537", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148547" + } + ], + "enumerationChronology": [ + "v. 18 (Aug. 22-Oct. 3, 1942)" + ], + "idBarcode": [ + "33433084148547" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080068053" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474454", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080068053" + } + ], + "enumerationChronology": [ + "v. 18 (Oct. 10-Nov. 14, 1942)" + ], + "idBarcode": [ + "33433080068053" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148539" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474536", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148539" + } + ], + "enumerationChronology": [ + "v. 18 (July 4-Aug. 15, 1942)" + ], + "idBarcode": [ + "33433084148539" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078796426" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 18-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078796426" + } + ], + "enumerationChronology": [ + "v. 18 (Nov. 21, 1942-Jan. 2, 1943)" + ], + "idBarcode": [ + "33433078796426" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148505" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1942", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474533", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148505" + } + ], + "enumerationChronology": [ + "v. 17 (Jan.3-Feb. 14, 1942)" + ], + "idBarcode": [ + "33433084148505" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148489" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474531", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148489" + } + ], + "enumerationChronology": [ + "v. 17 (Oct. 4-Nov. 8, 1941)" + ], + "idBarcode": [ + "33433084148489" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148463" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474529", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148463" + } + ], + "enumerationChronology": [ + "v. 17 (June 7-Aug. 9, 1941)" + ], + "idBarcode": [ + "33433084148463" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148471" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474530", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148471" + } + ], + "enumerationChronology": [ + "v. 17 (Aug. 16-Sept. 27, 1941)" + ], + "idBarcode": [ + "33433084148471" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148497" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474532", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148497" + } + ], + "enumerationChronology": [ + "v. 17 (Nov. 15-Dec. 27, 1941)" + ], + "idBarcode": [ + "33433084148497" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148455" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474528", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148455" + } + ], + "enumerationChronology": [ + "v. 17 (Apr.5-May 10,1941)" + ], + "idBarcode": [ + "33433084148455" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148448" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 17-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474527", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148448" + } + ], + "enumerationChronology": [ + "v. 17 (Feb. 15-Mar. 29, 1941)" + ], + "idBarcode": [ + "33433084148448" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148430" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1941", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474526", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148430" + } + ], + "enumerationChronology": [ + "v. 16 (Jan.4-Feb. 8,1941)" + ], + "idBarcode": [ + "33433084148430" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148398" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474522", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148398" + } + ], + "enumerationChronology": [ + "v. 16 (June 29-Aug. 10, 1940)" + ], + "idBarcode": [ + "33433084148398" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148406" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474523", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148406" + } + ], + "enumerationChronology": [ + "v. 16 (aug. 17-Sept. 28, 1940)" + ], + "idBarcode": [ + "33433084148406" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148364" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474519", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148364" + } + ], + "enumerationChronology": [ + "v. 16 (Feb. 17-Mar.23, 1940)" + ], + "idBarcode": [ + "33433084148364" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148422" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474525", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148422" + } + ], + "enumerationChronology": [ + "v. 16 (Nov. 16-Dec. 28, 1940)" + ], + "idBarcode": [ + "33433084148422" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148372" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474520", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148372" + } + ], + "enumerationChronology": [ + "v. 16 (Mar. 30-May 11,1940)" + ], + "idBarcode": [ + "33433084148372" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148380" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474521", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148380" + } + ], + "enumerationChronology": [ + "v. 16 (May 13-June 22, 1940)" + ], + "idBarcode": [ + "33433084148380" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148414" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 16-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474524", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148414" + } + ], + "enumerationChronology": [ + "v. 16 (Oct. 5-Nov. 9, 1940)" + ], + "idBarcode": [ + "33433084148414" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148356" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1940", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474518", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148356" + } + ], + "enumerationChronology": [ + "v. 15 (Jan. 6-Feb 10,1940)" + ], + "idBarcode": [ + "33433084148356" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148216" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474512", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148216" + } + ], + "enumerationChronology": [ + "v. 15 (Feb.18-Apr. 1, 1939)" + ], + "idBarcode": [ + "33433084148216" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080035797" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474450", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080035797" + } + ], + "enumerationChronology": [ + "v. 15 (July 1-Aug. 12, 1939)" + ], + "idBarcode": [ + "33433080035797" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148224" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474513", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148224" + } + ], + "enumerationChronology": [ + "v. 15 (Apr. 29-June 24, 1939)" + ], + "idBarcode": [ + "33433084148224" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148232" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474515", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148232" + } + ], + "enumerationChronology": [ + "v. 15 (Aug. 19-Sept. 30, 1939)" + ], + "idBarcode": [ + "33433084148232" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148240" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474516", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148240" + } + ], + "enumerationChronology": [ + "v. 15 (Oct. 7-Nov. 11, 1939)" + ], + "idBarcode": [ + "33433084148240" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148257" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 15-1939", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474517", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148257" + } + ], + "enumerationChronology": [ + "v. 15 ((Nov. 18-Dec. 30, 1939)" + ], + "idBarcode": [ + "33433084148257" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078585183" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-1938", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474443", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078585183" + } + ], + "enumerationChronology": [ + "v. 14 (Feb. 19- Apr.23 1938)" + ], + "idBarcode": [ + "33433078585183" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078585175" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-1938", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474442", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078585175" + } + ], + "enumerationChronology": [ + "v. 14 April-July 2 1938)" + ], + "idBarcode": [ + "33433078585175" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078585167" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-1938", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474441", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078585167" + } + ], + "enumerationChronology": [ + "v. 14 Sept 10 - Nov 12 1938)" + ], + "idBarcode": [ + "33433078585167" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148208" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1938", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-1938", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474511", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148208" + } + ], + "enumerationChronology": [ + "v. 14 (Dec. 31, 1938-Feb. 11,1939)" + ], + "idBarcode": [ + "33433084148208" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078585142" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-1938", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474439", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078585142" + } + ], + "enumerationChronology": [ + "v. 14 (Nov 19-Dec 24 1938)" + ], + "idBarcode": [ + "33433078585142" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078585159" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 14-", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474440", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078585159" + } + ], + "enumerationChronology": [ + "v. 14 (July 9-Sept. 3)" + ], + "idBarcode": [ + "33433078585159" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 13-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474507", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148166" + } + ], + "enumerationChronology": [ + "v. 13 (May 1-July 3, 1937)" + ], + "idBarcode": [ + "33433084148166" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 13-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474509", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148182" + } + ], + "enumerationChronology": [ + "v. 13 (Oct. 9-Dec. 4, 1937)" + ], + "idBarcode": [ + "33433084148182" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 13-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474508", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148174" + } + ], + "enumerationChronology": [ + "v. 13 (July 10-Oct.2, 1937)" + ], + "idBarcode": [ + "33433084148174" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 13-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474506", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148158" + } + ], + "enumerationChronology": [ + "v. 13 (Feb. 20-Apr.24, 1937)" + ], + "idBarcode": [ + "33433084148158" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1938" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 13-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474510", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148190" + } + ], + "enumerationChronology": [ + "v. 13 (dec. 11, 1937-Feb. 12, 1938)" + ], + "idBarcode": [ + "33433084148190" + ], + "requestable": [ + false + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1937", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474505", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148141" + } + ], + "enumerationChronology": [ + "v. 12 (Jan. 2-Feb. 13, 1937)" + ], + "idBarcode": [ + "33433084148141" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1936", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474503", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148125" + } + ], + "enumerationChronology": [ + "v. 12 (Aug. 22-Nov. 14, 1936)" + ], + "idBarcode": [ + "33433084148125" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1936", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474502", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148117" + } + ], + "enumerationChronology": [ + "v. 12 (May 23-Aug.15, 1936)" + ], + "idBarcode": [ + "33433084148117" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1936", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474504", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148133" + } + ], + "enumerationChronology": [ + "v. 12 (Nov. 21-Dec. 26, 1936)" + ], + "idBarcode": [ + "33433084148133" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1936", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474501", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148109" + } + ], + "enumerationChronology": [ + "v. 12 (Apr.4-May 16. 1936)" + ], + "idBarcode": [ + "33433084148109" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 12-1936", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474500", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148091" + } + ], + "enumerationChronology": [ + "v. 12 (Feb. 22-Mar. 28, 1936)" + ], + "idBarcode": [ + "33433084148091" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148067" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474497", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148067" + } + ], + "enumerationChronology": [ + "v. 11 (Oct. 5-Nov. 9, 1935)" + ], + "idBarcode": [ + "33433084148067" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148059" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474496", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148059" + } + ], + "enumerationChronology": [ + "v. 11 (Aug. 17-Sept. 28, 1935)" + ], + "idBarcode": [ + "33433084148059" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078264482" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i16700902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078264482" + } + ], + "enumerationChronology": [ + "v. 11 (Feb 16-May 11 1935)" + ], + "idBarcode": [ + "33433078264482" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148042" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474495", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148042" + } + ], + "enumerationChronology": [ + "v. 11 (May 18-Aug. 10, 1935)" + ], + "idBarcode": [ + "33433084148042" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474499", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148083" + } + ], + "enumerationChronology": [ + "v. 11 (Dec. 28, 1935-Feb. 15, 1936)" + ], + "idBarcode": [ + "33433084148083" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148075" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 11-1935", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474498", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148075" + } + ], + "enumerationChronology": [ + "v. 11 (Nov. 11-Dec. 21, 1935)" + ], + "idBarcode": [ + "33433084148075" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148034" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474494", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148034" + } + ], + "enumerationChronology": [ + "v. 10 (Dec.8, 1934-Feb.9, 1935)" + ], + "idBarcode": [ + "33433084148034" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147986" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474489", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147986" + } + ], + "enumerationChronology": [ + "v. 10 (Feb. 17-Mar. 31, 1934)" + ], + "idBarcode": [ + "33433084147986" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147994" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474490", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147994" + } + ], + "enumerationChronology": [ + "v. 10 (Apr. 7-May 12, 1934)" + ], + "idBarcode": [ + "33433084147994" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148018" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474492", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148018" + } + ], + "enumerationChronology": [ + "v. 10 (Aug. 10-Oct. 6, 1934)" + ], + "idBarcode": [ + "33433084148018" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148000" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474491", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148000" + } + ], + "enumerationChronology": [ + "v. 10 (May 19-Aug. 11, 1934)" + ], + "idBarcode": [ + "33433084148000" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084148026" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 10-1934", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474493", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084148026" + } + ], + "enumerationChronology": [ + "v. 10 (Oct. 13-Dec.1, 1934)" + ], + "idBarcode": [ + "33433084148026" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147978" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1933", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 9-1933", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474488", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147978" + } + ], + "enumerationChronology": [ + "v. 9 (Nov. 18, 1933-Feb. 10, 1934)" + ], + "idBarcode": [ + "33433084147978" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147952" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 9-1933", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474486", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147952" + } + ], + "enumerationChronology": [ + "v. 9 (may 20-Aug. 12, 1933)" + ], + "idBarcode": [ + "33433084147952" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147945" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 9-1933", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474485", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147945" + } + ], + "enumerationChronology": [ + "v. 9 (Feb. 18-May 13, 1933)" + ], + "idBarcode": [ + "33433084147945" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147960" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 9-1933", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474487", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147960" + } + ], + "enumerationChronology": [ + "v. 9 (Aug. 19-Nov. 11, 1933)" + ], + "idBarcode": [ + "33433084147960" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147903" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 8-1932", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474481", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147903" + } + ], + "enumerationChronology": [ + "v. 8 (Feb. 20-May 12, 1932)" + ], + "idBarcode": [ + "33433084147903" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147911" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 8-1932", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474482", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147911" + } + ], + "enumerationChronology": [ + "v. 8 (May 21-Aug. 13, 1932)" + ], + "idBarcode": [ + "33433084147911" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147937" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1932", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 8-1932", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474484", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147937" + } + ], + "enumerationChronology": [ + "v. 8 (Nov. 19, 1932-Feb. 11, 1933)" + ], + "idBarcode": [ + "33433084147937" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147929" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 8-1932", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474483", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147929" + } + ], + "enumerationChronology": [ + "v. 8 (Aug. 20-Nov. 12, 1932)" + ], + "idBarcode": [ + "33433084147929" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079523332" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1931", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 7-1931", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474455", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079523332" + } + ], + "enumerationChronology": [ + "v. 7 (Nov. 21, 1931-Feb. 13, 1932)" + ], + "idBarcode": [ + "33433079523332" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147895" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 7-1931", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474480", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147895" + } + ], + "enumerationChronology": [ + "v. 7 (Aug. 22-Nov. 14, 1931)" + ], + "idBarcode": [ + "33433084147895" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147887" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 7-1931", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474479", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147887" + } + ], + "enumerationChronology": [ + "v. 7 (June 13-Aug. 15, 1931)" + ], + "idBarcode": [ + "33433084147887" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147861" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 7-1931", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474477", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147861" + } + ], + "enumerationChronology": [ + "v. 7 (Feb 21-Apr. 11, 1931)" + ], + "idBarcode": [ + "33433084147861" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147879" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 7-1931", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474478", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147879" + } + ], + "enumerationChronology": [ + "v. 7 (Apr. 18-June 6, 1931)" + ], + "idBarcode": [ + "33433084147879" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147820" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 6-1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474473", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147820" + } + ], + "enumerationChronology": [ + "v. 6 (Jan.4-Mar. 8, 1930)" + ], + "idBarcode": [ + "33433084147820" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147846" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 6-1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474475", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147846" + } + ], + "enumerationChronology": [ + "v. 6 (Nov.1-Dec. 27, 1930)" + ], + "idBarcode": [ + "33433084147846" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147838" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 6-1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474474", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147838" + } + ], + "enumerationChronology": [ + "v. 6 (Mar. 15-May 10, 1930)" + ], + "idBarcode": [ + "33433084147838" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147853" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 6-1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474476", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147853" + } + ], + "enumerationChronology": [ + "v. 6 (Dec. 27, 1930-Feb. 14, 1931)" + ], + "idBarcode": [ + "33433084147853" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147812" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 5-1929", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474472", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147812" + } + ], + "enumerationChronology": [ + "v. 5 (Nov. 9-Dec. 28, 1929)" + ], + "idBarcode": [ + "33433084147812" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147770" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 5-1929", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474468", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147770" + } + ], + "enumerationChronology": [ + "v. 5 (Jan. 5-Mar. 23, 1929)" + ], + "idBarcode": [ + "33433084147770" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147804" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 5-1929", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474471", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147804" + } + ], + "enumerationChronology": [ + "v. 5 (Sept. 7-Nov. 2, 1929)" + ], + "idBarcode": [ + "33433084147804" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147788" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 5-1929", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474469", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147788" + } + ], + "enumerationChronology": [ + "v. 5 (Mar. 30-June 1, 1929)" + ], + "idBarcode": [ + "33433084147788" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147796" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 5-1929", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474470", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147796" + } + ], + "enumerationChronology": [ + "v. 5 (June 8-Aug. 31, 1929)" + ], + "idBarcode": [ + "33433084147796" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147747" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1928", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 4-1928", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474466", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147747" + } + ], + "enumerationChronology": [ + "v. 4 (May 26-Sept. 8, 1928)" + ], + "idBarcode": [ + "33433084147747" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147754" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1928", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 4-1928", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474467", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147754" + } + ], + "enumerationChronology": [ + "v. 4 (Sept. 15-Dec. 29, 1928)" + ], + "idBarcode": [ + "33433084147754" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) copy 2", + "urn:barcode:33433080034691" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) copy 000002", + "dateRange": [ + { + "gte": "1927", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-1927", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) copy 2" + ], + "uri": "i17474449", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) copy 2" + }, + { + "type": "bf:Barcode", + "value": "33433080034691" + } + ], + "enumerationChronology": [ + "v. 3 (Dec. 31, 1927-Feb. 18, 1928)" + ], + "idBarcode": [ + "33433080034691" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147739" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-1927", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474465", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147739" + } + ], + "enumerationChronology": [ + "v. 3 (Aug. 20-Nov. 12, 1927)" + ], + "idBarcode": [ + "33433084147739" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147713" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-1927", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474463", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147713" + } + ], + "enumerationChronology": [ + "v. 3 (Apr.9-May 14, 1927)" + ], + "idBarcode": [ + "33433084147713" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147705" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-1927", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474462", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147705" + } + ], + "enumerationChronology": [ + "v. 3 (Feb. 19-Apr. 2, 1927)" + ], + "idBarcode": [ + "33433084147705" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147721" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-1927", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474464", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147721" + } + ], + "enumerationChronology": [ + "v. 3 (May 21-Aug 13, 1927)" + ], + "idBarcode": [ + "33433084147721" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080030632" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 3-", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474451", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080030632" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433080030632" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147663" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 2-1926", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474460", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147663" + } + ], + "enumerationChronology": [ + "v. 2 (Aug. 21, 1926-Nov. 13, 1926)" + ], + "idBarcode": [ + "33433084147663" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147697" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1926", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 2-1926", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474461", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147697" + } + ], + "enumerationChronology": [ + "v. 2 (Nov. 20, 1926-Feb. 12, 1927)" + ], + "idBarcode": [ + "33433084147697" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147671" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 2-1926", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474458", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147671" + } + ], + "enumerationChronology": [ + "v. 2 (Feb. 20, 1926-May 22, 1926)" + ], + "idBarcode": [ + "33433084147671" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433084147689" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 2-1926", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474459", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433084147689" + } + ], + "enumerationChronology": [ + "v. 2 (May 22, 1926-Aug. 14, 1926)" + ], + "idBarcode": [ + "33433084147689" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433077539629" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1925", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " 1-1925", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474445", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433077539629" + } + ], + "enumerationChronology": [ + "v. 1 (Aug. 1925-Feb. 1926) (inc.)" + ], + "idBarcode": [ + "33433077539629" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433099611158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2009", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " -2009", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i28878942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433099611158" + } + ], + "enumerationChronology": [ + "Dec 7, 2009-Feb. 8, 2010" + ], + "idBarcode": [ + "33433099611158" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433078638966" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " -1994", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474401", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433078638966" + } + ], + "enumerationChronology": [ + "Apr. 1994" + ], + "idBarcode": [ + "33433078638966" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022329" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474964", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022329" + } + ], + "enumerationChronology": [ + "July-Sept. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022329" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022337" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474963", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022337" + } + ], + "enumerationChronology": [ + "Apr.-June 1963 (second copy)" + ], + "idBarcode": [ + "33433085022337" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022451" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474951", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022451" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022451" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022428" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1963", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474954", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022428" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022428" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022386" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022386" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022386" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022378" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474959", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022378" + } + ], + "enumerationChronology": [ + "July-Sept. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022378" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022360" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474960", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022360" + } + ], + "enumerationChronology": [ + "Apr.-June 1961 (second copy)" + ], + "idBarcode": [ + "33433085022360" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022444" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1961", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474952", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022444" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022444" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022402" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474956", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022402" + } + ], + "enumerationChronology": [ + "Sept.-Oct. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022402" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474941", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022055" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022055" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022121" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474934", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022121" + } + ], + "enumerationChronology": [ + "Apr.-June 1960 (second copy)" + ], + "idBarcode": [ + "33433085022121" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022394" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474957", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022394" + } + ], + "enumerationChronology": [ + "July-Aug. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022394" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022436" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1960", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022436" + } + ], + "enumerationChronology": [ + "Nov.-Dec. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022436" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022501" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474946", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022501" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022501" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022014" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474945", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022014" + } + ], + "enumerationChronology": [ + "Apr.-June 1959 (second copy)" + ], + "idBarcode": [ + "33433085022014" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022485" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022485" + } + ], + "enumerationChronology": [ + "July-Sept. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022485" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022113" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1959", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022113" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022113" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022022" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474944", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022022" + } + ], + "enumerationChronology": [ + "July-Sept. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022022" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022030" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474943", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022030" + } + ], + "enumerationChronology": [ + "Apr.-June 1958 (second copy)" + ], + "idBarcode": [ + "33433085022030" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022048" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022048" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022493" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1958", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474947", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022493" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022493" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022089" + } + ], + "enumerationChronology": [ + "July-Sept. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022089" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474940", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022063" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022063" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022105" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022105" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1957", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474937", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022097" + } + ], + "enumerationChronology": [ + "Apr.-June 1957 (second copy)" + ], + "idBarcode": [ + "33433085022097" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022477" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474949", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022477" + } + ], + "enumerationChronology": [ + "Apr.-June 1956 (second copy)" + ], + "idBarcode": [ + "33433085022477" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474939", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022071" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1956 (second copy)" + ], + "idBarcode": [ + "33433085022071" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022469" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1956", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474950", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022469" + } + ], + "enumerationChronology": [ + "July-Sept. 1956 (second copy)" + ], + "idBarcode": [ + "33433085022469" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022147" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022147" + } + ], + "enumerationChronology": [ + "Apr.-June 1955 (second copy)" + ], + "idBarcode": [ + "33433085022147" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022154" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474931", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022154" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1955 (second copy)" + ], + "idBarcode": [ + "33433085022154" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022139" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1955", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474933", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022139" + } + ], + "enumerationChronology": [ + "July-Sept. 1955 (second copy)" + ], + "idBarcode": [ + "33433085022139" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022162" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022162" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022162" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022196" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474927", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022196" + } + ], + "enumerationChronology": [ + "Apr. -June 1954 (second copy)" + ], + "idBarcode": [ + "33433085022196" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022188" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474928", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022188" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022188" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022212" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474924", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022212" + } + ], + "enumerationChronology": [ + "July-Sept. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022212" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022204" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1954", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474926", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022204" + } + ], + "enumerationChronology": [ + "Apr.-June 1954 (second copy)" + ], + "idBarcode": [ + "33433085022204" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474982", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509174" + } + ], + "enumerationChronology": [ + "Mar.-Apr. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509174" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022170" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474929", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022170" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1953 (second copy)" + ], + "idBarcode": [ + "33433085022170" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509182" + } + ], + "enumerationChronology": [ + "Jan.-Feb. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509182" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509166" + } + ], + "enumerationChronology": [ + "July-Sept. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509166" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085021792" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1953", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085021792" + } + ], + "enumerationChronology": [ + "May-June 1953 (second copy)" + ], + "idBarcode": [ + "33433085021792" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474984", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509158" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509158" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474985", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509141" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509141" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1952", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474986", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509133" + } + ], + "enumerationChronology": [ + "July-Sept. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509133" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474980", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509190" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1951 (second copy)" + ], + "idBarcode": [ + "33433079509190" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509208" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474979", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509208" + } + ], + "enumerationChronology": [ + "July-Sept. 1951 (second copy)" + ], + "idBarcode": [ + "33433079509208" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509216" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474978", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509216" + } + ], + "enumerationChronology": [ + "Apr.-June 1951 (second copy)" + ], + "idBarcode": [ + "33433079509216" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509224" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1951", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474977", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509224" + } + ], + "enumerationChronology": [ + "Jan.-Mar 1951 (second copy)" + ], + "idBarcode": [ + "33433079509224" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509257" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509257" + } + ], + "enumerationChronology": [ + "Apr.-June 1950 (second copy)" + ], + "idBarcode": [ + "33433079509257" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509240" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474975", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509240" + } + ], + "enumerationChronology": [ + "July-Sept. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509240" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509232" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474976", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509232" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509232" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1950", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474987", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509125" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509125" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509109" + } + ], + "enumerationChronology": [ + "July-Sept. 1949 (second copy)" + ], + "idBarcode": [ + "33433079509109" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022311" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474965", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022311" + } + ], + "enumerationChronology": [ + "Apr.-June 1949 (second copy)" + ], + "idBarcode": [ + "33433085022311" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022303" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474966", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022303" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1949 (second copy)" + ], + "idBarcode": [ + "33433085022303" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433079509117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1949", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474988", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433079509117" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1949 (second copy)" + ], + "idBarcode": [ + "33433079509117" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022287" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022287" + } + ], + "enumerationChronology": [ + "July-Sept. 1948 (second copy)" + ], + "idBarcode": [ + "33433085022287" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022279" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474969", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022279" + } + ], + "enumerationChronology": [ + "Jan.-Mar 1948 (second copy)" + ], + "idBarcode": [ + "33433085022279" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022261" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022261" + } + ], + "enumerationChronology": [ + "Apr.-June 1948 (second copy)" + ], + "idBarcode": [ + "33433085022261" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022295" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1948", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474967", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022295" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1948 (second copy)" + ], + "idBarcode": [ + "33433085022295" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022741" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474972", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022741" + } + ], + "enumerationChronology": [ + "July-Sept. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022741" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022758" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474971", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022758" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022758" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022733" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1947", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474973", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022733" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022733" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022345" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474962", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022345" + } + ], + "enumerationChronology": [ + "Apr.-June 1946 (second copy)" + ], + "idBarcode": [ + "33433085022345" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022352" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474961", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022352" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1946 (second copy)" + ], + "idBarcode": [ + "33433085022352" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433085022410" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": " -1946", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17474955", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433085022410" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1946 (second copy)" + ], + "idBarcode": [ + "33433085022410" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080388212" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " -1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17586831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080388212" + } + ], + "enumerationChronology": [ + "May 17-Aug. 2 (1930)" + ], + "idBarcode": [ + "33433080388212" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:barcode:33433080388063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": " -1930", + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i17586830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "bf:Barcode", + "value": "33433080388063" + } + ], + "enumerationChronology": [ + "Aug. 9-Oct. 25 (1930)" + ], + "idBarcode": [ + "33433080388063" + ], + "requestable": [ + true + ], + "collectionId": [ + "mal" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "E-video" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + } + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Latest issue consulted", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + }, + { + "noteType": "Local note", + "label": "Library also has an additional copy on microfilm and a DVD version cataloged as: The complete New Yorker.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 796 + ], + "numItemsTotal": [ + 801 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 731 + ], + "createdString": [ + "1925" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "popularity": 957, + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "contributor_sort": [ + "ross, harold wallace, 1892-1951" + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 97 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "title_sort": [ + "the new yorker" + ], + "dateString": [ + "1925" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "parallelContributorLiteral": [ + null, + null, + null, + null, + null, + null, + null, + null + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 669 + }, + { + "key": "rc", + "doc_count": 132 + } + ] + } + }, + "item_format": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "E-video", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 75 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 22 + } + ] + } + }, + "item_status": { + "doc_count": 801, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 37 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:t||In transit", + "doc_count": 2 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:na||Not available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-f5b25febceec42a13279a4526cdbaa2d.json b/test/fixtures/query-f5b25febceec42a13279a4526cdbaa2d.json new file mode 100644 index 00000000..3036a1e7 --- /dev/null +++ b/test/fixtures/query-f5b25febceec42a13279a4526cdbaa2d.json @@ -0,0 +1,604 @@ +{ + "took": 24, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.761814, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b13966759", + "_score": 15.761814, + "_source": { + "extent": [ + "418 p. : ill., facsims., ports. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel" + ], + "parallelPublisherLiteral": [ + "‏ועד ארגון יוצאי חורוסטוב בישראל" + ], + "language": [ + { + "id": "lang:heb", + "label": "Hebrew" + } + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1968 + ], + "parallelNote": [ + { + "noteType": "Note", + "label": "\"הערות ומקורות\": p.19-20.", + "type": "bf:Note" + } + ], + "parallelSeriesAddedEntry": [], + "parallelTitle": [ + "‏ספר חורוסטוב = Chrostkow book" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)", + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "idLccn": [ + "he 68003086" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1968 + ], + "parallelContributors_displayPacked": [ + "שטאקפיש, דוד||‏שטאקפיש, דוד" + ], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" + }, + { + "type": "bf:ShelfMark", + "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + }, + { + "type": "nypl:Bnumber", + "value": "13966759" + }, + { + "type": "nypl:Oclc", + "value": "19207169" + }, + { + "type": "nypl:Oclc", + "value": "NYPH98-B4722" + }, + { + "type": "bf:Lccn", + "value": "he 68003086" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0553876" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)19207169" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [ + "Sztokfisz, David||Sztokfisz, David" + ], + "updatedAt": 1782199438405, + "publicationStatement": [ + "Tel Aviv : Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel, 1968." + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)", + "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "urn:bnum:13966759", + "urn:oclc:19207169", + "urn:oclc:NYPH98-B4722", + "urn:lccn:he 68003086", + "urn:identifier:(WaOLN)nyp0553876", + "urn:identifier:(OCoLC)19207169" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "1969", + "gte": "1968" + }, + "raw": "981221s1968 is ach 000 0dheb dcam a ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Jews -- Ukraine -- Khorostkov -- History.", + "Holocaust, Jewish (1939-1945) -- Ukraine -- Khorostkov.", + "Khorostkov (Ukraine) -- Ethnic relations." + ], + "parallelPublicationStatement": [ + "‏תל אביב : ועד ארגון יוצאי חורוסטוב בישראל, 8691." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "DS135.R93 K42 1968" + ], + "parallelPlaceOfPublication": [ + "‏תל אביב" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "maf" + ], + "titleAlt": [ + "Horosṭḳov; sefer zikaron" + ], + "physicalDescription": [ + "418 p. : ill., facsims., ports. ; 25 cm." + ], + "note": [ + { + "noteType": "Note", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hebrew orYiddish.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 2 + ], + "title": [ + "Sefer Ḥorosṭḳov = Chorostkow book" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1968" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 2 + ], + "contributorLiteral": [ + "Sztokfisz, David" + ], + "idOclc": [ + "19207169", + "NYPH98-B4722" + ], + "parallelTitleAlt": [ + "‏חורוסטקוב; ספר-זכרון" + ], + "genreForm": [ + "Memorial books (Holocaust)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "titleDisplay": [ + "Sefer Ḥorosṭḳov = Chorostkow book / ha-ʻorekh, Daṿid Shṭoḳfish." + ], + "uri": "b13966759", + "parallelContributorLiteral": [ + "שטאקפיש, דוד" + ], + "electronicResources": [ + { + "label": "NYPL Digital Collections", + "url": "https://digitalcollections.nypl.org/items/f9706f90-64a7-0133-547d-00505686a51c" + }, + { + "label": "Yiddish Book Center", + "url": "https://www.yiddishbookcenter.org/collections/yizkor-books/yzk-nybc313724" + } + ], + "recordTypeId": "a", + "parallelTitleDisplay": [ + "‏ספר חורוסטוב = Chrostkow book / העורך, דוד שטאקפיש." + ], + "placeOfPublication": [ + "Tel Aviv" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b13966759", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "collectionId": [ + "maf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + }, + "sort": [ + null + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b13966759", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "collectionId": [ + "maf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:maff3", + "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" + ], + "identifier": [ + "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "urn:barcode:33433084745110" + ], + "identifierV2": [ + { + "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084745110", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433084745110" + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "shelfMark_sort": "aDesk-JWS (Yizkor books. Reprint. Khorostkov)", + "status": [ + { + "id": "status:o", + "label": "Use in library" + } + ], + "status_packed": [ + "status:o||Use in library" + ], + "type": [ + "bf:Item" + ], + "uri": "i25791623" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b13966759", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "collectionId": [ + "maf" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "ma", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 2 + } + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + }, + { + "key": "status:o||Use in library", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-f8e16908d6219a2f6079450b24e200ad.json b/test/fixtures/query-f8e16908d6219a2f6079450b24e200ad.json new file mode 100644 index 00000000..88d3f0e5 --- /dev/null +++ b/test/fixtures/query-f8e16908d6219a2f6079450b24e200ad.json @@ -0,0 +1,384 @@ +{ + "took": 13, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10628074", + "_score": 15.769638, + "_source": { + "extent": [ + "387 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Scolar Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1979 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JLD 80-944" + ], + "idLccn": [ + "79322081" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1979 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [ + null + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLD 80-944" + }, + { + "type": "nypl:Bnumber", + "value": "10628074" + }, + { + "type": "bf:Isbn", + "value": "0859674614" + }, + { + "type": "nypl:Oclc", + "value": "5330384" + }, + { + "type": "nypl:Oclc", + "value": "NYPG804170330-B" + }, + { + "type": "bf:Lccn", + "value": "79322081" + }, + { + "type": "bf:Identifier", + "value": "NN804170330" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0633800" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5330384" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782148246280, + "publicationStatement": [ + "London : Scolar Press, 1979." + ], + "identifier": [ + "urn:shelfmark:JLD 80-944", + "urn:bnum:10628074", + "urn:isbn:0859674614", + "urn:oclc:5330384", + "urn:oclc:NYPG804170330-B", + "urn:lccn:79322081", + "urn:identifier:NN804170330", + "urn:identifier:(WaOLN)nyp0633800", + "urn:identifier:(OCoLC)5330384" + ], + "creators_displayPacked": [ + "Burnett, John, 1925-||Burnett, John, 1925-" + ], + "dates": [ + { + "range": { + "lt": "1980", + "gte": "1979" + }, + "raw": "800225s1979 enk 00| 0|eng| cam ", + "tag": "s" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "parallelSeriesAddedEntry_displayPacked": [], + "lccClassification": [ + "TX360.G7 B8 1979" + ], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "physicalDescription": [ + "387 p. ; 21 cm." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 1 + ], + "title": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1979" + ], + "creatorLiteral": [ + "Burnett, John, 1925-" + ], + "numElectronicResources": [ + 0 + ], + "idOclc": [ + "5330384", + "NYPG804170330-B" + ], + "popularity": 9, + "idIsbn": [ + "0859674614" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "titleDisplay": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "uri": "b10628074", + "parallelContributorLiteral": [], + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ], + "idIsbn_clean": [ + "0859674614" + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b10628074", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "collectionId": [ + "mal" + ], + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:JLD 80-944", + "urn:barcode:33433080108636" + ], + "identifierV2": [ + { + "value": "JLD 80-944", + "type": "bf:ShelfMark" + }, + { + "value": "33433080108636", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433080108636" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLD 80-944" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JLD 80-944" + ], + "shelfMark_sort": "aJLD 80-000944", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i15761885" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } +} \ No newline at end of file From d591501ba2a90715d0e8b9008fddc5cfa13d2bd0 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Fri, 10 Jul 2026 12:21:55 -0400 Subject: [PATCH 03/11] Updating tests to reflect response changes? --- test/resources-responses.test.js | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index a93b6042..cf4472cb 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -28,7 +28,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.items.length).to.equal(41) + expect(doc.items.length).to.equal(37) done() }) }) @@ -63,7 +63,7 @@ describe('Test Resources responses', function () { // are not returned from ES at the beginning of the items array, but // should end up sorted there by the response massager. expect(firstTenItems.every(isCheckinCardItem)) - expect(doc.items[0].enumerationChronology[0]).to.equal('Vol. 100 No. 44 (Dec. 30, 2024)') + expect(doc.items[0].enumerationChronology[0]).to.equal('Vol. 100 No. 9 (Apr. 15, 2024)') const lastIndex = doc.items.length - 1 expect(doc.items[lastIndex].enumerationChronology[0]).to.equal('Aug. 9-Oct. 25 (1930)') done() @@ -98,7 +98,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.be.greaterThan(704) + expect(doc.numItemsMatched).to.be.greaterThan(703) done() }) }) @@ -147,6 +147,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) + expect(doc.numItemsMatched).to.equal(4) done() }) @@ -156,7 +157,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(4) + expect(doc.numItemsMatched).to.equal(0) done() }) }) @@ -165,7 +166,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(1) + expect(doc.numItemsMatched).to.equal(0) done() }) }) @@ -174,7 +175,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(4) + expect(doc.numItemsMatched).to.equal(0) done() }) }) @@ -183,7 +184,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(4) + expect(doc.numItemsMatched).to.equal(0) done() }) }) @@ -336,7 +337,7 @@ describe('Test Resources responses', function () { .filter((ent) => ent['@type'] === 'bf:ShelfMark') .pop() expect(callnum).to.be.a('object') - expect(callnum['@value']).to.equal('JFE 86-498 v. 1') + expect(callnum['@value']).to.equal('JFE 86-498') // Check item barcode: const barcode = itemOfInterest.identifier @@ -411,12 +412,12 @@ describe('Test Resources responses', function () { const doc = JSON.parse(body) expect(doc.note).to.be.a('array') - expect(doc.note).to.have.lengthOf(5) + expect(doc.note).to.have.lengthOf(4) expect(doc.note[2]).to.be.a('object') expect(doc.note[2]['@type']).to.equal('bf:Note') expect(doc.note[2].noteType).to.equal('Additional Formats') - expect(doc.note[2].prefLabel).to.equal('Also available on microform;') + expect(doc.note[2].prefLabel).to.equal('Also available on microform; service copy classmark: *ZO-867 no. 1.') done() }) From 989f63921a50ce5c3c49a630b2f80804829a355d Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Fri, 10 Jul 2026 12:28:25 -0400 Subject: [PATCH 04/11] Schomburg label --- data/buildingLocations.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/buildingLocations.json b/data/buildingLocations.json index 9a52d343..470c095c 100644 --- a/data/buildingLocations.json +++ b/data/buildingLocations.json @@ -1 +1 @@ -[{ "value": "ma", "label": "Stephen A. Schwarzman Building (SASB)", "shortLabel": "Stephen A. Schwarzman Building", "nickname": "SASB" }, { "value": "pa", "shortLabel": "The New York Public Library for the Performing Arts", "label": "The New York Public Library for the Performing Arts (LPA)","nickname": "LPA" },{ "value": "sc", "label": "Schomburg Center for Research in Black Culture","nickname": "Schomburg" },{ "value": "rc", "label": "Offsite - request in advance", "shortLabel": "Offsite"},{ "value": "bu", "label": "Stavros Niarchos Foundation Library (SNFL)", "shortLabel": "Stavros Niarchos Foundation Library", "nickname": "SNFL" }] \ No newline at end of file +[{ "value": "ma", "label": "Stephen A. Schwarzman Building (SASB)", "shortLabel": "Stephen A. Schwarzman Building", "nickname": "SASB" }, { "value": "pa", "shortLabel": "The New York Public Library for the Performing Arts", "label": "The New York Public Library for the Performing Arts (LPA)","nickname": "LPA" },{ "value": "sc", "label": "Schomburg Center for Research in Black Culture", "shortLabel": "Schomburg Center for Research in Black Culture", "nickname": "Schomburg" },{ "value": "rc", "label": "Offsite - request in advance", "shortLabel": "Offsite"},{ "value": "bu", "label": "Stavros Niarchos Foundation Library (SNFL)", "shortLabel": "Stavros Niarchos Foundation Library", "nickname": "SNFL" }] \ No newline at end of file From 2e07ad1d9d57209d76b7d1024e0809692ff1b779 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:10:48 -0400 Subject: [PATCH 05/11] Moving scripts out --- lib/resources.js | 8 +++----- lib/util.js | 7 +++++++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/resources.js b/lib/resources.js index 8a97aff4..98d9fb3b 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -15,7 +15,7 @@ const { IndexSearchError, IndexConnectionError, InvalidQuerySyntaxError } = requ const ResponseMassager = require('./response_massager.js') const AvailableDeliveryLocationTypes = require('./available_delivery_location_types') -const { parseParams, deepValue } = require('../lib/util') +const { parseParams, deepValue, ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('../lib/util') const ApiRequest = require('./api-request') const ElasticQueryBuilder = require('./elasticsearch/elastic-query-builder') @@ -34,9 +34,7 @@ const ITEM_FILTER_AGGREGATIONS = { _nested: { terms: { size: 100, - script: { - source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return null; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return null; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return null; def parentLoc = locId.substring(0, 2); if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;" - } + script: { source: ITEM_LOCATION_AGG_SCRIPT } } } } @@ -503,7 +501,7 @@ module.exports = function (app, _private = null) { return { script: { script: { - source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", + source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations } diff --git a/lib/util.js b/lib/util.js index 636d95ba..52f2fa8c 100644 --- a/lib/util.js +++ b/lib/util.js @@ -358,3 +358,10 @@ exports.isInRecap = (item) => { exports.regexEscape = function (str) { return str.replace(/[-/\\^$*+?.()|[\]{}]/g, (match) => { return '\\' + match }) } + +/** + * Parent location values from holidng location, for item location filter/aggs + */ +const buildLocationScript = (returnOnFailure, returnOnSuccess) => `def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return ${returnOnFailure}; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return ${returnOnFailure}; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return ${returnOnFailure}; def parentLoc = locId.substring(0, 2); ${returnOnSuccess}` +export const ITEM_LOCATION_AGG_SCRIPT = buildLocationScript('null', "if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;") +export const ITEM_LOCATION_FILTER_SCRIPT = buildLocationScript('false', "return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);") From 8e4af59ba2686ddcdac29ed454b3e353ceafab22 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:10:59 -0400 Subject: [PATCH 06/11] Fixing resource tests more thoughtfully --- ...uery-d21853a81ec0e524f47167a9a3c2811b.json | 1364 +++++++++++++++++ ...uery-ea81f5cbb07d17f7cb33a084cc9d193e.json | 1364 +++++++++++++++++ ...uery-fc8e68a34e33761bb5b4cc0cd043f396.json | 1037 +++++++++++++ test/resources-responses.test.js | 18 +- 4 files changed, 3774 insertions(+), 9 deletions(-) create mode 100644 test/fixtures/query-d21853a81ec0e524f47167a9a3c2811b.json create mode 100644 test/fixtures/query-ea81f5cbb07d17f7cb33a084cc9d193e.json create mode 100644 test/fixtures/query-fc8e68a34e33761bb5b4cc0cd043f396.json diff --git a/test/fixtures/query-d21853a81ec0e524f47167a9a3c2811b.json b/test/fixtures/query-d21853a81ec0e524f47167a9a3c2811b.json new file mode 100644 index 00000000..ea02adcb --- /dev/null +++ b/test/fixtures/query-d21853a81ec0e524f47167a9a3c2811b.json @@ -0,0 +1,1364 @@ +{ + "took": 13, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": " -1855", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433096425198" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-ea81f5cbb07d17f7cb33a084cc9d193e.json b/test/fixtures/query-ea81f5cbb07d17f7cb33a084cc9d193e.json new file mode 100644 index 00000000..3ed038d8 --- /dev/null +++ b/test/fixtures/query-ea81f5cbb07d17f7cb33a084cc9d193e.json @@ -0,0 +1,1364 @@ +{ + "took": 10, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": " -1855", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433096425198" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/fixtures/query-fc8e68a34e33761bb5b4cc0cd043f396.json b/test/fixtures/query-fc8e68a34e33761bb5b4cc0cd043f396.json new file mode 100644 index 00000000..44fc6546 --- /dev/null +++ b/test/fixtures/query-fc8e68a34e33761bb5b4cc0cd043f396.json @@ -0,0 +1,1037 @@ +{ + "took": 10, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 15.769638, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_score": 15.769638, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1855 + ], + "parallelSeriesAddedEntry": [], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "idLccn": [ + "cau08001961" + ], + "parallelCreators_displayPacked": [], + "dateStartYear": [ + 1855 + ], + "parallelContributors_displayPacked": [], + "parallelCreatorLiteral": [], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "seriesAddedEntry": [], + "contributors_displayPacked": [], + "updatedAt": 1782212415020, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "creators_displayPacked": [], + "dates": [ + { + "range": { + "lt": "2000", + "gte": "1855" + }, + "raw": "750907d18551uuugw uu p 0 0ger dnasM ", + "tag": "d" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "seriesAddedEntry_displayPacked": [], + "subjectLiteral": [], + "parallelSeriesAddedEntry_displayPacked": [], + "parallelSubjectLiteral": [], + "formatId": "a", + "collectionIds": [ + "mal" + ], + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "numItemDatesParsed": [ + 4 + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "creatorLiteral": [], + "numElectronicResources": [ + 88 + ], + "idOclc": [ + "1608345" + ], + "popularity": 4, + "dateEndYear": [ + 1 + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "parallelContributorLiteral": [], + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": " -1933", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646033" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": " -1861", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433088646041" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_index": "resources-qa-2026-06-17", + "_id": "b14937001", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "collectionId": [ + "mal" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": " -1860", + "formatLiteral": [ + "Book/text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser)", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "idBarcode": [ + "33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "rc", + "doc_count": 3 + }, + { + "key": "ma", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Book/text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index cf4472cb..02fbbeb5 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -98,7 +98,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.be.greaterThan(703) + expect(doc.numItemsMatched).to.equal(704) done() }) }) @@ -153,38 +153,38 @@ describe('Test Resources responses', function () { }) }) it('decrements - item_format is same as bib material type', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Book/text' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(0) + expect(doc.numItemsMatched).to.equal(4) done() }) }) it('item_format is same as bib material type, multiple filters', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text&item_location=ma' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Book/text&item_location=ma' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(0) + expect(doc.numItemsMatched).to.equal(1) done() }) }) it('item_format is same as bib material type, multiple format filters', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text,anotherformat' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Book/text,anotherformat' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(0) + expect(doc.numItemsMatched).to.equal(4) done() }) }) it('item_format is same as bib material type, multiple format filters', (done) => { - const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Text,anotherformat' + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14937001?item_format=Book/text,anotherformat' request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(0) + expect(doc.numItemsMatched).to.equal(4) done() }) }) From db7a9c02ffe29b871b870c73aa7fda7c0c2a22ad Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:13:50 -0400 Subject: [PATCH 07/11] Thats not how to import things --- lib/resources.js | 2 +- lib/util.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/resources.js b/lib/resources.js index 98d9fb3b..4e6f492b 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -15,7 +15,7 @@ const { IndexSearchError, IndexConnectionError, InvalidQuerySyntaxError } = requ const ResponseMassager = require('./response_massager.js') const AvailableDeliveryLocationTypes = require('./available_delivery_location_types') -const { parseParams, deepValue, ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('../lib/util') +const { parseParams, deepValue, ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('./util') const ApiRequest = require('./api-request') const ElasticQueryBuilder = require('./elasticsearch/elastic-query-builder') diff --git a/lib/util.js b/lib/util.js index 52f2fa8c..37eeb539 100644 --- a/lib/util.js +++ b/lib/util.js @@ -363,5 +363,5 @@ exports.regexEscape = function (str) { * Parent location values from holidng location, for item location filter/aggs */ const buildLocationScript = (returnOnFailure, returnOnSuccess) => `def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return ${returnOnFailure}; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return ${returnOnFailure}; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return ${returnOnFailure}; def parentLoc = locId.substring(0, 2); ${returnOnSuccess}` -export const ITEM_LOCATION_AGG_SCRIPT = buildLocationScript('null', "if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;") -export const ITEM_LOCATION_FILTER_SCRIPT = buildLocationScript('false', "return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);") +exports.ITEM_LOCATION_AGG_SCRIPT = buildLocationScript('null', "if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;") +exports.ITEM_LOCATION_FILTER_SCRIPT = buildLocationScript('false', "return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);") From b492fdc6321dedaaa34fc15e6518a35951aa5e89 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:19:40 -0400 Subject: [PATCH 08/11] And in test --- test/resources.test.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/resources.test.js b/test/resources.test.js index 668d0af8..9520fd35 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -8,6 +8,7 @@ const numAggregations = Object.keys(AGGREGATIONS_SPEC).length const fixtures = require('./fixtures') const { verifyFilterFields } = require('./utils') +const { ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('../lib/util') describe('Resources query', function () { const resourcesPrivMethods = {} @@ -475,7 +476,7 @@ describe('Resources query', function () { item_location: { nested: { path: 'items' }, aggs: { - _nested: { terms: { size: 100, script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return null; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return null; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return null; def parentLoc = locId.substring(0, 2); if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;" } } } + _nested: { terms: { size: 100, script: { source: ITEM_LOCATION_AGG_SCRIPT } } } } }, item_status: { @@ -595,7 +596,7 @@ describe('Resources query', function () { { script: { script: { - source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", + source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: [ 'SASB', @@ -678,7 +679,7 @@ describe('Resources query', function () { it('should return filters for location in case there is a location', () => { expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] } })) - .to.deep.equal({ filter: [{ script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }] }) + .to.deep.equal({ filter: [{ script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }] }) }) it('should return filters for status in case there is a status', () => { @@ -700,7 +701,7 @@ describe('Resources query', function () { { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { range: { 'items.dateRange': { gte: 3, lte: 4 } } }, { terms: { 'items.formatLiteral': ['text', 'microfilm', 'AV'] } }, - { script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }, + { script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }, { terms: { 'items.status.id': ['Available', 'Unavailable', 'In Process'] } } ] }) @@ -708,7 +709,7 @@ describe('Resources query', function () { it('should ignore all other parameters', () => { expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] }, something: 'else' })) - .to.deep.equal({ filter: [{ script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['ma', 'pa', 'sc'] } } } }] }) + .to.deep.equal({ filter: [{ script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }] }) }) }) @@ -825,7 +826,7 @@ describe('Resources query', function () { }, filter: [ { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, - { script: { script: { source: "def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return false; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return false; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return false; def parentLoc = locId.substring(0, 2); return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);", params: { locations: ['SASB', 'LPA'] } } } } + { script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['SASB', 'LPA'] } } } } ] } }, From 32a3f55c7e0e9003b3614fd44e164ceff0b67fad Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Tue, 14 Jul 2026 17:30:40 -0400 Subject: [PATCH 09/11] starting to swap over to buildingLocation --- config/qa.env | 2 +- lib/resources.js | 13 ++++--------- lib/util.js | 7 ------- test/resources.test.js | 27 +++++++++------------------ 4 files changed, 14 insertions(+), 35 deletions(-) diff --git a/config/qa.env b/config/qa.env index dc66da22..4ad6d363 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJYwgZMGCSqGSIb3DQEHBqCBhTCBggIBADB9BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMIkDoQ9C/cCDCAq1wIBEIBQ+L3OgUGeOW9rs1CWkhpBjwM4LbbVRFIWedqew4UXIeSNMJ8cO9SNe4YGCUIoKwCDYt7W7ip3VtDRRRMVvz6QJw+Eg8ugTMVs2pbNFGNvaAQ= -RESOURCES_INDEX=resources-qa-2026-06-17 +RESOURCES_INDEX=resources-qa-2026-07-14 BROWSE_INDEX=browse-qa-2026-01-15 ENCRYPTED_ELASTICSEARCH_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJ4wgZsGCSqGSIb3DQEHBqCBjTCBigIBADCBhAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAx+kryf2KUmGdBYD9sCARCAV3ygz3eXIdq8JX/wpG9JRWlTNMRcpNE1qT0zNlN4t+ZvXEoedLQa/3p1YjgHw06GIAdA9xtkMV4eH9a1K8uCvjP8XxxNKekcMj59TlResnu9QF3r7pGXuQ== diff --git a/lib/resources.js b/lib/resources.js index 4e6f492b..40244e70 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -15,7 +15,7 @@ const { IndexSearchError, IndexConnectionError, InvalidQuerySyntaxError } = requ const ResponseMassager = require('./response_massager.js') const AvailableDeliveryLocationTypes = require('./available_delivery_location_types') -const { parseParams, deepValue, ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('./util') +const { parseParams, deepValue } = require('./util') const ApiRequest = require('./api-request') const ElasticQueryBuilder = require('./elasticsearch/elastic-query-builder') @@ -34,7 +34,7 @@ const ITEM_FILTER_AGGREGATIONS = { _nested: { terms: { size: 100, - script: { source: ITEM_LOCATION_AGG_SCRIPT } + field: 'items.buildingLocation.id' } } } @@ -499,13 +499,8 @@ module.exports = function (app, _private = null) { }, location: (locations) => { return { - script: { - script: { - source: ITEM_LOCATION_FILTER_SCRIPT, - params: { - locations - } - } + terms: { + 'items.buildingLocation.id': locations } } }, diff --git a/lib/util.js b/lib/util.js index 37eeb539..636d95ba 100644 --- a/lib/util.js +++ b/lib/util.js @@ -358,10 +358,3 @@ exports.isInRecap = (item) => { exports.regexEscape = function (str) { return str.replace(/[-/\\^$*+?.()|[\]{}]/g, (match) => { return '\\' + match }) } - -/** - * Parent location values from holidng location, for item location filter/aggs - */ -const buildLocationScript = (returnOnFailure, returnOnSuccess) => `def locs = doc['items.holdingLocation.id']; if (locs.size() == 0) return ${returnOnFailure}; def loc = locs.value; int colonIdx = loc.indexOf(':'); if (colonIdx == -1) return ${returnOnFailure}; def locId = loc.substring(colonIdx + 1); if (locId.length() < 2) return ${returnOnFailure}; def parentLoc = locId.substring(0, 2); ${returnOnSuccess}` -exports.ITEM_LOCATION_AGG_SCRIPT = buildLocationScript('null', "if (['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc)) { return parentLoc; } return null;") -exports.ITEM_LOCATION_FILTER_SCRIPT = buildLocationScript('false', "return ['ma', 'pa', 'sc', 'rc', 'bu'].contains(parentLoc) && params.locations.contains(parentLoc);") diff --git a/test/resources.test.js b/test/resources.test.js index 9520fd35..7083f82b 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -8,7 +8,6 @@ const numAggregations = Object.keys(AGGREGATIONS_SPEC).length const fixtures = require('./fixtures') const { verifyFilterFields } = require('./utils') -const { ITEM_LOCATION_AGG_SCRIPT, ITEM_LOCATION_FILTER_SCRIPT } = require('../lib/util') describe('Resources query', function () { const resourcesPrivMethods = {} @@ -476,7 +475,7 @@ describe('Resources query', function () { item_location: { nested: { path: 'items' }, aggs: { - _nested: { terms: { size: 100, script: { source: ITEM_LOCATION_AGG_SCRIPT } } } + _nested: { terms: { size: 100, field: 'items.buildingLocation.id' } } } }, item_status: { @@ -559,7 +558,7 @@ describe('Resources query', function () { item_volume: '1-2', item_date: '3-4', item_format: 'text,microfilm', - item_location: 'SASB,LPA', + item_location: 'ma,pa', item_status: 'here,there' }) // This call is going to error because the bnum is fake @@ -594,16 +593,8 @@ describe('Resources query', function () { } }, { - script: { - script: { - source: ITEM_LOCATION_FILTER_SCRIPT, - params: { - locations: [ - 'SASB', - 'LPA' - ] - } - } + terms: { + 'items.buildingLocation.id': ['ma', 'pa'] } }, { @@ -679,7 +670,7 @@ describe('Resources query', function () { it('should return filters for location in case there is a location', () => { expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] } })) - .to.deep.equal({ filter: [{ script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }] }) + .to.deep.equal({ filter: [{ terms: { 'items.buildinggLocation.id': ['ma', 'pa', 'sc'] } }] }) }) it('should return filters for status in case there is a status', () => { @@ -701,7 +692,7 @@ describe('Resources query', function () { { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { range: { 'items.dateRange': { gte: 3, lte: 4 } } }, { terms: { 'items.formatLiteral': ['text', 'microfilm', 'AV'] } }, - { script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }, + { terms: { 'items.holdingLocation.id': ['ma', 'pa', 'sc'] } }, { terms: { 'items.status.id': ['Available', 'Unavailable', 'In Process'] } } ] }) @@ -709,7 +700,7 @@ describe('Resources query', function () { it('should ignore all other parameters', () => { expect(resourcesPrivMethods.itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] }, something: 'else' })) - .to.deep.equal({ filter: [{ script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['ma', 'pa', 'sc'] } } } }] }) + .to.deep.equal({ filter: [{ terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }] }) }) }) @@ -808,7 +799,7 @@ describe('Resources query', function () { it('should include filters for items', () => { expect(resourcesPrivMethods.addInnerHits( { query: { bool: {} } }, - { size: 1, from: 2, query: { volume: [1, 2], location: ['SASB', 'LPA'], other: 'filter' } } + { size: 1, from: 2, query: { volume: [1, 2], location: ['ma', 'pa'], other: 'filter' } } )).to.deep.equal({ query: { bool: { @@ -826,7 +817,7 @@ describe('Resources query', function () { }, filter: [ { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, - { script: { script: { source: ITEM_LOCATION_FILTER_SCRIPT, params: { locations: ['SASB', 'LPA'] } } } } + { terms: { 'items.buildingLocation.id': ['ma', 'pa'] } } ] } }, From 3cd543af0244a47d21c358005afd4ee83dd4a8ff Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Tue, 14 Jul 2026 17:38:29 -0400 Subject: [PATCH 10/11] Take 2 --- lib/elasticsearch/config.js | 2 +- lib/elasticsearch/elastic-query-filter-builder.js | 2 +- test/elastic-body-builder.test.js | 4 ++-- test/resources.test.js | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/elasticsearch/config.js b/lib/elasticsearch/config.js index 7c39c1de..f7598ffd 100644 --- a/lib/elasticsearch/config.js +++ b/lib/elasticsearch/config.js @@ -164,7 +164,7 @@ const AGGREGATIONS_SPEC = { } const ITEM_FILTER_AGGREGATIONS = { - item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.holdingLocation_packed' } } } }, + item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.buildingLocation' } } } }, item_status: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.status_packed' } } } }, item_format: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.formatLiteral' } } } } } diff --git a/lib/elasticsearch/elastic-query-filter-builder.js b/lib/elasticsearch/elastic-query-filter-builder.js index 5149cde8..c97b876f 100644 --- a/lib/elasticsearch/elastic-query-filter-builder.js +++ b/lib/elasticsearch/elastic-query-filter-builder.js @@ -35,7 +35,7 @@ const itemsFilterContext = (options) => { location: (locations) => { return { terms: { - 'items.holdingLocation.id': locations + 'items.buildingLocation.id': locations } } }, diff --git a/test/elastic-body-builder.test.js b/test/elastic-body-builder.test.js index ccec82dd..3ecf5424 100644 --- a/test/elastic-body-builder.test.js +++ b/test/elastic-body-builder.test.js @@ -210,7 +210,7 @@ describe('bodyForFindByUri', function () { _nested: { terms: { size: 100, - field: 'items.holdingLocation_packed' + field: 'items.buildingLocation' } } } @@ -336,7 +336,7 @@ describe('bodyForFindByUri', function () { _nested: { terms: { size: 100, - field: 'items.holdingLocation_packed' + field: 'items.buildingLocation' } } } diff --git a/test/resources.test.js b/test/resources.test.js index f295c1aa..be1bbf55 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -676,8 +676,8 @@ describe('Resources query', function () { }) it('should return filters for location in case there is a location', () => { - expect(itemsFilterContext({ query: { location: ['SASB', 'LPA', 'Schomburg'] } })) - .to.deep.equal({ filter: [{ terms: { 'items.holdingLocation.id': ['SASB', 'LPA', 'Schomburg'] } }] }) + expect(itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] } })) + .to.deep.equal({ filter: [{ terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }] }) }) it('should return filters for status in case there is a status', () => { @@ -699,15 +699,15 @@ describe('Resources query', function () { { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { range: { 'items.dateRange': { gte: 3, lte: 4 } } }, { terms: { 'items.formatLiteral': ['text', 'microfilm', 'AV'] } }, - { terms: { 'items.holdingLocation.id': ['ma', 'pa', 'sc'] } }, + { terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }, { terms: { 'items.status.id': ['Available', 'Unavailable', 'In Process'] } } ] }) }) it('should ignore all other parameters', () => { - expect(itemsFilterContext({ query: { location: ['SASB', 'LPA', 'Schomburg'] }, something: 'else' })) - .to.deep.equal({ filter: [{ terms: { 'items.holdingLocation.id': ['SASB', 'LPA', 'Schomburg'] } }] }) + expect(itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] }, something: 'else' })) + .to.deep.equal({ filter: [{ terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }] }) }) }) From 5c30d62b763ca4dd22e648745c96e602bf8fae01 Mon Sep 17 00:00:00 2001 From: Emma Mansell <73774046+7emansell@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:04:09 -0400 Subject: [PATCH 11/11] Ahh --- lib/elasticsearch/config.js | 2 +- lib/elasticsearch/elastic-query-filter-builder.js | 2 +- test/elastic-body-builder.test.js | 4 ++-- test/resources.test.js | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/elasticsearch/config.js b/lib/elasticsearch/config.js index f7598ffd..4accfc78 100644 --- a/lib/elasticsearch/config.js +++ b/lib/elasticsearch/config.js @@ -164,7 +164,7 @@ const AGGREGATIONS_SPEC = { } const ITEM_FILTER_AGGREGATIONS = { - item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.buildingLocation' } } } }, + item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.buildingLocationId' } } } }, item_status: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.status_packed' } } } }, item_format: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.formatLiteral' } } } } } diff --git a/lib/elasticsearch/elastic-query-filter-builder.js b/lib/elasticsearch/elastic-query-filter-builder.js index c97b876f..9f756dc4 100644 --- a/lib/elasticsearch/elastic-query-filter-builder.js +++ b/lib/elasticsearch/elastic-query-filter-builder.js @@ -35,7 +35,7 @@ const itemsFilterContext = (options) => { location: (locations) => { return { terms: { - 'items.buildingLocation.id': locations + 'items.buildingLocationId': locations } } }, diff --git a/test/elastic-body-builder.test.js b/test/elastic-body-builder.test.js index 3ecf5424..c5e54087 100644 --- a/test/elastic-body-builder.test.js +++ b/test/elastic-body-builder.test.js @@ -210,7 +210,7 @@ describe('bodyForFindByUri', function () { _nested: { terms: { size: 100, - field: 'items.buildingLocation' + field: 'items.buildingLocationId' } } } @@ -336,7 +336,7 @@ describe('bodyForFindByUri', function () { _nested: { terms: { size: 100, - field: 'items.buildingLocation' + field: 'items.buildingLocationId' } } } diff --git a/test/resources.test.js b/test/resources.test.js index be1bbf55..8cae685b 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -482,7 +482,7 @@ describe('Resources query', function () { item_location: { nested: { path: 'items' }, aggs: { - _nested: { terms: { size: 100, field: 'items.buildingLocation.id' } } + _nested: { terms: { size: 100, field: 'items.buildingLocationId' } } } }, item_status: { @@ -601,7 +601,7 @@ describe('Resources query', function () { }, { terms: { - 'items.buildingLocation.id': ['ma', 'pa'] + 'items.buildingLocationId': ['ma', 'pa'] } }, { @@ -677,7 +677,7 @@ describe('Resources query', function () { it('should return filters for location in case there is a location', () => { expect(itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] } })) - .to.deep.equal({ filter: [{ terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }] }) + .to.deep.equal({ filter: [{ terms: { 'items.buildingLocationId': ['ma', 'pa', 'sc'] } }] }) }) it('should return filters for status in case there is a status', () => { @@ -699,7 +699,7 @@ describe('Resources query', function () { { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { range: { 'items.dateRange': { gte: 3, lte: 4 } } }, { terms: { 'items.formatLiteral': ['text', 'microfilm', 'AV'] } }, - { terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }, + { terms: { 'items.buildingLocationId': ['ma', 'pa', 'sc'] } }, { terms: { 'items.status.id': ['Available', 'Unavailable', 'In Process'] } } ] }) @@ -707,7 +707,7 @@ describe('Resources query', function () { it('should ignore all other parameters', () => { expect(itemsFilterContext({ query: { location: ['ma', 'pa', 'sc'] }, something: 'else' })) - .to.deep.equal({ filter: [{ terms: { 'items.buildingLocation.id': ['ma', 'pa', 'sc'] } }] }) + .to.deep.equal({ filter: [{ terms: { 'items.buildingLocationId': ['ma', 'pa', 'sc'] } }] }) }) })