From 60e60b894d83c08840424f2198d379c8e05a26e5 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 26 Nov 2024 17:12:42 -0500 Subject: [PATCH 1/2] Fix bug in delivery-locations-by-barcode .. introduced by params parsing cleanup. Added a test. --- routes/resources.js | 2 +- test/delivery-locations-resolver.test.js | 54 ++++++++++++------------ test/fixtures.js | 3 +- test/resources-responses.test.js | 20 +++++++++ 4 files changed, 50 insertions(+), 29 deletions(-) diff --git a/routes/resources.js b/routes/resources.js index 852b71c0..9da2309b 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -74,7 +74,7 @@ module.exports = function (app) { const handler = app.resources.deliveryLocationsByBarcode - return handler(req.query.params, { baseUrl: app.baseUrl }) + return handler(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) .catch((error) => handleError(res, error, params)) }) diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index dd0b055a..97cf33b1 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -124,32 +124,34 @@ const scholarRooms = [ } ] -function takeThisPartyPartiallyOffline () { - // Reroute HTC API requests mapping specific barcodes tested above to recap customer codes: - DeliveryLocationsResolver.__recapCustomerCodesByBarcodes = (barcodes) => { - const stubbedLookups = { - 'recap-barcode-for-pj': 'PJ', - 33433047331719: 'NP', - 32101062243553: 'PA', - CU56521537: 'CU', - 33433011759648: 'NA', - // Let's pretend this is a valid NYPL Map Division item barcode - // and let's further pretend that HTC API tells us it's recap customer code is ND - 'made-up-barcode-that-recap-says-belongs-to-ND': 'ND' - } - - // Return hash containing only requested barcodes: - return Promise.resolve( - barcodes.reduce((h, barcode) => { - h[barcode] = stubbedLookups[barcode] - return h - }, {}) - ) - } -} - describe('Delivery-locations-resolver', function () { - before(takeThisPartyPartiallyOffline) + before(() => { + // Reroute HTC API requests mapping specific barcodes tested above to recap customer codes: + sinon.stub(DeliveryLocationsResolver, '__recapCustomerCodesByBarcodes').callsFake((barcodes) => { + const stubbedLookups = { + 'recap-barcode-for-pj': 'PJ', + 33433047331719: 'NP', + 32101062243553: 'PA', + CU56521537: 'CU', + 33433011759648: 'NA', + // Let's pretend this is a valid NYPL Map Division item barcode + // and let's further pretend that HTC API tells us it's recap customer code is ND + 'made-up-barcode-that-recap-says-belongs-to-ND': 'ND' + } + + // Return hash containing only requested barcodes: + return Promise.resolve( + barcodes.reduce((h, barcode) => { + h[barcode] = stubbedLookups[barcode] + return h + }, {}) + ) + }) + }) + + after(() => { + DeliveryLocationsResolver.__recapCustomerCodesByBarcodes.restore() + }) describe('SC delivery locations', () => { before(() => { @@ -377,8 +379,6 @@ describe('Delivery-locations-resolver', function () { }) describe('attachDeliveryLocationsAndEddRequestability - romcom', () => { - before(takeThisPartyPartiallyOffline) - const requestableM2Location = 'map92' const requestableM1Location = 'map82' const nonrequestableM2Location = 'ccj92' diff --git a/test/fixtures.js b/test/fixtures.js index 43d16e1c..dbc78cb9 100644 --- a/test/fixtures.js +++ b/test/fixtures.js @@ -248,7 +248,8 @@ function enableScsbFixtures () { } }) - sinon.stub(scsbClient, 'recapCustomerCodeByBarcode').callsFake(() => Promise.resolve('NC')) + // Let's hardcode recapCustomerCode-lookups to return NA, a common location + sinon.stub(scsbClient, 'recapCustomerCodeByBarcode').callsFake(() => Promise.resolve('NA')) } /** diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index dff30c5a..60661976 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -842,4 +842,24 @@ describe('Test Resources responses', function () { }) }) }) + + describe('deliveryLocationsByBarcode', () => { + it('empty search returns status code 200', async () => { + const url = `${global.TEST_BASE_URL}/api/v0.1/request/deliveryLocationsByBarcode?barcodes=33433128201161` + + return request.get(url, function (err, response, body) { + if (err) throw err + + assert.equal(200, response.statusCode) + expect(response.statusCode).to.eq(200) + + const result = JSON.parse(body) + console.log('Got result: ', result) + expect(result).to.nested.include({ + 'itemListElement[0].deliveryLocation[0].@id': 'loc:mal', + 'itemListElement[0].deliveryLocation[0].prefLabel': 'Schwarzman Building - Main Reading Room 315' + }) + }) + }) + }) }) From ecb30541b6dcbb5a8641b503b614a93b60cdf20b Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 26 Nov 2024 17:16:43 -0500 Subject: [PATCH 2/2] Add missing test --- ...uery-023c0e024c32fa27f851322859b2ce22.json | 27454 ++++++++++++++++ 1 file changed, 27454 insertions(+) create mode 100644 test/fixtures/query-023c0e024c32fa27f851322859b2ce22.json diff --git a/test/fixtures/query-023c0e024c32fa27f851322859b2ce22.json b/test/fixtures/query-023c0e024c32fa27f851322859b2ce22.json new file mode 100644 index 00000000..59a85386 --- /dev/null +++ b/test/fixtures/query-023c0e024c32fa27f851322859b2ce22.json @@ -0,0 +1,27454 @@ +{ + "took": 13, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 1, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10833141", + "_score": 1, + "_source": { + "items": [ + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40904678" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40904674" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40904679" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40269792" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40269798" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40269804" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40269794" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40232403" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40232398" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40232353" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40232406" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40232401" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "urn:barcode:33433128201161" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i37530724" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (May-June 2018)", + "urn:barcode:33433128201310" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i37539307" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "urn:barcode:33433128201302" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i37539308" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "urn:barcode:33433128200965" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i37529511" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "urn:barcode:33433128200973" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i37529513" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "urn:barcode:33433121911253" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36790458" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (May-July 2017)", + "urn:barcode:33433121911105" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36790460" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "urn:barcode:33433121911246" + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36790455" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "urn:barcode:33433121911097" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36790462" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "urn:barcode:33433119892341" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36118780" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (May-June 2016)", + "urn:barcode:33433119855561" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36058799" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36060542" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "urn:barcode:33433119872103" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36060543" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "urn:barcode:33433119892333" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36118763" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36060538" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "urn:barcode:33433119855579" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36058800" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "urn:barcode:33433119892317" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i36118736" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "urn:barcode:33433114102134" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i34327846" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (May-June 2014)", + "urn:barcode:33433114101987" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i34325260" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i34327829" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "urn:barcode:33433114102043" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i34327008" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "urn:barcode:33433110762709" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414253" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "urn:barcode:33433110762691" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414254" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (May-June 2013)", + "urn:barcode:33433110762725" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414248" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "urn:barcode:33433110762717" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414252" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "urn:barcode:33433110762741" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414227" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "urn:barcode:33433110762733" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i32414245" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "urn:barcode:33433108528393" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i31482936" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "urn:barcode:33433108528385" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i31482935" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "urn:barcode:33433108528401" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i31482938" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "urn:barcode:33433108528377" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i31482930" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878991" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878983" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878974" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28879000" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878989" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878981" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28974701" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878958" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878948" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878970" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878953" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878932" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878920" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878911" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878925" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589223" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589214" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589272" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589242" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589287" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589205" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589229" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589274" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589278" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589263" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589251" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i25589269" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474922" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474920" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474921" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474919" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474923" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474917" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474916" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474914" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474918" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474915" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474912" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474911" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474399" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474447" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474913" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474909" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474907" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474905" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474910" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474908" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474906" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474903" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474901" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474899" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474904" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474902" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474900" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474897" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474446" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474895" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474898" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474896" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474893" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474894" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474402" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i40028166" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "urn:barcode:33433080426707" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474434" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474887" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474890" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474891" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474888" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474889" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474892" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474886" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474403" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474885" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474453" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17142393" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700889" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474429" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474430" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474427" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474426" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474400" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474428" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474425" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "urn:barcode:33433078658048" + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474423" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", + "urn:barcode:33433078658022" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474421" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "urn:barcode:33433084240179" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474883" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "urn:barcode:33433078658055" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474424" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "urn:barcode:33433078658030" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474422" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "urn:barcode:33433084240187" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474884" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Oct. 1994)", + "urn:barcode:33433084240138" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474879" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Nov. 1994)", + "urn:barcode:33433084240146" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474880" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (May 1994)", + "urn:barcode:33433084240104" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474876" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (June-July 1994)", + "urn:barcode:33433084240112" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474877" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Jan. 9-Feb. 13, 1995)", + "urn:barcode:33433084240161" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474882" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Feb. 21-Mar. 28, 1994)", + "urn:barcode:33433084240096" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474875" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Dec. 5, 1994-Jan. 2,1995)", + "urn:barcode:33433084240153" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474881" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Aug.-Sept. 1994)", + "urn:barcode:33433084240120" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474878" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Sept. 1993)", + "urn:barcode:33433084240047" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474870" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Oct. 1993)", + "urn:barcode:33433084240054" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474871" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Nov. 1993)", + "urn:barcode:33433084240062" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474872" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (May 1993)", + "urn:barcode:33433078696063" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700893" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (June-July 1993)", + "urn:barcode:33433078696071" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700894" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Jan. 10-Feb. 14, 1994)", + "urn:barcode:33433084240088" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474874" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Feb. 22-Mar. 29 1993)", + "urn:barcode:33433078696048" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700891" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Dec. 1993)", + "urn:barcode:33433084240070" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474873" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Aug. 1993)", + "urn:barcode:33433078696089" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700895" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Apr. 1993)", + "urn:barcode:33433078696055" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700892" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Oct. 1992)", + "urn:barcode:33433084240005" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474866" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Nov. 1992)", + "urn:barcode:33433084240013" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474867" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (June-July 1992)", + "urn:barcode:33433078653247" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474404" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Feb. 24-Mar. 30, 1992)", + "urn:barcode:33433084239973" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474863" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Dec. 7, 1992-Jan. 4, 1993)", + "urn:barcode:33433084240021" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474868" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Aug.-Sept. 1992)", + "urn:barcode:33433084239999" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474865" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Apr.-May 1992)", + "urn:barcode:33433084239981" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474864" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Sept.-Oct. 1991)", + "urn:barcode:33433084239940" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474860" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (N0v.-Dec. 1991)", + "urn:barcode:33433084239957" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474861" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (May-June 1991)", + "urn:barcode:33433084239924" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474858" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (July-Aug. 1991)", + "urn:barcode:33433084239932" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474859" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Jan. 6-Feb. 17, 1992)", + "urn:barcode:33433084239965" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474862" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Feb. 25-Apr. 29, 1991)", + "urn:barcode:33433084239916" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474857" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Sept.-Oct. 1990)", + "urn:barcode:33433084239890" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474855" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Nov-Dec 1990)", + "urn:barcode:33433078658014" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474420" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (May-June 1990)", + "urn:barcode:33433084239882" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474854" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (July-Aug 1990)", + "urn:barcode:33433078658006" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474419" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Jan. 7-Feb. 18, 1991)", + "urn:barcode:33433084239908" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474856" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Feb. 19-Apr. 30, 1990)", + "urn:barcode:33433078657990" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474418" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Sept. 4-Oct. 30, 1989)", + "urn:barcode:33433084239874" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474853" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Nov.6-Dec. 25, 1989)", + "urn:barcode:33433079122770" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474437" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (May 1-June 26, 1989)", + "urn:barcode:33433084239866" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474852" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (July 3-Aug. 28, 1989)", + "urn:barcode:33433079122762" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474436" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Jan. -Feb 12 1990)", + "urn:barcode:33433078657982" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474417" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Feb. 20-Apr. 24, 1989)", + "urn:barcode:33433084239858" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474851" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Sept. 5-Oct. 31, 1988)", + "urn:barcode:33433079122754" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474435" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Nov.-Dec. 1988)", + "urn:barcode:33433084239833" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474849" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (May 2-June 27, 1988)", + "urn:barcode:33433078657958" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474414" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (July-Aug 1988)", + "urn:barcode:33433078657966" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474415" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Jan.2-Feb. 13, 1989)", + "urn:barcode:33433084239841" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474850" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Feb. 22-Apr. 25, 1988)", + "urn:barcode:33433078657974" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474416" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Sept. -Oct. 1987)", + "urn:barcode:33433084239809" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474846" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Nov. 1987)", + "urn:barcode:33433084239817" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474847" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (May-June 1987)", + "urn:barcode:33433084239783" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474844" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (July-Aug. 1987)", + "urn:barcode:33433084239791" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474845" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Jan. 4-Feb. 15, 1988)", + "urn:barcode:33433078657941" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474413" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Feb. 23-Apr. 1987)", + "urn:barcode:33433084239775" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474843" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Dec. 7-28, 1987)", + "urn:barcode:33433084239825" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474848" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Sept. -Oct. 1986)", + "urn:barcode:33433084239742" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474840" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Nov. -Dec. 1986)", + "urn:barcode:33433084239759" + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474841" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (May-June 1986)", + "urn:barcode:33433078657925" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474411" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (July-Aug. 1986)", + "urn:barcode:33433078657933" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474412" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Jan. -Feb. 1987)", + "urn:barcode:33433084239767" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474842" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Sept. -Oct. 1985)", + "urn:barcode:33433084239726" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474838" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Nov. -Dec. 1985)", + "urn:barcode:33433084239734" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474839" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (May-June 1985)", + "urn:barcode:33433078657883" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474407" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (July-Aug. 1985)", + "urn:barcode:33433078657891" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474408" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Jan 6 1986-Feb 10 1986)", + "urn:barcode:33433078657909" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474409" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Feb. 25-Apr. 29 1985)", + "urn:barcode:33433078657875" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474406" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Feb. 24-Apr. 28 1986)", + "urn:barcode:33433078657917" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474410" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Sept. -Oct. 1984)", + "urn:barcode:33433084239700" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474836" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Nov. -Dec. 1984)", + "urn:barcode:33433084239718" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474837" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (May-June 1984)", + "urn:barcode:33433084239684" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474834" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (July-Aug. 1984)", + "urn:barcode:33433084239692" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474835" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Jan. 7 1985-Feb. 18 1985)", + "urn:barcode:33433078657867" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474405" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Feb. 20-Mar. 26, 1984)", + "urn:barcode:33433084239668" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474832" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Apr. 1984)", + "urn:barcode:33433084239676" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474833" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Oct. 1983)", + "urn:barcode:33433084239627" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474828" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Nov. 1983)", + "urn:barcode:33433084239635" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474829" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (May 1983)", + "urn:barcode:33433078712639" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700897" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (June-July 1983)", + "urn:barcode:33433084239601" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474826" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Jan.2-Feb. 13, 1984)", + "urn:barcode:33433084239650" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474831" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Dec. 1983)", + "urn:barcode:33433084239643" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474830" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Aug.-Sept. 1983)", + "urn:barcode:33433084239619" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474827" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Apr. 1983)", + "urn:barcode:33433084239593" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474825" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Sept.-Oct. 1982)", + "urn:barcode:33433084239551" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474821" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Nov.-Dec. 1982)", + "urn:barcode:33433084239569" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474822" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (May-June 1982)", + "urn:barcode:33433084239536" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474819" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (July 5-Aug. 30, 1982)", + "urn:barcode:33433084239544" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474820" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Jan. 3-Feb. 14, 1983)", + "urn:barcode:33433084239577" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474823" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Feb. 22-Mar. 29, 1982)", + "urn:barcode:33433084239510" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474817" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Feb. 21-Mar. 1983)", + "urn:barcode:33433084239585" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474824" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Apr. 5-26, 1982)", + "urn:barcode:33433084239528" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474818" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Sept. 1981)", + "urn:barcode:33433084239478" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474813" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Oct. 1981)", + "urn:barcode:33433084239486" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474814" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Nov. 1981)", + "urn:barcode:33433084239494" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474815" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (May 1981)", + "urn:barcode:33433084239445" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474810" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Mar. 1981)", + "urn:barcode:33433084239429" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474808" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (June 1981)", + "urn:barcode:33433084239452" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474811" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (July-Aug. 1981)", + "urn:barcode:33433084239460" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474812" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Dec. 1981)", + "urn:barcode:33433084239502" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474816" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Apr. 1981)", + "urn:barcode:33433084239437" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474809" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56-57 (Jan.-Feb. 1981)", + "urn:barcode:33433084239411" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474807" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Oct. 1980)", + "urn:barcode:33433084239387" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474804" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Nov. 1980)", + "urn:barcode:33433084239395" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474805" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (May 1980)", + "urn:barcode:33433079128785" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17586832" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Mar. 1980)", + "urn:barcode:33433084239346" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474800" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (June-July 1980)", + "urn:barcode:33433084239361" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474802" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Dec. 1980)", + "urn:barcode:33433084239403" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474806" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Aug.-Sept. 1980)", + "urn:barcode:33433084239379" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474803" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Apr. 1980)", + "urn:barcode:33433084239353" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474801" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55-56 (Jan.-Feb. 1980)", + "urn:barcode:33433084239338" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474799" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Sept. 1979)", + "urn:barcode:33433084239296" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474795" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Oct. 1979)", + "urn:barcode:33433084239304" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474796" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Nov. 1979)", + "urn:barcode:33433084239312" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474797" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (May-June 1979)", + "urn:barcode:33433084239270" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474793" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Mar. 1979)", + "urn:barcode:33433084239254" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474791" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (July-Aug. 1979)", + "urn:barcode:33433084239288" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474794" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Dec. 1979)", + "urn:barcode:33433084239320" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474798" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Apr. 1979)", + "urn:barcode:33433084239262" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474792" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54-55 (Jan.-Feb. 1979)", + "urn:barcode:33433084239247" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474790" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Oct. 1978)", + "urn:barcode:33433084239213" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474787" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Nov. 1978)", + "urn:barcode:33433084239221" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474788" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (May 1978)", + "urn:barcode:33433084239189" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474784" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Mar. 1978)", + "urn:barcode:33433084239163" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474782" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (June-July 1978)", + "urn:barcode:33433084239197" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474785" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Dec. 1978)", + "urn:barcode:33433084239239" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474789" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Aug.-Sept. 1978)", + "urn:barcode:33433084239205" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474786" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Apr. 1978)", + "urn:barcode:33433084239171" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474783" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53-54 (Jan.-Feb. 1978)", + "urn:barcode:33433084239155" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474781" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Sept. 1977)", + "urn:barcode:33433084239122" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474778" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Oct. 1977)", + "urn:barcode:33433084239130" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474779" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Nov. 1977)", + "urn:barcode:33433080722055" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17586829" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (May-June 1977)", + "urn:barcode:33433084239106" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474776" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Mar. 1977)", + "urn:barcode:33433084239080" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474774" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (July-Aug. 1977)", + "urn:barcode:33433084239114" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474777" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Dec. 1977)", + "urn:barcode:33433084239148" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474780" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Apr. 1977)", + "urn:barcode:33433084239098" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474775" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52-52 (Jan.-Feb. 1977)", + "urn:barcode:33433084239072" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474773" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Oct. 11-25, 1976)", + "urn:barcode:33433099622486" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597795" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Nov. 1-22, 1976)", + "urn:barcode:33433099622478" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597802" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (May 1976)", + "urn:barcode:33433099622510" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597728" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (June-July 1976)", + "urn:barcode:33433099622502" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597740" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Feb. 23-Apr. 5, 1976)", + "urn:barcode:33433099622528" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597675" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Dec. 1976)", + "urn:barcode:33433099622460" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597806" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Aug-Sept 1976)", + "urn:barcode:33433099622494" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597779" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Oct. 1975)", + "urn:barcode:33433099622551" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597655" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Nov 1975)", + "urn:barcode:33433099622544" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597656" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (June-July 1975)", + "urn:barcode:33433099622577" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597630" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Jan. 12-Feb. 16, 1976)", + "urn:barcode:33433099622601" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597430" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Feb. 24-Mar. 31, 1975)", + "urn:barcode:33433099622593" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597442" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Dec. 1975)", + "urn:barcode:33433099622536" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597665" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Aug-Sept 1975)", + "urn:barcode:33433099622569" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597639" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Apr-May 1975)", + "urn:barcode:33433099622585" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597620" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 inc. (Nov.-Dec. 1974)", + "urn:barcode:33433099622619" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597322" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Oct. 1974)", + "urn:barcode:33433099622627" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597316" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Jan. 6-Feb. 17, 1975)", + "urn:barcode:33433099622650" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597003" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Aug. 19-Sept. 30, 1974)", + "urn:barcode:33433099622635" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597294" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Apr. 29, 1974)", + "urn:barcode:33433099622643" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29597286" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Sept.-Oct. 1972)", + "urn:barcode:33433081121083" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700886" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Nov. 1972)", + "urn:barcode:33433081121091" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700887" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (May-June 1972)", + "urn:barcode:33433080731296" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474431" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (July-Aug. 1972)", + "urn:barcode:33433081120473" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700885" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Jan.-Feb. 17, 1973)", + "urn:barcode:33433078744582" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700899" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Feb. 26-Mar. 1972)", + "urn:barcode:33433084239056" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474771" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Dec. 1972)", + "urn:barcode:33433081121109" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700888" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Apr. 1972)", + "urn:barcode:33433084239064" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474772" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Oct. 1971)", + "urn:barcode:33433084239023" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474768" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Nov. 1971)", + "urn:barcode:33433084239031" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474769" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (May 1971)", + "urn:barcode:33433084238991" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474765" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (June-July 1971)", + "urn:barcode:33433084239007" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474766" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Feb. 20-Mar. 1971)", + "urn:barcode:33433084238975" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474763" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Dec. 1971)", + "urn:barcode:33433084239049" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474770" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Aug.-Sept. 1971)", + "urn:barcode:33433084239015" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474767" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Apr. 1971)", + "urn:barcode:33433084238983" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474764" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Oct. 1970)", + "urn:barcode:33433084238934" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474759" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Nov. 1970)", + "urn:barcode:33433084238942" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474760" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (May 1970)", + "urn:barcode:33433104098789" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29250562" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (June-July 1970)", + "urn:barcode:33433084238918" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474757" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Jan.-Feb. 13, 1971)", + "urn:barcode:33433084238967" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474762" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Feb. 21-Mar. 28, 1970)", + "urn:barcode:33433084238892" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474755" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Dec. 1970)", + "urn:barcode:33433084238959" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474761" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Aug.-Sept. 1970)", + "urn:barcode:33433084238926" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474758" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Apr. 1970)", + "urn:barcode:33433084238900" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474756" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Sept. 1969)", + "urn:barcode:33433084238835" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474750" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Oct. 1969)", + "urn:barcode:33433084238850" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474751" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Nov. 1969)", + "urn:barcode:33433084238868" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474752" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (May 1969)", + "urn:barcode:33433084238801" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474746" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (June 1969)", + "urn:barcode:33433084238819" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474747" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (July 1969)", + "urn:barcode:33433084238827" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474748" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Jan. 3-Feb. 14, 1970)", + "urn:barcode:33433084238884" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474754" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Feb. 22-Mar. 29, 1969)", + "urn:barcode:33433084238785" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474744" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Dec. 1969)", + "urn:barcode:33433084238876" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474753" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Aug. 1969)", + "urn:barcode:33433084238843" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474749" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Apr. 1969)", + "urn:barcode:33433084238793" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474745" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Sept. 1968)", + "urn:barcode:33433084238736" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474739" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Oct. 1968)", + "urn:barcode:33433084238744" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474740" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Nov. 1968)", + "urn:barcode:33433084238751" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474741" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (May 1968)", + "urn:barcode:33433084238694" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474735" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (June 1968)", + "urn:barcode:33433084238702" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474736" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (July 1968)", + "urn:barcode:33433084238710" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474737" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Jan.4-Feb. 15, 1969)", + "urn:barcode:33433084238777" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474743" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Feb. 24-Mar. 30, 1968)", + "urn:barcode:33433084238678" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474733" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Dec. 1968)", + "urn:barcode:33433084238769" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474742" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Aug. 1968)", + "urn:barcode:33433084238728" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474738" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Apr. 1968)", + "urn:barcode:33433084238686" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474734" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Sept. 1967)", + "urn:barcode:33433084238629" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474728" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Oct. 1967)", + "urn:barcode:33433084238637" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474729" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Nov. 1967)", + "urn:barcode:33433084238645" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474730" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (May 1967)", + "urn:barcode:33433084159981" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474724" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (June 1967)", + "urn:barcode:33433084159999" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474725" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (July 1967)", + "urn:barcode:33433084160005" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474726" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Jan. 6-Feb. 17, 1968)", + "urn:barcode:33433084238660" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474732" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Feb. 25-Mar. 25, 1967)", + "urn:barcode:33433084159965" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474722" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Dec. 1967)", + "urn:barcode:33433084238652" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474731" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Aug. 1967)", + "urn:barcode:33433084238611" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474727" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Apr. 1967)", + "urn:barcode:33433084159973" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474723" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Oct. 1966)", + "urn:barcode:33433084159932" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474719" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Nov. 1966)", + "urn:barcode:33433079128975" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474438" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (May 1966)", + "urn:barcode:33433084159882" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474714" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (June 1966)", + "urn:barcode:33433084159890" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474715" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (July 1966)", + "urn:barcode:33433084159908" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474716" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Jan. 7-Feb. 18, 1967)", + "urn:barcode:33433084159957" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474721" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Feb. 26-Mar. 26, 1966)", + "urn:barcode:33433084159866" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474712" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Dec. 1966)", + "urn:barcode:33433084159940" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474720" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Aug. 1966)", + "urn:barcode:33433084159916" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474717" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Aug. 1966)", + "urn:barcode:33433084159924" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474718" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (April 1966)", + "urn:barcode:33433084159874" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474713" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 Dec. 1965)", + "urn:barcode:33433084159858" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474710" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (may 1965)", + "urn:barcode:33433084159817" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474705" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Sept 1965)", + "urn:barcode:33433079575118" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474456" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Oct 1965)", + "urn:barcode:33433079575126" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474457" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Nov. 1965)", + "urn:barcode:33433084159841" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474709" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (June 1965)", + "urn:barcode:33433084240609" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474706" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (July 1965)", + "urn:barcode:33433084159825" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474707" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Jan.-Feb. 19 1972)", + "urn:barcode:33433078698390" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700896" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Jan. 1-Feb. 19, 1966)", + "urn:barcode:33433084240591" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474711" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Feb. 20-Mar. 27, 1965)", + "urn:barcode:33433084240617" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474703" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Aug. 1965)", + "urn:barcode:33433084159833" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474708" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Apr. 1965)", + "urn:barcode:33433084159809" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474704" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Sept. 1964)", + "urn:barcode:33433084159759" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474698" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Oct. 1964)", + "urn:barcode:33433084159767" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474699" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Nov. 1964)", + "urn:barcode:33433084159775" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474700" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (May 1964)", + "urn:barcode:33433084159718" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474694" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (June 1964)", + "urn:barcode:33433084159726" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474695" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (July 1964)", + "urn:barcode:33433084159734" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474696" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Jan.2-Feb. 13, 1965)", + "urn:barcode:33433084159791" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474702" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Feb. 22-mar. 28, 1964)", + "urn:barcode:33433084159692" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474692" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Dec. 1964)", + "urn:barcode:33433084159783" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474701" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Aug. 1964)", + "urn:barcode:33433084159742" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474697" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Apr. 1964)", + "urn:barcode:33433084159700" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474693" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Sept. 1963)", + "urn:barcode:33433084159643" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474687" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Oct. 1963)", + "urn:barcode:33433084159650" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474688" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Nov. 1963)", + "urn:barcode:33433084159668" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474689" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (May 1963)", + "urn:barcode:33433084159601" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474683" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Mar. 23-Apr. 27, 1963)", + "urn:barcode:33433084159593" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474682" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (June 1963)", + "urn:barcode:33433084159619" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474684" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (July 1963)", + "urn:barcode:33433084159627" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474685" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Jan. 4-Feb. 15, 1964)", + "urn:barcode:33433084159684" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474691" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Feb. 23-Mar. 16, 1963)", + "urn:barcode:33433084159585" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474681" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Dec. 1963)", + "urn:barcode:33433084159676" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474690" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Aug. 1963)", + "urn:barcode:33433084159635" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474686" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (May 26-July 7, 1962)", + "urn:barcode:33433084159536" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474676" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (July 14-Aug.18, 1962)", + "urn:barcode:33433084159544" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474677" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (Jan. 5-Feb. 16, 1963)", + "urn:barcode:33433084159577" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474680" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38", + "urn:barcode:33433080065141" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17586833" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Oct. 14-28, 1961)", + "urn:barcode:33433084159478" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474670" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Nov. 4-18, 1961)", + "urn:barcode:33433084159486" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474671" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Nov. 25-Dec. 30, 1961)", + "urn:barcode:33433084159494" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474672" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (May 27-July 1, 1961)", + "urn:barcode:33433084159445" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474667" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (July 8-Aug. 19, 1961)", + "urn:barcode:33433084159452" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474668" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Jan.7-Feb. 11, 1961)", + "urn:barcode:33433084159411" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474664" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Feb. 18-Apr. 1, 1961)", + "urn:barcode:33433084159429" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474665" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Aug. 26-Oct. 7, 1961)", + "urn:barcode:33433084159460" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474669" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Apr. 8-May 20, 1961)", + "urn:barcode:33433084159437" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474666" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Oct.-Nov. 1960)", + "urn:barcode:33433071556728" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474432" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Nov. 19-Dec. 31, 1960)", + "urn:barcode:33433071556736" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474433" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (May 21-June 25, 1960)", + "urn:barcode:33433084149784" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474661" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (July 2-Aug 13, 1960)", + "urn:barcode:33433084149792" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474662" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Feb. 20-Mar. 26, 1960)", + "urn:barcode:33433084149768" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474659" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Aug. 20-Oct. 1, 1960)", + "urn:barcode:33433084149800" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474663" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Apr. 2-May 14, 1960)", + "urn:barcode:33433084149776" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474660" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Oct 3-Nov 14 1959)", + "urn:barcode:33433078506999" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700908" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Nov. 21-Dec. 26, 1959)", + "urn:barcode:33433078804303" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700901" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (May-June 1959)", + "urn:barcode:33433078264508" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700905" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (July 4-Aug 15 1959)", + "urn:barcode:33433078506973" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700906" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Jan. 2-Feb. 13, 1960)", + "urn:barcode:33433084149750" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474658" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Feb 21-Mar 28 1959)", + "urn:barcode:33433078264490" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700903" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Aug 22-Sept 26 1959)", + "urn:barcode:33433078506981" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700907" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Apr 4-May 16 1959)", + "urn:barcode:33433078506965" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700904" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Oct. 11-Nov. 15, 1958)", + "urn:barcode:33433084149727" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474655" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Nov. 22-Dec. 27, 1958)", + "urn:barcode:33433084149735" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474656" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (May 24-July 5, 1958)", + "urn:barcode:33433084149693" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474652" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (July 13-Aug. 16, 1958)", + "urn:barcode:33433084149701" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474653" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Jan. 3-Feb. 14, 1959)", + "urn:barcode:33433084149743" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474657" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Feb. 22-Apr. 5, 1958)", + "urn:barcode:33433084149677" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474650" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Aug. 23-Oct. 4, 1958)", + "urn:barcode:33433084149719" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474654" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Apr. 12-May 17, 1958)", + "urn:barcode:33433084149685" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474651" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (aug. 24-Sept. 28, 1957)", + "urn:barcode:33433084149628" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474645" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Oct. 1957)", + "urn:barcode:33433084149636" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474646" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Nov. 30, 1957-Jan. 4, 1958)", + "urn:barcode:33433084149651" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474648" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Nov. 2-Nov. 23, 1957)", + "urn:barcode:33433084149644" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474647" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (May 25-June 29, 1957)", + "urn:barcode:33433084149602" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474643" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (July 6-Aug. 17, 1957)", + "urn:barcode:33433084149610" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474644" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Jan. 11-Feb. 15, 1958)", + "urn:barcode:33433084149669" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474649" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Feb. 23-Mar. 30, 1957)", + "urn:barcode:33433084149594" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474642" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Apr. 6- May 18, 1957)", + "urn:barcode:33433104098797" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i29250588" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Oct. 6-Nov. 10, 1956)", + "urn:barcode:33433084149560" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474639" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Nov. 17-Dec. 29, 1956)", + "urn:barcode:33433084149578" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474640" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (May 26-June 30, 1956)", + "urn:barcode:33433084149537" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474636" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (July 7-Aug. 18, 1956)", + "urn:barcode:33433084149545" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474637" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Jan. 5-Feb. 16, 1957)", + "urn:barcode:33433084149586" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474641" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Feb. 18-Mar. 31, 1956)", + "urn:barcode:33433084149511" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474634" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Aug. 25-Sept. 29, 1956)", + "urn:barcode:33433084149552" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474638" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Apr. 7-May 19, 1956)", + "urn:barcode:33433084149529" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474635" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Oct. 1-Nov. 12 1955)", + "urn:barcode:33433076830482" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474444" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (May 21-June 25, 1955)", + "urn:barcode:33433084149461" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474629" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (July 12-Aug. 13, 1955)", + "urn:barcode:33433084149479" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474630" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Jan.7-Feb. 11, 1956)", + "urn:barcode:33433084149495" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474633" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Feb. 19-Mar. 26, 1955)", + "urn:barcode:33433084149453" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474628" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Aug. 20-Sept. 24, 1955)", + "urn:barcode:33433084149487" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474631" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 ((Apr. 2-May 14, 1955)", + "urn:barcode:33433084149503" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474632" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31", + "urn:barcode:33433080030624" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474452" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Oct. 2-Nov. 13, 1954)", + "urn:barcode:33433084149438" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474626" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Nov. 20-Dec. 25, 1954)", + "urn:barcode:33433084149420" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474625" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (May 22-June 26, 1954)", + "urn:barcode:33433084149396" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474622" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (July 3-Aug. 14, 1954)", + "urn:barcode:33433084149404" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474623" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Jan. 1-Feb. 12, 1955)", + "urn:barcode:33433084149446" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474627" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Feb. 20-Mar. 27, 1954)", + "urn:barcode:33433084149388" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474621" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Aug. 21-Sept. 25, 1954)", + "urn:barcode:33433084149412" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474624" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Apr. 3-May 15 1954)", + "urn:barcode:33433078258260" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700890" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Oct. 17-Nov. 28, 1953)", + "urn:barcode:33433084149370" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474620" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (May 23-July 4, 1953)", + "urn:barcode:33433084149347" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474617" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (July 11-Aug. 22, 1953)", + "urn:barcode:33433084149354" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474618" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Feb. 21-Mar. 28, 1953)", + "urn:barcode:33433084149321" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474615" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Dec. 5, 1953-Feb. 13, 1954)", + "urn:barcode:33433077598997" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474448" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Aug. 27-Oct. 10, 1953)", + "urn:barcode:33433084149362" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474619" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Apr. 4-May 16, 1953)", + "urn:barcode:33433084149339" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474616" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (may 24-July 12, 1952)", + "urn:barcode:33433084149263" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474609" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Oct. 18-Nov. 22, 1952)", + "urn:barcode:33433084149297" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474612" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Nov. 29-Dec. 27, 1952)", + "urn:barcode:33433084149305" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474613" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (July 19-Aug. 23, 1952)", + "urn:barcode:33433084149271" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474610" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Jan. 3-Feb. 14, 1953)", + "urn:barcode:33433084149313" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474614" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Feb. 23-Mar. 29, 1952)", + "urn:barcode:33433084149248" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474607" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Aug. 30-oCT. 11, 1952)", + "urn:barcode:33433084149289" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474611" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Apr.5-May 17, 1952)", + "urn:barcode:33433084149255" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474608" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Sept. 1-Oct. 6, 1951)", + "urn:barcode:33433078744574" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700898" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Oct. 13-Nov. 24, 1951)", + "urn:barcode:33433084149214" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474604" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (May 19-June 30, 1951)", + "urn:barcode:33433084149198" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474602" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Jan. 12-Feb. 16, 1952)", + "urn:barcode:33433084149230" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474606" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Feb. 17-Mar, 31, 1951)", + "urn:barcode:33433084149172" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474600" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Dec. 1, 1951-Jan. 5, 1952)", + "urn:barcode:33433084149222" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474605" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Apr.5-May 12, 1951)", + "urn:barcode:33433084149180" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474601" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Sept. 2-Oct. 7, 1950)", + "urn:barcode:33433084149156" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474598" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (May 27-July 8, 1950)", + "urn:barcode:33433084149131" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474596" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (July 15-Aug. 26, 1950)", + "urn:barcode:33433084149149" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474597" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Feb. 25-Apr. 8, 1950)", + "urn:barcode:33433084149115" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474594" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Dec. 9, 1950-Feb. 10, 1951)", + "urn:barcode:33433084149164" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474599" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Apr. 15-May 20, 1950)", + "urn:barcode:33433084149123" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474595" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Sept. 17-Oct. 22, 1949)", + "urn:barcode:33433084149081" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474591" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Oct. 29-Dec. 10, 1949)", + "urn:barcode:33433084149099" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474592" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (June 11-July 16, 1949)", + "urn:barcode:33433084149065" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474589" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (July 23-Sept. 10, 1949)", + "urn:barcode:33433084149073" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474590" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Feb. 26-Apr. 16, 1949)", + "urn:barcode:33433084149040" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474587" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Dec. 17, 1949-Feb. 18, 1950)", + "urn:barcode:33433084149107" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474593" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Apr. 23-June 4, 1949)", + "urn:barcode:33433084149057" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474588" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (sept. 4-Oct. 16, 1948)", + "urn:barcode:33433084149008" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474583" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Oct. 23-Nov. 27, 1948)", + "urn:barcode:33433084149016" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474584" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (May 29-July 17, 1948)", + "urn:barcode:33433084148984" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474581" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (July 24-Aug. 28, 1948)", + "urn:barcode:33433084148992" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474582" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Jan.22-Feb. 19, 1949)", + "urn:barcode:33433084149032" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474586" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Dec. 4, 1948-Jan. 15, 1949", + "urn:barcode:33433084149024" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474585" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Apr. 10-May 22, 1948)", + "urn:barcode:33433084148976" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474580" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Oct. 11-Nov. 15, 1947)", + "urn:barcode:33433084148935" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474576" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Nov. 22, 1947-Jan.3, 1948)", + "urn:barcode:33433084148943" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474577" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (May 24-July 5, 1947)", + "urn:barcode:33433084148901" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474573" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (July 12-Aug. 16, 1947)", + "urn:barcode:33433084148919" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474574" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Jan. 10-Feb. 21, 1948)", + "urn:barcode:33433084148950" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474578" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Feb. 28-Apr. 3, 1948)", + "urn:barcode:33433084148968" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474579" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Feb. 22-Apr. 5, 1947)", + "urn:barcode:33433084148885" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474571" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Aug. 23-Oct. 4, 1947)", + "urn:barcode:33433084148927" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474575" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Apr. 12-May 17, 1947)", + "urn:barcode:33433084148893" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474572" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Oct. 5-Nov. 9, 1946)", + "urn:barcode:33433084148851" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474568" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Nov. 16-Dec. 28, 1946)", + "urn:barcode:33433084148869" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474569" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (May 18-June 29, 1946)", + "urn:barcode:33433084148828" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474565" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (July 6-Aug. 10, 1946)", + "urn:barcode:33433084148836" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474566" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Jan. 4-Feb. 15, 1947", + "urn:barcode:33433084148877" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474570" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Feb. 16-Mar. 30, 1946)", + "urn:barcode:33433084148802" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474563" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Aug. 17-Sept. 28, 1946)", + "urn:barcode:33433084148844" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474567" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Apr. 6-May 11, 1946)", + "urn:barcode:33433084148810" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474564" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (aUG. 18-sEPT. 29, 1945)", + "urn:barcode:33433084148760" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474559" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Oct. 6-Nov.17, 1945)", + "urn:barcode:33433084148778" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474560" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Nov. 24-Dec. 29, 1945)", + "urn:barcode:33433084148786" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474561" + }, + { + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (May 19-June 30, 1945)", + "urn:barcode:33433084148745" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474557" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (July 7-Aug. 11, 1945)", + "urn:barcode:33433084148752" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474558" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Jan. 5-Feb. 9, 1946)", + "urn:barcode:33433084148794" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474562" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Feb, 17-Mar. 31, 1945)", + "urn:barcode:33433084148729" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474555" + }, + { + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Apr. 7-May 12, 1945)", + "urn:barcode:33433084148737" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474556" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Oct. 7-Nov. 11, 1944)", + "urn:barcode:33433084148695" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474552" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Nov. 18-Dec. 30, 1944)", + "urn:barcode:33433084148703" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474553" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (May 20-July 1, 1944)", + "urn:barcode:33433084148661" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474549" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (July 8, -Aug 12,1944)", + "urn:barcode:33433084148679" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474550" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Jan, 6-Feb. 10, 1945)", + "urn:barcode:33433084148711" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474554" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Aug 19-Sept. 30, 1944)", + "urn:barcode:33433084148687" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474551" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Apr. 8-May 13, 1944)", + "urn:barcode:33433084148653" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474548" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 ( Feb. 19-Apr.1, 1944)", + "urn:barcode:33433084148646" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474547" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Oct.9-Nov. 13, 1943)", + "urn:barcode:33433084148612" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474544" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Nov. 20-Dec. 25, 1943)", + "urn:barcode:33433084148620" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474545" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (May 22-July 3, 1943)", + "urn:barcode:33433084148588" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474541" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (July 10-Aug. 14, 1943)", + "urn:barcode:33433084148596" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474542" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Jan. 1-Feb. 12, 1944)", + "urn:barcode:33433084148638" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474546" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Feb. 20-Apr. 3, 1943)", + "urn:barcode:33433084148562" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474539" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Aug. 21-Oct. 2, 1943)", + "urn:barcode:33433084148604" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474543" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Apr. 10-May 15, 1943)", + "urn:barcode:33433084148570" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474540" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Oct. 10-Nov. 14, 1942)", + "urn:barcode:33433080068053" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474454" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Nov. 21, 1942-Jan. 2, 1943)", + "urn:barcode:33433078796426" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700900" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (May 23-June 27, 1942)", + "urn:barcode:33433084148521" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474535" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (July 4-Aug. 15, 1942)", + "urn:barcode:33433084148539" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474536" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Jan. 9-Feb. 13, 1943)", + "urn:barcode:33433084148554" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474538" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Feb.21-May 16, 1942)", + "urn:barcode:33433084148513" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474534" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Aug. 22-Oct. 3, 1942)", + "urn:barcode:33433084148547" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474537" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Oct. 4-Nov. 8, 1941)", + "urn:barcode:33433084148489" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474531" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Nov. 15-Dec. 27, 1941)", + "urn:barcode:33433084148497" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474532" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (June 7-Aug. 9, 1941)", + "urn:barcode:33433084148463" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474529" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Jan.3-Feb. 14, 1942)", + "urn:barcode:33433084148505" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474533" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Feb. 15-Mar. 29, 1941)", + "urn:barcode:33433084148448" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474527" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Aug. 16-Sept. 27, 1941)", + "urn:barcode:33433084148471" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474530" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Apr.5-May 10,1941)", + "urn:barcode:33433084148455" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474528" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (aug. 17-Sept. 28, 1940)", + "urn:barcode:33433084148406" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474523" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Oct. 5-Nov. 9, 1940)", + "urn:barcode:33433084148414" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474524" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Nov. 16-Dec. 28, 1940)", + "urn:barcode:33433084148422" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474525" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (May 13-June 22, 1940)", + "urn:barcode:33433084148380" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474521" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Mar. 30-May 11,1940)", + "urn:barcode:33433084148372" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474520" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (June 29-Aug. 10, 1940)", + "urn:barcode:33433084148398" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474522" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Jan.4-Feb. 8,1941)", + "urn:barcode:33433084148430" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474526" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Feb. 17-Mar.23, 1940)", + "urn:barcode:33433084148364" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474519" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Oct. 7-Nov. 11, 1939)", + "urn:barcode:33433084148240" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474516" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (July 1-Aug. 12, 1939)", + "urn:barcode:33433080035797" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474450" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Jan. 6-Feb 10,1940)", + "urn:barcode:33433084148356" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474518" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Feb.18-Apr. 1, 1939)", + "urn:barcode:33433084148216" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474512" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Aug. 19-Sept. 30, 1939)", + "urn:barcode:33433084148232" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474515" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Apr. 29-June 24, 1939)", + "urn:barcode:33433084148224" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474513" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 ((Nov. 18-Dec. 30, 1939)", + "urn:barcode:33433084148257" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474517" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 Sept 10 - Nov 12 1938)", + "urn:barcode:33433078585167" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474441" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 April-July 2 1938)", + "urn:barcode:33433078585175" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474442" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Nov 19-Dec 24 1938)", + "urn:barcode:33433078585142" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474439" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (July 9-Sept. 3)", + "urn:barcode:33433078585159" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474440" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Feb. 19- Apr.23 1938)", + "urn:barcode:33433078585183" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474443" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Dec. 31, 1938-Feb. 11,1939)", + "urn:barcode:33433084148208" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474511" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (dec. 11, 1937-Feb. 12, 1938)", + "urn:barcode:33433084148190" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474510" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (Oct. 9-Dec. 4, 1937)", + "urn:barcode:33433084148182" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474509" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (May 1-July 3, 1937)", + "urn:barcode:33433084148166" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474507" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (July 10-Oct.2, 1937)", + "urn:barcode:33433084148174" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474508" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (Feb. 20-Apr.24, 1937)", + "urn:barcode:33433084148158" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474506" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Nov. 21-Dec. 26, 1936)", + "urn:barcode:33433084148133" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474504" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (May 23-Aug.15, 1936)", + "urn:barcode:33433084148117" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474502" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Jan. 2-Feb. 13, 1937)", + "urn:barcode:33433084148141" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474505" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Feb. 22-Mar. 28, 1936)", + "urn:barcode:33433084148091" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474500" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Aug. 22-Nov. 14, 1936)", + "urn:barcode:33433084148125" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474503" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Apr.4-May 16. 1936)", + "urn:barcode:33433084148109" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474501" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Oct. 5-Nov. 9, 1935)", + "urn:barcode:33433084148067" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474497" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Nov. 11-Dec. 21, 1935)", + "urn:barcode:33433084148075" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474498" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (May 18-Aug. 10, 1935)", + "urn:barcode:33433084148042" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474495" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Feb 16-May 11 1935)", + "urn:barcode:33433078264482" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i16700902" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Dec. 28, 1935-Feb. 15, 1936)", + "urn:barcode:33433084148083" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474499" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Aug. 17-Sept. 28, 1935)", + "urn:barcode:33433084148059" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474496" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Oct. 13-Dec.1, 1934)", + "urn:barcode:33433084148026" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474493" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (May 19-Aug. 11, 1934)", + "urn:barcode:33433084148000" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474491" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Feb. 17-Mar. 31, 1934)", + "urn:barcode:33433084147986" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474489" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Dec.8, 1934-Feb.9, 1935)", + "urn:barcode:33433084148034" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474494" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Aug. 10-Oct. 6, 1934)", + "urn:barcode:33433084148018" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474492" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Apr. 7-May 12, 1934)", + "urn:barcode:33433084147994" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474490" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (may 20-Aug. 12, 1933)", + "urn:barcode:33433084147952" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474486" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Nov. 18, 1933-Feb. 10, 1934)", + "urn:barcode:33433084147978" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474488" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Feb. 18-May 13, 1933)", + "urn:barcode:33433084147945" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474485" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Aug. 19-Nov. 11, 1933)", + "urn:barcode:33433084147960" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474487" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Nov. 19, 1932-Feb. 11, 1933)", + "urn:barcode:33433084147937" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474484" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (May 21-Aug. 13, 1932)", + "urn:barcode:33433084147911" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474482" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Feb. 20-May 12, 1932)", + "urn:barcode:33433084147903" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474481" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Aug. 20-Nov. 12, 1932)", + "urn:barcode:33433084147929" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474483" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Nov. 21, 1931-Feb. 13, 1932)", + "urn:barcode:33433079523332" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474455" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (June 13-Aug. 15, 1931)", + "urn:barcode:33433084147887" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474479" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Feb 21-Apr. 11, 1931)", + "urn:barcode:33433084147861" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474477" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Aug. 22-Nov. 14, 1931)", + "urn:barcode:33433084147895" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474480" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Apr. 18-June 6, 1931)", + "urn:barcode:33433084147879" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474478" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Nov.1-Dec. 27, 1930)", + "urn:barcode:33433084147846" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474475" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Mar. 15-May 10, 1930)", + "urn:barcode:33433084147838" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474474" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Jan.4-Mar. 8, 1930)", + "urn:barcode:33433084147820" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474473" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Dec. 27, 1930-Feb. 14, 1931)", + "urn:barcode:33433084147853" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474476" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Sept. 7-Nov. 2, 1929)", + "urn:barcode:33433084147804" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474471" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Nov. 9-Dec. 28, 1929)", + "urn:barcode:33433084147812" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474472" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Mar. 30-June 1, 1929)", + "urn:barcode:33433084147788" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474469" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (June 8-Aug. 31, 1929)", + "urn:barcode:33433084147796" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474470" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Jan. 5-Mar. 23, 1929)", + "urn:barcode:33433084147770" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474468" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 4 (Sept. 15-Dec. 29, 1928)", + "urn:barcode:33433084147754" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474467" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 4 (May 26-Sept. 8, 1928)", + "urn:barcode:33433084147747" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474466" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (May 21-Aug 13, 1927)", + "urn:barcode:33433084147721" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474464" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Feb. 19-Apr. 2, 1927)", + "urn:barcode:33433084147705" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474462" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Dec. 31, 1927-Feb. 18, 1928)", + "urn:barcode:33433080034691" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474449" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Aug. 20-Nov. 12, 1927)", + "urn:barcode:33433084147739" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474465" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Apr.9-May 14, 1927)", + "urn:barcode:33433084147713" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474463" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3", + "urn:barcode:33433080030632" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474451" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Nov. 20, 1926-Feb. 12, 1927)", + "urn:barcode:33433084147697" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474461" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (May 22, 1926-Aug. 14, 1926)", + "urn:barcode:33433084147689" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474459" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Feb. 20, 1926-May 22, 1926)", + "urn:barcode:33433084147671" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474458" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Aug. 21, 1926-Nov. 13, 1926)", + "urn:barcode:33433084147663" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474460" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 1 (Aug. 1925-Feb. 1926) (inc.)", + "urn:barcode:33433077539629" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474445" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Sept.-Oct. 1960 (second copy)", + "urn:barcode:33433085022402" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474956" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1963 (second copy)", + "urn:barcode:33433085022428" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474954" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1961 (second copy)", + "urn:barcode:33433085022386" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474958" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1959 (second copy)", + "urn:barcode:33433085022501" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474946" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1958 (second copy)", + "urn:barcode:33433085022493" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474947" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1957 (second copy)", + "urn:barcode:33433085022063" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474940" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1956 (second copy)", + "urn:barcode:33433085022071" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474939" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1954 (second copy)", + "urn:barcode:33433085022162" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474930" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1953 (second copy)", + "urn:barcode:33433085022170" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474929" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1952 (second copy)", + "urn:barcode:33433079509158" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474984" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1951 (second copy)", + "urn:barcode:33433079509190" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474980" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1950 (second copy)", + "urn:barcode:33433079509232" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474976" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1949 (second copy)", + "urn:barcode:33433079509117" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474988" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1948 (second copy)", + "urn:barcode:33433085022295" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474967" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1947 (second copy)", + "urn:barcode:33433085022758" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474971" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1946 (second copy)", + "urn:barcode:33433085022410" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474955" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Nov.-Dec. 1960 (second copy)", + "urn:barcode:33433085022436" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474953" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) May-June 1953 (second copy)", + "urn:barcode:33433085021792" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474925" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) May 17-Aug. 2 (1930)", + "urn:barcode:33433080388212" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17586831" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Mar.-Apr. 1953 (second copy)", + "urn:barcode:33433079509174" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474982" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1963 (second copy)", + "urn:barcode:33433085022329" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474964" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1961 (second copy)", + "urn:barcode:33433085022378" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474959" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1959 (second copy)", + "urn:barcode:33433085022485" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474948" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1958 (second copy)", + "urn:barcode:33433085022022" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474944" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1957 (second copy)", + "urn:barcode:33433085022089" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474938" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1956 (second copy)", + "urn:barcode:33433085022469" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474950" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1955 (second copy)", + "urn:barcode:33433085022139" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474933" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1954 (second copy)", + "urn:barcode:33433085022212" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474924" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1953 (second copy)", + "urn:barcode:33433079509166" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474983" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1952 (second copy)", + "urn:barcode:33433079509133" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474986" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1951 (second copy)", + "urn:barcode:33433079509208" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474979" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1950 (second copy)", + "urn:barcode:33433079509240" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474975" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1949 (second copy)", + "urn:barcode:33433079509109" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474989" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1948 (second copy)", + "urn:barcode:33433085022287" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474968" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1947 (second copy)", + "urn:barcode:33433085022741" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474972" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Aug. 1960 (second copy)", + "urn:barcode:33433085022394" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474957" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1963 (second copy)", + "urn:barcode:33433085022451" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474951" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1961 (second copy)", + "urn:barcode:33433085022444" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474952" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1960 (second copy)", + "urn:barcode:33433085022055" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474941" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1959 (second copy)", + "urn:barcode:33433085022113" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474935" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1958 (second copy)", + "urn:barcode:33433085022048" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474942" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1957 (second copy)", + "urn:barcode:33433085022105" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474936" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1955 (second copy)", + "urn:barcode:33433085022154" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474931" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1954 (second copy)", + "urn:barcode:33433085022188" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474928" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1952 (second copy)", + "urn:barcode:33433079509141" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474985" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1950 (second copy)", + "urn:barcode:33433079509125" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474987" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1949 (second copy)", + "urn:barcode:33433085022303" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474966" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1947 (second copy)", + "urn:barcode:33433085022733" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474973" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1946 (second copy)", + "urn:barcode:33433085022352" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474961" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar 1951 (second copy)", + "urn:barcode:33433079509224" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474977" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar 1948 (second copy)", + "urn:barcode:33433085022279" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474969" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Feb. 1953 (second copy)", + "urn:barcode:33433079509182" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474981" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Dec 7, 2009-Feb. 8, 2010", + "urn:barcode:33433099611158" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i28878942" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Aug. 9-Oct. 25 (1930)", + "urn:barcode:33433080388063" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17586830" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1963 (second copy)", + "urn:barcode:33433085022337" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474963" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1961 (second copy)", + "urn:barcode:33433085022360" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474960" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1960 (second copy)", + "urn:barcode:33433085022121" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474934" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1959 (second copy)", + "urn:barcode:33433085022014" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474945" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1958 (second copy)", + "urn:barcode:33433085022030" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474943" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1957 (second copy)", + "urn:barcode:33433085022097" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474937" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1956 (second copy)", + "urn:barcode:33433085022477" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474949" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1955 (second copy)", + "urn:barcode:33433085022147" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474932" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1954 (second copy)", + "urn:barcode:33433085022204" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474926" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1951 (second copy)", + "urn:barcode:33433079509216" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474978" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1950 (second copy)", + "urn:barcode:33433079509257" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474974" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1949 (second copy)", + "urn:barcode:33433085022311" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474965" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1948 (second copy)", + "urn:barcode:33433085022261" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474970" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1946 (second copy)", + "urn:barcode:33433085022345" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474962" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr. 1994", + "urn:barcode:33433078638966" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474401" + }, + { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr. -June 1954 (second copy)", + "urn:barcode:33433085022196" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i17474927" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-116" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-115" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-114" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-113" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-112" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-111" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-110" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-109" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-108" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-107" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-106" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-105" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-104" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-103" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-102" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-101" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-100" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-99" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-98" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-97" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-96" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-95" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-94" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-93" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-92" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-91" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-90" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-89" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-88" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-81" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-80" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-76" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-69" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-62" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-51" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-47" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-46" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-45" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-44" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-43" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-42" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-29" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-27" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-25" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-24" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-23" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-22" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-21" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-20" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-19" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-18" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-17" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-16" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-15" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-13" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-12" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-5" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-4" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-3" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-2" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-1" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-0" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-23" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-22" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-21" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-20" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-19" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-18" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-17" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-16" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-15" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-14" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-13" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-12" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-11" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-10" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-9" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-8" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-7" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-6" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-5" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-4" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-3" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1" + }, + { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0" + } + ], + "type": [ + "nypl:Item" + ], + "uri": "b10833141" + } + } + ] + } +} \ No newline at end of file