diff --git a/lib/resources.js b/lib/resources.js index 986ffc28..f7ab17bb 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -196,6 +196,7 @@ module.exports = function (app, _private = null) { app.resources.findByUri = function (params, opts = {}, request) { // Parse all params we support: params = parseParams(params, { + all_items: { type: 'boolean', default: false }, uri: { type: 'string' }, itemUri: { type: 'string' }, items_size: { type: 'int', default: 100, range: [0, 200] }, @@ -228,6 +229,9 @@ module.exports = function (app, _private = null) { .then((recapBarcodesByStatus) => { // Establish base query: let body = { + _source: { + excludes: EXCLUDE_FIELDS + }, size: 1, query: { bool: { @@ -239,38 +243,39 @@ module.exports = function (app, _private = null) { } ] } - }, - _source: { - excludes: EXCLUDE_FIELDS.concat(['items']) } } - - // No specific item requested, so add pagination and matching params: - const itemsOptions = { - size: params.items_size, - from: params.items_from, - merge_checkin_card_items: params.merge_checkin_card_items, - query: { - volume: params.item_volume, - date: params.item_date, - format: params.item_format, - location: params.item_location, - status: params.item_status, - itemUri: params.itemUri - }, - unavailable_recap_barcodes: recapBarcodesByStatus['Not Available'] + if (params.all_items) { + body._source.excludes = EXCLUDE_FIELDS.filter((field) => field !== '*_sort') + } + if (!params.all_items) { + // No specific item requested, so add pagination and matching params: + const itemsOptions = { + size: params.items_size, + from: params.items_from, + merge_checkin_card_items: params.merge_checkin_card_items, + query: { + volume: params.item_volume, + date: params.item_date, + format: params.item_format, + location: params.item_location, + status: params.item_status, + itemUri: params.itemUri + }, + unavailable_recap_barcodes: recapBarcodesByStatus['Not Available'] + } + body = addInnerHits(body, itemsOptions) + body._source = { + excludes: EXCLUDE_FIELDS.concat(['items']) + } } - body = addInnerHits(body, itemsOptions) - if (params.include_item_aggregations) { body.aggregations = ITEM_FILTER_AGGREGATIONS } - app.logger.debug('Resources#findByUri', body) return app.esClient.search(body) .then((resp) => { resp = resp.body - // Mindfully throw errors for known issues: if (!resp || !resp.hits) { throw new Error('Error connecting to index') @@ -723,11 +728,10 @@ module.exports = function (app, _private = null) { return app.esClient.search(body) .then((resp) => { resp = resp.body - const massagedResponse = new ResponseMassager(resp) return massagedResponse.massagedResponse(request) .catch((e) => { - // If error hitting HTC, just return response un-modified: + // If error hitting HTC, just return response un-modified: return resp }) .then((updatedResponse) => ResourceResultsSerializer.serialize(updatedResponse, opts)) diff --git a/lib/response_massager.js b/lib/response_massager.js index 63ca683f..a75aeb63 100644 --- a/lib/response_massager.js +++ b/lib/response_massager.js @@ -4,7 +4,6 @@ const parallelFieldsExtractor = require('./parallel-fields-extractor') const { isAeonUrl } = require('../lib/util') const FulfillmentResolver = require('./fulfillment_resolver') const RequestabilityResolver = require('./requestability_resolver') -// const addNumItemsMatched = require('./item-match-numerator') class ResponseMassager { constructor (responseReceived) { @@ -16,11 +15,15 @@ class ResponseMassager { * if it contains hits that have "items" or "electronicResources" inner_hits, * reassigns those hits to ".items" and ".electronicResources" so that later * code can access them as if that's where they were indexed that way. + * Conditionally sorts on enumerationChronology_sort. * * Also copies ".total" properties into convenient places for serialization. */ - processInnerHitsProperties (response) { + processInnerHitsProperties (response, sortOnEnumerationChronology) { response.hits.hits.forEach((hit) => { + if (sortOnEnumerationChronology) { + hit._source.items.sort((a, b) => a.enumerationChronology_sort[0] > b.enumerationChronology_sort[0] ? -1 : 1) + } // Process "items" inner_hits if (hit.inner_hits && hit.inner_hits.items) { // Reassign items inner_hits to .items @@ -58,10 +61,10 @@ class ResponseMassager { massagedResponse (request, options = {}) { let response = this.elasticSearchResponse - + const allItemsBibQuery = request?.query?.all_items // Inspect response inner_hits queries and move properties around to ease // serialization: - response = this.processInnerHitsProperties(response) + response = this.processInnerHitsProperties(response, allItemsBibQuery) // Rename parallel fields: response = parallelFieldsExtractor(response) diff --git a/routes/resources.js b/routes/resources.js index ab86dba6..b315cdb4 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -11,7 +11,28 @@ module.exports = function (app) { next() }) - const standardParams = ['page', 'per_page', 'q', 'filters', 'expandContext', 'ext', 'field', 'sort', 'sort_direction', 'search_scope', 'items_size', 'items_from', 'contributor', 'title', 'subject', 'isbn', 'issn', 'lccn', 'oclc', 'merge_checkin_card_items', 'include_item_aggregations'] + const standardParams = ['page', + 'per_page', + 'q', + 'filters', + 'expandContext', + 'ext', + 'field', + 'sort', + 'sort_direction', + 'search_scope', + 'all_items', + 'items_size', + 'items_from', + 'contributor', + 'title', + 'subject', + 'isbn', + 'issn', + 'lccn', + 'oclc', + 'merge_checkin_card_items', + 'include_item_aggregations'] const respond = (res, _resp, params) => { let contentType = 'application/ld+json' @@ -104,7 +125,7 @@ module.exports = function (app) { * e.g. discovery/resources/b1234 */ app.get(`/api/v${VER}/discovery/resources/:uri.:ext?`, function (req, res) { - const gatheredParams = gatherParams(req, ['uri', 'items_size', 'items_from', 'merge_checkin_card_items', 'include_item_aggregations']) + const gatheredParams = gatherParams(req, ['uri', 'items_size', 'items_from', 'merge_checkin_card_items', 'include_item_aggregations', 'all_items']) const params = Object.assign({}, req.query, { uri: req.params.uri }) if (Number.isInteger(parseInt(gatheredParams.items_size))) params.items_size = gatheredParams.items_size diff --git a/test/fixtures/query-0245942d25a58c1c7bd397f5e3991771.json b/test/fixtures/query-0245942d25a58c1c7bd397f5e3991771.json new file mode 100644 index 00000000..d6fe4e11 --- /dev/null +++ b/test/fixtures/query-0245942d25a58c1c7bd397f5e3991771.json @@ -0,0 +1,343 @@ +{ + "body": { + "took": 9, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.59108, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001936", + "_score": 15.59108, + "_source": { + "extent": [ + "400 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Publication date from cover.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Also available on microform;", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Microfilmed;", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Armenians", + "Armenians -- Iran", + "Armenians -- Iran -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tparan Hovhannu Tēr-Abrahamian" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "title": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1891" + ], + "creatorLiteral": [ + "Shermazanian, Galust." + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1891 + ], + "idOclc": [ + "NYPG002001377-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONR 84-743" + }, + { + "type": "nypl:Bnumber", + "value": "10001936" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002001377-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201976" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201934" + } + ], + "updatedAt": 1711185810085, + "publicationStatement": [ + "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" + ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:bnum:10001936", + "urn:oclc:NYPG002001377-B", + "urn:identifier:NNSZ00201976", + "urn:identifier:(WaOLN)nyp0201934" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Armenians -- Iran -- History." + ], + "titleDisplay": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." + ], + "uri": "b10001936", + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://hdl.handle.net/2027/nyp.33433001892276" + } + ], + "placeOfPublication": [ + "Ṛostov (Doni Vra)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001892276" + ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:barcode:33433001892276" + ], + "identifierV2": [ + { + "value": "*ONR 84-743", + "type": "bf:ShelfMark" + }, + { + "value": "33433001892276", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*ONR 84-743" + ], + "shelfMark_sort": "a*ONR 84-000743", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10001320" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-138bfe97c85822887adf2a9eaba76fe7.json b/test/fixtures/query-138bfe97c85822887adf2a9eaba76fe7.json new file mode 100644 index 00000000..1d8e2361 --- /dev/null +++ b/test/fixtures/query-138bfe97c85822887adf2a9eaba76fe7.json @@ -0,0 +1,2593 @@ +{ + "body": { + "took": 397, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.04925, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 14.04925, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 834 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 839 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "contributorLiteralNormalized": [ + "Harold Ross", + "Harold Wallace Ross", + "William Shawn", + "Tina Brown", + "David Remnick", + "Katharine White", + "Katharine Sergeant White", + "Katharine Sergeant Angell White", + "E. White", + "E. B. White", + "Rea Irvin", + "Roger Angell" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 769 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "popularity": 1033, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 11 (May. 6, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 12 (May. 13, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 13 (May. 20, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 14 (May. 27, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 15 (Jun. 3, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 16 (Jun. 10, 2024)", + "position": 89, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 17 (Jun. 17, 2024)", + "position": 90, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 18 (Jun. 24, 2024)", + "position": 91, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 19 (Jul. 1, 2024)", + "position": 92, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 20 (Jul. 8, 2024)", + "position": 93, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 21 (Jul. 22, 2024)", + "position": 94, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 22 (Jul. 29, 2024)", + "position": 95, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 23 (Aug. 5, 2024)", + "position": 96, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 24 (Aug. 12, 2024)", + "position": 97, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 25 (Aug. 19, 2024)", + "position": 98, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 26 (Aug. 26, 2024)", + "position": 99, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 27 (Sep. 2, 2024)", + "position": 100, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 28 (Sep. 9, 2024)", + "position": 101, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 29 (Sep. 16, 2024)", + "position": 102, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 30 (Sep. 23, 2024)", + "position": 103, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 31 (Sep. 30, 2024)", + "position": 104, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 32 (Oct. 7, 2024)", + "position": 105, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 33 (Oct. 14, 2024)", + "position": 106, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 34 (Oct. 21, 2024)", + "position": 107, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 35 (Oct. 28, 2024)", + "position": 108, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1725650390151, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 132 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "contributorLiteralWithoutDates": [ + "Ross, Harold Wallace", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks)", + "Irvin, Rea", + "Angell, Roger" + ], + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "allItems": { + "hits": { + "total": 839, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 838 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-04-26" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 10" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 837 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-29" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 6" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 836 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-22" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 5" + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": 9, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 814 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-28", + "lte": "2024-10-28" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 35 (Oct. 28, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-28" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-0", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 35" + ] + }, + "sort": [ + " 100-2024-10-28" + ] + }, + { + "_nested": { + "field": "items", + "offset": 813 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-21", + "lte": "2024-10-21" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 34 (Oct. 21, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-21" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-1", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 34" + ] + }, + "sort": [ + " 100-2024-10-21" + ] + }, + { + "_nested": { + "field": "items", + "offset": 812 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-14", + "lte": "2024-10-14" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 33 (Oct. 14, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-14" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-2", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 33" + ] + }, + "sort": [ + " 100-2024-10-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 811 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-07", + "lte": "2024-10-07" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 32 (Oct. 7, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-07" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-3", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 32" + ] + }, + "sort": [ + " 100-2024-10-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 810 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-30", + "lte": "2024-09-30" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 31 (Sep. 30, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-30" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-4", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 31" + ] + }, + "sort": [ + " 100-2024-09-30" + ] + }, + { + "_nested": { + "field": "items", + "offset": 809 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-23", + "lte": "2024-09-23" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 30 (Sep. 23, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-23" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-5", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 30" + ] + }, + "sort": [ + " 100-2024-09-23" + ] + }, + { + "_nested": { + "field": "items", + "offset": 808 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-16", + "lte": "2024-09-16" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 29 (Sep. 16, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-16" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 29" + ] + }, + "sort": [ + " 100-2024-09-16" + ] + }, + { + "_nested": { + "field": "items", + "offset": 707 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-20" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-107", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 42" + ] + }, + "sort": [ + " 97-2021-12-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102084" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327829" + }, + "sort": [ + " 90-2014" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 132 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 707 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 108 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 774 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:co||Loaned", + "doc_count": 11 + }, + { + "key": "status:na||Not available", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-1c6319bd027ad5b5f09ba8df7166bad7.json b/test/fixtures/query-1c6319bd027ad5b5f09ba8df7166bad7.json new file mode 100644 index 00000000..7f18476a --- /dev/null +++ b/test/fixtures/query-1c6319bd027ad5b5f09ba8df7166bad7.json @@ -0,0 +1,298 @@ +{ + "body": { + "took": 5, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.557082, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10022950", + "_score": 15.557082, + "_source": { + "extent": [ + "224 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Christianity and other religions", + "Christianity and other religions -- Judaism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[D. Kirshenbaum]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "title": [ + "Religion--love or hate?" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "creatorLiteral": [ + "Kirshenbaum, D. (David), 1902-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "idOclc": [ + "NYPG25881442-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" + }, + { + "type": "nypl:Bnumber", + "value": "10022950" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25881442-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0023028" + } + ], + "updatedAt": 1711072100364, + "publicationStatement": [ + "New York : [D. Kirshenbaum], 1974." + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:bnum:10022950", + "urn:oclc:NYPG25881442-B", + "urn:identifier:(WaOLN)nyp0023028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Christianity and other religions -- Judaism." + ], + "titleDisplay": [ + "Religion--love or hate? / by David Kirshenbaum." + ], + "uri": "b10022950", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Love or hate." + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf92", + "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" + ], + "idBarcode": [ + "33433103848853" + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:barcode:33433103848853" + ], + "identifierV2": [ + { + "value": "*PGZ 81-1452", + "type": "bf:ShelfMark" + }, + { + "value": "33433103848853", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XH" + ], + "physicalLocation": [ + "*PGZ 81-1452" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "shelfMark_sort": "a*PGZ 81-001452", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14749981" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-41d6eb84ad5eef3936c73812b9ed0682.json b/test/fixtures/query-41d6eb84ad5eef3936c73812b9ed0682.json new file mode 100644 index 00000000..0672bae8 --- /dev/null +++ b/test/fixtures/query-41d6eb84ad5eef3936c73812b9ed0682.json @@ -0,0 +1,9236 @@ +{ + "body": { + "took": 134, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.416975, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b18932917", + "_score": 14.416975, + "_source": { + "extent": [ + "52 linear ft., 127 boxes" + ], + "note": [ + { + "noteType": "Source", + "label": "Phelps-Stokes Fund", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "The Phelps and Stokes families had long been associated with a variety of philanthropic enterprises in the 19th and 20th centuries. The Phelps-Stokes Fund was created in 1911 as a non-profit foundation under the will of Caroline Phelps Stokes. Its original objectives were to improve housing for the poor in New York City, and the \"education of Negroes, both in Africa and the United States, North American Indians, and needy and deserving white students.\" The contacts maintained by the staff and trustees of the Fund through correspondence, travel, and service on numerous boards and commissions often had a greater impact than any direct financial assistance rendered by the Fund. For the period of these records, it served as a headquarters for visiting African educators, students and government officials, and, in addition to sponsoring its own commissions and reports, became a clearinghouse for information on the intellectual and political life of colonial and post-colonial Africa", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Finding aid available.", + "type": "bf:Note" + } + ], + "creatorLiteralWithoutDates": [ + "Phelps-Stokes Fund." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bunche, Ralph J. 1904-1971", + "Du Bois, W. E. B. 1868-1963", + "Washington, Booker T., 1856-1915", + "Johnson, Charles Spurgeon, 1893-1956", + "Burroughs, Nannie Helen, 1879-", + "Jones, Thomas Jesse, 1873-1950", + "Patterson, Frederick D. 1901-1988", + "Aggrey, James Emman Kwegyir, 1875-1927", + "Dillard, J. H. 1856-1940", + "Dillon, Wilton S., 1923-", + "Johnson, Guy Benton, 1901-1991", + "Stokes, Anson Phelps, 1874-1958", + "Tobias, Channing H", + "Stokes, I. N. Phelps 1867-1944", + "Davis, Jackson T., 1882-1947", + "Brawley, Benjamin, 1882-1939", + "Ross, Emory", + "Peabody, George Foster, 1852-1938", + "Phelps-Stokes Fund", + "Booker Washington Institute of Liberia", + "Cooperative College Development Program", + "United Negro College Fund", + "South African Institute of Race Relations", + "Indian Rights Association", + "Mellon Haitian Nurses Training Program", + "Southern Regional Council", + "American Society of African Culture", + "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", + "Fisk University", + "Tuskegee Institute", + "Endowments", + "Endowments -- United States", + "African Americans", + "African Americans -- Housing", + "African Americans -- Charities", + "African Americans -- Education", + "African Americans -- Scholarships, fellowships, etc", + "Student aid", + "Student aid -- Africa", + "Student aid -- United States", + "Education", + "Education -- United States", + "Education -- United States -- Societies, etc", + "Housing", + "Housing -- New York (State)", + "Housing -- New York (State) -- New York", + "Slums", + "Slums -- New York (State)", + "Slums -- New York (State) -- New York", + "Agricultural colleges", + "Agricultural colleges -- Liberia", + "Missions", + "Missions -- Educational work", + "Missions, American", + "Missions, American -- Africa", + "Missions -- Africa", + "Nurses", + "Nurses -- Haiti", + "Indians of North America", + "Indians of North America -- Legal status, laws, etc", + "Educational exchanges", + "Education, Cooperative", + "Education, Cooperative -- United States", + "International relief", + "International relief -- Africa", + "African American college students", + "International organization", + "Race relations", + "Art", + "Art -- Nigeria", + "Music", + "Music -- Nigeria", + "Medical centers", + "Medical centers -- Nigeria", + "Indians of North America -- Education", + "Education -- Africa", + "Education -- Ghana", + "Education -- Liberia", + "African American universities and colleges", + "South Africa", + "South Africa -- Race relations", + "Liberia", + "Liberia -- History", + "United States", + "United States -- Race relations", + "United States -- Foreign relations", + "United States -- Foreign relations -- South Africa" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "The Phelps-Stokes Fund Records contain administrative records including trustee and committee minutes, correspondence, memoranda, financial records, legal documents, speeches, reports, occasional papers, and printed material, such as pamphlets, brochures, clippings, articles, press releases and programs. Records concern the early work of the Fund in researching and supporting education for Africans and African Americans and improvement in housing conditions, through study commissions, reports, and project grants, as well as its engagement in contemporary debates concerning the philosophy and policies of Booker T. Washington and W. E. B. Du Bois. To a lesser extent, the Fund provided early support for surveys of American Indian schools and administration, such as the 1928 Lewis Meriam study and the 1939 Navajo Indian study. Later endeavors included administering grants for conferences on race relations, exchange and training programs, cooperative programs with other foundations, government aid programs, and a number of cultural projects.", + "The bulk of the collection contains the office files of the four principal leaders of the Fund, Anson Phelps Stokes (1924-1946), Thomas Jesse Jones (1917-1946), Channing Tobias (1946-1953), and Frederick D. Patterson (1953-1969). Of particular interest is material concerning the Fund's relationships with organizations such as Agricultural Missions; Booker T. Washington Agricultural and Industrial Institute of Liberia, founded by the Fund in 1929; British and Foreign Bible Society; Capahosic (VA) Conferences, where black and white leaders gathered for off-the-record conferences; Carnegie Corporation; Committee on Negro Americans in the Defense Industry; Cooperative College Development Program to assist historically black colleges in coordinating development programs and improving management resources; General Education Board; Harmon Foundation; Highlander Folk School; International Missionary Council; Jeanes and Slater Funds; National Association for the Advancement of Colored People, including its disagreements with Fund policies; Rosenwald Fund; South African Institute of Race Relations; Southern Regional Council; YMCA National Council, including South African Work of the Foreign Committee, as well as historically black schools and colleges, especially Bethune-Cookman, Calhoun, Fisk, Hampton, Manassas, Penn School, Talladega, and Tuskegee.", + "Significant correspondents include diplomats, educators, reformers, and foundation officials, such as Ralph J. Bunche; W. E. B. Dubois, particularly regarding the Encyclopedia of the Negro project and opposition to the Fund in the 1930s and 1940s; NAACP director Walter White, who also disagreed with certain Fund activities; educators James E. K. Aggrey, Will Alexander, Aaron Brown, Nannie Burroughs, James H. Dillard, Clark Foreman, Charles S. Johnson, Guy B. Johnson, Thomas Elsa Jones, Charles L. Loram, Robert R. Moton, Harold Odum, Emmett Scott, Booker T. Washington, Carter G. Woodson, especially his controversy with Thomas Jesse Jones in the 1920s, Thomas J. Woofter, and cultural figures and organizations including ethnomusicologist Laura C. Boulton and the Harmon Foundation. Other significant correspondents include foundation officials Jackson Davis, Emory Ross, Wallace Buttrick, Abraham Flexner, Isaac Newton Phelps Stokes, Oswald Garrison Villard, L. Hollingsworth Wood, George Foster Peabody, and William J. Schiefflein; and journalists Lester Walton and Claude A. Barnett;" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 128 + ], + "createdYear": [ + 1893 + ], + "dateEndString": [ + "1970" + ], + "title": [ + "Phelps-Stokes Fund records" + ], + "type": [ + "nypl:Item" + ], + "contributorLiteralNormalized": [ + "Thomas Jones", + "Thomas Jesse Jones", + "Anson Stokes", + "Anson Phelps Stokes", + "Channing Tobias", + "Channing H. Tobias", + "Frederick Patterson", + "Frederick D. Patterson", + "Wilton Dillon", + "Wilton S. Dillon", + "Aaron Brown", + "I. Stokes", + "I. N. Stokes", + "I. N. Phelps Stokes", + "Emory Ross" + ], + "shelfMark": [ + "Sc MG 162" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1893" + ], + "creatorLiteral": [ + "Phelps-Stokes Fund." + ], + "creatorLiteralNormalized": [ + "Phelps-Stokes Fund." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jones, Thomas Jesse, 1873-1950.", + "Stokes, Anson Phelps, 1874-1958.", + "Tobias, Channing H.", + "Patterson, Frederick D. (Frederick Douglass), 1901-1988.", + "Dillon, Wilton S., 1923-", + "Brown, Aaron, 1904-1992.", + "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944.", + "Ross, Emory." + ], + "dateStartYear": [ + 1893 + ], + "idOclc": [ + "715462601" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc MG 162" + }, + { + "type": "nypl:Bnumber", + "value": "18932917" + }, + { + "type": "nypl:Oclc", + "value": "715462601" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)715462601" + } + ], + "popularity": 940, + "dateEndYear": [ + 1970 + ], + "updatedAt": 1724855046485, + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:bnum:18932917", + "urn:oclc:715462601", + "urn:identifier:(OCoLC)715462601" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:mix", + "label": "Mixed material" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1893" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bunche, Ralph J. 1904-1971.", + "Du Bois, W. E. B. 1868-1963.", + "Washington, Booker T., 1856-1915.", + "Johnson, Charles Spurgeon, 1893-1956.", + "Burroughs, Nannie Helen, 1879-", + "Jones, Thomas Jesse, 1873-1950.", + "Patterson, Frederick D. 1901-1988.", + "Aggrey, James Emman Kwegyir, 1875-1927.", + "Dillard, J. H. 1856-1940.", + "Dillon, Wilton S., 1923-", + "Johnson, Guy Benton, 1901-1991.", + "Stokes, Anson Phelps, 1874-1958.", + "Tobias, Channing H.", + "Stokes, I. N. Phelps 1867-1944.", + "Davis, Jackson T., 1882-1947.", + "Brawley, Benjamin, 1882-1939.", + "Ross, Emory.", + "Peabody, George Foster, 1852-1938.", + "Phelps-Stokes Fund.", + "Booker Washington Institute of Liberia.", + "Cooperative College Development Program.", + "United Negro College Fund.", + "South African Institute of Race Relations.", + "Indian Rights Association.", + "Mellon Haitian Nurses Training Program.", + "Southern Regional Council.", + "American Society of African Culture.", + "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", + "Fisk University.", + "Tuskegee Institute.", + "Endowments -- United States.", + "African Americans -- Housing.", + "African Americans -- Charities.", + "African Americans -- Education.", + "African Americans -- Scholarships, fellowships, etc.", + "Student aid -- Africa.", + "Student aid -- United States.", + "Education -- United States -- Societies, etc.", + "Housing -- New York (State) -- New York.", + "Slums -- New York (State) -- New York.", + "Agricultural colleges -- Liberia.", + "Missions -- Educational work.", + "Missions, American -- Africa.", + "Missions -- Africa.", + "Nurses -- Haiti.", + "Indians of North America -- Legal status, laws, etc.", + "Educational exchanges.", + "Education, Cooperative -- United States.", + "International relief -- Africa.", + "African American college students.", + "International organization.", + "Race relations.", + "Art -- Nigeria.", + "Music -- Nigeria.", + "Medical centers -- Nigeria.", + "Indians of North America -- Education.", + "Education -- Africa.", + "Education -- Ghana.", + "Education -- Liberia.", + "African American universities and colleges.", + "South Africa -- Race relations.", + "Liberia -- History.", + "United States -- Race relations.", + "United States -- Foreign relations -- South Africa." + ], + "titleDisplay": [ + "Phelps-Stokes Fund records, 1893-1970." + ], + "uri": "b18932917", + "contributorLiteralWithoutDates": [ + "Jones, Thomas Jesse", + "Stokes, Anson Phelps", + "Tobias, Channing H.", + "Patterson, Frederick D. (Frederick Douglass)", + "Dillon, Wilton S.", + "Brown, Aaron", + "Stokes, I. N. Phelps (Isaac Newton Phelps)", + "Ross, Emory." + ], + "issuance": [ + { + "id": "urn:biblevel:c", + "label": "collection" + } + ], + "supplementaryContent": [ + { + "label": "Finding aid", + "url": "http://archives.nypl.org/scm/20936" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 128, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 127 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 1" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133762" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 1", + "urn:barcode:33433076133762" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133762", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 1" + ], + "shelfMark_sort": "aSc MG 162 box 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i26387850" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 126 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 2" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133770" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 2", + "urn:barcode:33433076133770" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133770", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 2" + ], + "shelfMark_sort": "aSc MG 162 box 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940962" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 3" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133788" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 3", + "urn:barcode:33433076133788" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 3", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133788", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 3" + ], + "shelfMark_sort": "aSc MG 162 box 000003", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940964" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 4" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133796" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 4", + "urn:barcode:33433076133796" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 4", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133796", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 4" + ], + "shelfMark_sort": "aSc MG 162 box 000004", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940965" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 5" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133804" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 5", + "urn:barcode:33433076133804" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 5", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133804", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 5" + ], + "shelfMark_sort": "aSc MG 162 box 000005", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940966" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 6" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133812" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 6", + "urn:barcode:33433076133812" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 6", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133812", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 6" + ], + "shelfMark_sort": "aSc MG 162 box 000006", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940967" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 7" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133820" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 7", + "urn:barcode:33433076133820" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 7", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133820", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 7" + ], + "shelfMark_sort": "aSc MG 162 box 000007", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940968" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 8" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133838" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 8", + "urn:barcode:33433076133838" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 8", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133838", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 8" + ], + "shelfMark_sort": "aSc MG 162 box 000008", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940969" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 9" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133846" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 9", + "urn:barcode:33433076133846" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 9", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133846", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 9" + ], + "shelfMark_sort": "aSc MG 162 box 000009", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940970" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 10" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133853" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 10", + "urn:barcode:33433076133853" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 10", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133853", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 10" + ], + "shelfMark_sort": "aSc MG 162 box 000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940971" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 11" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133861" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 11", + "urn:barcode:33433076133861" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 11", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133861", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 11" + ], + "shelfMark_sort": "aSc MG 162 box 000011", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940972" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 12" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133879" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 12", + "urn:barcode:33433076133879" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 12", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133879", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 12" + ], + "shelfMark_sort": "aSc MG 162 box 000012", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940973" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 13" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133887" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 13", + "urn:barcode:33433076133887" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 13", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133887", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 13" + ], + "shelfMark_sort": "aSc MG 162 box 000013", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940974" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 14" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133895" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 14", + "urn:barcode:33433076133895" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 14", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133895", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 14" + ], + "shelfMark_sort": "aSc MG 162 box 000014", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940975" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 15" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133903" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 15", + "urn:barcode:33433076133903" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 15", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133903", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 15" + ], + "shelfMark_sort": "aSc MG 162 box 000015", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940976" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 16" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133911" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 16", + "urn:barcode:33433076133911" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 16", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133911", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 16" + ], + "shelfMark_sort": "aSc MG 162 box 000016", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940977" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 17" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133929" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 17", + "urn:barcode:33433076133929" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 17", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133929", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 17" + ], + "shelfMark_sort": "aSc MG 162 box 000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940978" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 110 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 18" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133937" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 18", + "urn:barcode:33433076133937" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 18", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133937", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 18" + ], + "shelfMark_sort": "aSc MG 162 box 000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940979" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 19" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133945" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 19", + "urn:barcode:33433076133945" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 19", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133945", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 19" + ], + "shelfMark_sort": "aSc MG 162 box 000019", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940980" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 20" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133952" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 20", + "urn:barcode:33433076133952" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 20", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133952", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 20" + ], + "shelfMark_sort": "aSc MG 162 box 000020", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940981" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 21" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133960" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 21", + "urn:barcode:33433076133960" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 21", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133960", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 21" + ], + "shelfMark_sort": "aSc MG 162 box 000021", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940982" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 22" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133978" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 22", + "urn:barcode:33433076133978" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 22", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133978", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 22" + ], + "shelfMark_sort": "aSc MG 162 box 000022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940983" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 23" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133986" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 23", + "urn:barcode:33433076133986" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 23", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133986", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 23" + ], + "shelfMark_sort": "aSc MG 162 box 000023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940984" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 24" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133994" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 24", + "urn:barcode:33433076133994" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 24", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133994", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 24" + ], + "shelfMark_sort": "aSc MG 162 box 000024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940985" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 25" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134000" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 25", + "urn:barcode:33433076134000" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 25", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134000", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 25" + ], + "shelfMark_sort": "aSc MG 162 box 000025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940986" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 26" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134018" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 26", + "urn:barcode:33433076134018" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 26", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134018", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 26" + ], + "shelfMark_sort": "aSc MG 162 box 000026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940987" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 27" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134026" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 27", + "urn:barcode:33433076134026" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 27", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134026", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 27" + ], + "shelfMark_sort": "aSc MG 162 box 000027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940988" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 28" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134034" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 28", + "urn:barcode:33433076134034" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 28", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134034", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 28" + ], + "shelfMark_sort": "aSc MG 162 box 000028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940989" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 29" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134042" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 29", + "urn:barcode:33433076134042" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 29", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134042", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 29" + ], + "shelfMark_sort": "aSc MG 162 box 000029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940990" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 30" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134059" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 30", + "urn:barcode:33433076134059" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 30", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134059", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 30" + ], + "shelfMark_sort": "aSc MG 162 box 000030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940991" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 31" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134067" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 31", + "urn:barcode:33433076134067" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 31", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134067", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 31" + ], + "shelfMark_sort": "aSc MG 162 box 000031", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940992" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 32" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134075" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 32", + "urn:barcode:33433076134075" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 32", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134075", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 32" + ], + "shelfMark_sort": "aSc MG 162 box 000032", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940993" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 33" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134083" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 33", + "urn:barcode:33433076134083" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 33", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134083", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 33" + ], + "shelfMark_sort": "aSc MG 162 box 000033", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940994" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 34" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134091" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 34", + "urn:barcode:33433076134091" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 34", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134091", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 34" + ], + "shelfMark_sort": "aSc MG 162 box 000034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940995" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 35" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134109" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 35", + "urn:barcode:33433076134109" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 35", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134109", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 35" + ], + "shelfMark_sort": "aSc MG 162 box 000035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940996" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 36" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134117" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 36", + "urn:barcode:33433076134117" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 36", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134117", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 36" + ], + "shelfMark_sort": "aSc MG 162 box 000036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940997" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 37" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134125" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 37", + "urn:barcode:33433076134125" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 37", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134125", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 37" + ], + "shelfMark_sort": "aSc MG 162 box 000037", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940998" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 38" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134133" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 38", + "urn:barcode:33433076134133" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 38", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134133", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 38" + ], + "shelfMark_sort": "aSc MG 162 box 000038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940999" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 39" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134141" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 39", + "urn:barcode:33433076134141" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 39", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134141", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 39" + ], + "shelfMark_sort": "aSc MG 162 box 000039", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941000" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 40" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134158" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 40", + "urn:barcode:33433076134158" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 40", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134158", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 40" + ], + "shelfMark_sort": "aSc MG 162 box 000040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941001" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 41" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134166" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 41", + "urn:barcode:33433076134166" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 41", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134166", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 41" + ], + "shelfMark_sort": "aSc MG 162 box 000041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 42" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134174" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 42", + "urn:barcode:33433076134174" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 42", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134174", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 42" + ], + "shelfMark_sort": "aSc MG 162 box 000042", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 43" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134182" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 43", + "urn:barcode:33433076134182" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 43", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134182", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 43" + ], + "shelfMark_sort": "aSc MG 162 box 000043", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941004" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 44" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134190" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 44", + "urn:barcode:33433076134190" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 44", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134190", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 44" + ], + "shelfMark_sort": "aSc MG 162 box 000044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941005" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 45" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134208" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 45", + "urn:barcode:33433076134208" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 45", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134208", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 45" + ], + "shelfMark_sort": "aSc MG 162 box 000045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941006" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 46" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134216" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 46", + "urn:barcode:33433076134216" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 46", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134216", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 46" + ], + "shelfMark_sort": "aSc MG 162 box 000046", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941007" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 47" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134224" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 47", + "urn:barcode:33433076134224" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 47", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134224", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 47" + ], + "shelfMark_sort": "aSc MG 162 box 000047", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941008" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 48" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134232" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 48", + "urn:barcode:33433076134232" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 48", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134232", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 48" + ], + "shelfMark_sort": "aSc MG 162 box 000048", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941009" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 49" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134240" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 49", + "urn:barcode:33433076134240" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 49", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134240", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 49" + ], + "shelfMark_sort": "aSc MG 162 box 000049", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941010" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 50" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134257" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 50", + "urn:barcode:33433076134257" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 50", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134257", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 50" + ], + "shelfMark_sort": "aSc MG 162 box 000050", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941011" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 51" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134265" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 51", + "urn:barcode:33433076134265" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 51", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134265", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 51" + ], + "shelfMark_sort": "aSc MG 162 box 000051", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941012" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 52" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134273" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 52", + "urn:barcode:33433076134273" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 52", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134273", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 52" + ], + "shelfMark_sort": "aSc MG 162 box 000052", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941013" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 53" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134281" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 53", + "urn:barcode:33433076134281" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 53", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134281", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 53" + ], + "shelfMark_sort": "aSc MG 162 box 000053", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941014" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 54" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134299" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 54", + "urn:barcode:33433076134299" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 54", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134299", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 54" + ], + "shelfMark_sort": "aSc MG 162 box 000054", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941015" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 55" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134307" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 55", + "urn:barcode:33433076134307" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 55", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134307", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 55" + ], + "shelfMark_sort": "aSc MG 162 box 000055", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941016" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 56" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134315" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 56", + "urn:barcode:33433076134315" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 56", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134315", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 56" + ], + "shelfMark_sort": "aSc MG 162 box 000056", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941017" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 57" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134323" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 57", + "urn:barcode:33433076134323" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 57", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134323", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 57" + ], + "shelfMark_sort": "aSc MG 162 box 000057", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941018" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 58" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134331" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 58", + "urn:barcode:33433076134331" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 58", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134331", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 58" + ], + "shelfMark_sort": "aSc MG 162 box 000058", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941019" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 59" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134349" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 59", + "urn:barcode:33433076134349" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 59", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134349", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 59" + ], + "shelfMark_sort": "aSc MG 162 box 000059", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941020" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 60" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134356" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 60", + "urn:barcode:33433076134356" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 60", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134356", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 60" + ], + "shelfMark_sort": "aSc MG 162 box 000060", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941021" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 61" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134364" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 61", + "urn:barcode:33433076134364" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 61", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134364", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 61" + ], + "shelfMark_sort": "aSc MG 162 box 000061", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941022" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 62" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134372" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 62", + "urn:barcode:33433076134372" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 62", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134372", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 62" + ], + "shelfMark_sort": "aSc MG 162 box 000062", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941023" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 63" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134380" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 63", + "urn:barcode:33433076134380" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 63", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134380", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 63" + ], + "shelfMark_sort": "aSc MG 162 box 000063", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941024" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 64" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134398" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 64", + "urn:barcode:33433076134398" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 64", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134398", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 64" + ], + "shelfMark_sort": "aSc MG 162 box 000064", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941025" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 65" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134406" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 65", + "urn:barcode:33433076134406" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 65", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134406", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 65" + ], + "shelfMark_sort": "aSc MG 162 box 000065", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941026" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 66" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134414" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 66", + "urn:barcode:33433076134414" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 66", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134414", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 66" + ], + "shelfMark_sort": "aSc MG 162 box 000066", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941027" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 67" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134422" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 67", + "urn:barcode:33433076134422" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 67", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134422", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 67" + ], + "shelfMark_sort": "aSc MG 162 box 000067", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941028" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 68" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134430" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 68", + "urn:barcode:33433076134430" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 68", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134430", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 68" + ], + "shelfMark_sort": "aSc MG 162 box 000068", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941029" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 69" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134448" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 69", + "urn:barcode:33433076134448" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 69", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134448", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 69" + ], + "shelfMark_sort": "aSc MG 162 box 000069", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941030" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 70" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134455" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 70", + "urn:barcode:33433076134455" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 70", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134455", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 70" + ], + "shelfMark_sort": "aSc MG 162 box 000070", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941031" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 71" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134463" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 71", + "urn:barcode:33433076134463" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 71", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134463", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 71" + ], + "shelfMark_sort": "aSc MG 162 box 000071", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941032" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 72" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134471" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 72", + "urn:barcode:33433076134471" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 72", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134471", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 72" + ], + "shelfMark_sort": "aSc MG 162 box 000072", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941033" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 73" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134489" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 73", + "urn:barcode:33433076134489" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 73", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134489", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 73" + ], + "shelfMark_sort": "aSc MG 162 box 000073", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941034" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 74" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134497" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 74", + "urn:barcode:33433076134497" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 74", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134497", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 74" + ], + "shelfMark_sort": "aSc MG 162 box 000074", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941035" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 75" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134505" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 75", + "urn:barcode:33433076134505" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 75", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134505", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 75" + ], + "shelfMark_sort": "aSc MG 162 box 000075", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941036" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 76" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134513" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 76", + "urn:barcode:33433076134513" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 76", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134513", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 76" + ], + "shelfMark_sort": "aSc MG 162 box 000076", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941037" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 77" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134521" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 77", + "urn:barcode:33433076134521" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 77", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134521", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 77" + ], + "shelfMark_sort": "aSc MG 162 box 000077", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941038" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 78" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134539" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 78", + "urn:barcode:33433076134539" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 78", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134539", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 78" + ], + "shelfMark_sort": "aSc MG 162 box 000078", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941039" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 79" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134547" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 79", + "urn:barcode:33433076134547" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 79", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134547", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 79" + ], + "shelfMark_sort": "aSc MG 162 box 000079", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941040" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 80" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134554" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 80", + "urn:barcode:33433076134554" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 80", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134554", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 80" + ], + "shelfMark_sort": "aSc MG 162 box 000080", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941041" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 81" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134562" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 81", + "urn:barcode:33433076134562" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 81", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134562", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 81" + ], + "shelfMark_sort": "aSc MG 162 box 000081", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941042" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 82" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134570" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 82", + "urn:barcode:33433076134570" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 82", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134570", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 82" + ], + "shelfMark_sort": "aSc MG 162 box 000082", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941043" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 83" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134588" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 83", + "urn:barcode:33433076134588" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 83", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134588", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 83" + ], + "shelfMark_sort": "aSc MG 162 box 000083", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941044" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 84" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134596" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 84", + "urn:barcode:33433076134596" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 84", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134596", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 84" + ], + "shelfMark_sort": "aSc MG 162 box 000084", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941045" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 85" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134604" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 85", + "urn:barcode:33433076134604" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 85", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134604", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 85" + ], + "shelfMark_sort": "aSc MG 162 box 000085", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941046" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 86" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134612" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 86", + "urn:barcode:33433076134612" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 86", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134612", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 86" + ], + "shelfMark_sort": "aSc MG 162 box 000086", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941047" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 87" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134620" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 87", + "urn:barcode:33433076134620" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 87", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134620", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 87" + ], + "shelfMark_sort": "aSc MG 162 box 000087", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941048" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 88" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134638" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 88", + "urn:barcode:33433076134638" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 88", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134638", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 88" + ], + "shelfMark_sort": "aSc MG 162 box 000088", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941049" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 89" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134646" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 89", + "urn:barcode:33433076134646" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 89", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134646", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 89" + ], + "shelfMark_sort": "aSc MG 162 box 000089", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941050" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 90" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134653" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 90", + "urn:barcode:33433076134653" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 90", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134653", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 90" + ], + "shelfMark_sort": "aSc MG 162 box 000090", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941051" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 91" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134661" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 91", + "urn:barcode:33433076134661" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 91", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134661", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 91" + ], + "shelfMark_sort": "aSc MG 162 box 000091", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941052" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 92" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134679" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 92", + "urn:barcode:33433076134679" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 92", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134679", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 92" + ], + "shelfMark_sort": "aSc MG 162 box 000092", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941053" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 93" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134687" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 93", + "urn:barcode:33433076134687" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 93", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134687", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 93" + ], + "shelfMark_sort": "aSc MG 162 box 000093", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941054" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 94" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134695" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 94", + "urn:barcode:33433076134695" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 94", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134695", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 94" + ], + "shelfMark_sort": "aSc MG 162 box 000094", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941055" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 95" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134703" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 95", + "urn:barcode:33433076134703" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 95", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134703", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 95" + ], + "shelfMark_sort": "aSc MG 162 box 000095", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941056" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 96" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134711" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 96", + "urn:barcode:33433076134711" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 96", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134711", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 96" + ], + "shelfMark_sort": "aSc MG 162 box 000096", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941057" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 97" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134729" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 97", + "urn:barcode:33433076134729" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 97", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134729", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 97" + ], + "shelfMark_sort": "aSc MG 162 box 000097", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941058" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 98" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134737" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 98", + "urn:barcode:33433076134737" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 98", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134737", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 98" + ], + "shelfMark_sort": "aSc MG 162 box 000098", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941059" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 99" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134745" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 99", + "urn:barcode:33433076134745" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 99", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134745", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 99" + ], + "shelfMark_sort": "aSc MG 162 box 000099", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941060" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 100" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134752" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 100", + "urn:barcode:33433076134752" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 100", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134752", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 100" + ], + "shelfMark_sort": "aSc MG 162 box 000100", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941061" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rccd8||Offsite", + "doc_count": 127 + }, + { + "key": "loc:scdd2||Schomburg Center - Manuscripts & Archives", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Mixed material", + "doc_count": 128 + } + ] + } + }, + "item_status": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 121 + }, + { + "key": "status:t||In transit", + "doc_count": 6 + }, + { + "key": "status:co||Loaned", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-4632508a621b40854f51bda3d3c3abe8.json b/test/fixtures/query-4632508a621b40854f51bda3d3c3abe8.json new file mode 100644 index 00000000..40fbbe05 --- /dev/null +++ b/test/fixtures/query-4632508a621b40854f51bda3d3c3abe8.json @@ -0,0 +1,12759 @@ +{ + "body": { + "took": 1033, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.261211, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 14.261211, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 834 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 839 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "contributorLiteralNormalized": [ + "Harold Ross", + "Harold Wallace Ross", + "William Shawn", + "Tina Brown", + "David Remnick", + "Katharine White", + "Katharine Sergeant White", + "Katharine Sergeant Angell White", + "E. White", + "E. B. White", + "Rea Irvin", + "Roger Angell" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 769 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "popularity": 1033, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 11 (May. 6, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 12 (May. 13, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 13 (May. 20, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 14 (May. 27, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 15 (Jun. 3, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 16 (Jun. 10, 2024)", + "position": 89, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 17 (Jun. 17, 2024)", + "position": 90, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 18 (Jun. 24, 2024)", + "position": 91, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 19 (Jul. 1, 2024)", + "position": 92, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 20 (Jul. 8, 2024)", + "position": 93, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 21 (Jul. 22, 2024)", + "position": 94, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 22 (Jul. 29, 2024)", + "position": 95, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 23 (Aug. 5, 2024)", + "position": 96, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 24 (Aug. 12, 2024)", + "position": 97, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 25 (Aug. 19, 2024)", + "position": 98, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 26 (Aug. 26, 2024)", + "position": 99, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 27 (Sep. 2, 2024)", + "position": 100, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 28 (Sep. 9, 2024)", + "position": 101, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 29 (Sep. 16, 2024)", + "position": 102, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 30 (Sep. 23, 2024)", + "position": 103, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 31 (Sep. 30, 2024)", + "position": 104, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 32 (Oct. 7, 2024)", + "position": 105, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 33 (Oct. 14, 2024)", + "position": 106, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 34 (Oct. 21, 2024)", + "position": 107, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 35 (Oct. 28, 2024)", + "position": 108, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1725650390151, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 132 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "contributorLiteralWithoutDates": [ + "Ross, Harold Wallace", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks)", + "Irvin, Rea", + "Angell, Roger" + ], + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 575, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Aug. 2-Oct 25, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780362" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780362", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904679" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Feb 15-May 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780347" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780347", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904674" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (May 10-July 26, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780354" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780354", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904678" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742412" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269794" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742438" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269804" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742420" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (May-July 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269798" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742404" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269792" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033313" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232401" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033339" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232406" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033297" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232353" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033305" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (May-July 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232398" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033321" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232403" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872095" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060542" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872087" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36060538" + }, + "sort": [ + " 91-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611091" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878981" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611075" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611075", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878989" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610945" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28879000" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611109" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611109", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878974" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611083" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611083", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (June-July 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878983" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610952" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878991" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611133" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611133", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878953" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611117", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878970" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611141" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611141", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878948" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611125" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611125", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878958" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099612925" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099612925", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28974701" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611174" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611174", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878925" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611190" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611190", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878911" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611182" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611182", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (May-June 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878920" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611166" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611166", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878932" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064214" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064214", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589205" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064172" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064172", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589287" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063976" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063976", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589242" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063950" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063950", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589272" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064008" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064008", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (June-July 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589214" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063992" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063992", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589223" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064198" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589269" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063968" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063968", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589251" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064206" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064206", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589263" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064180" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064180", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589278" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063943" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063943", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589274" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063984" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063984", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589229" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240583" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240583", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474923" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240542" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240542", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474919" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240567" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240567", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474921" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240559" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240559", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (May-June 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474920" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240575" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240575", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474922" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240500" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240500", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474915" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240534" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240534", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474918" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240492" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240492", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474914" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240518" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240518", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474916" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240526" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240526", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474917" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240484" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240484", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474913" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080028222" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433080028222", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474447" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078508037" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078508037", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474399" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240468" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240468", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (May-June 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474911" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240476" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240476", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474912" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240419" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240419", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474906" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240435" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240435", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474908" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240450" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240450", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474910" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240401", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474905" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240427" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240427", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (June-July 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474907" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240443" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240443", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474909" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240351" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240351", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474900" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240377", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474902" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240393", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474904" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240344" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240344", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474899" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240369" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240369", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (June-July 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474901" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240385", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474903" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240310", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474896" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240336" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240336", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474898" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240302", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474895" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433079991612" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433079991612", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (May-July 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474446" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240328" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240328", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474897" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080426707" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "urn:barcode:33433080426707" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "type": "bf:ShelfMark" + }, + { + "value": "33433080426707", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474434" + }, + "sort": [ + " 76-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240278" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240278", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i40028166" + }, + "sort": [ + " 76-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (July-Aug. 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078639105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078639105", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474402" + }, + "sort": [ + " 76-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240294" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240294", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474894" + }, + "sort": [ + " 76-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Sept.-Oct. 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240286" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240286", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474893" + }, + "sort": [ + " 76-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240260" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240260", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474892" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (July-Aug. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240237" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240237", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474889" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 110 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (May 10-June 28, 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240229" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240229", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474888" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (Nov. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240252" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240252", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Nov. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474891" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (Sept.-Oct. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240245" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240245", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474890" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75(Feb.22-May 3, 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240211" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474887" + }, + "sort": [ + " 75-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 74 (June- Aug. 1998)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240195" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240195", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474885" + }, + "sort": [ + " 74-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078660671" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078660671", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474403" + }, + "sort": [ + " 74-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240203" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240203", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474886" + }, + "sort": [ + " 74-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 74" + ], + "enumerationChronology_sort": [ + " 74-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080030616" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74", + "type": "bf:ShelfMark" + }, + { + "value": "33433080030616", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474453" + }, + "sort": [ + " 74-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (Aug-Oct 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658113" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658113", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17474430" + }, + "sort": [ + " 73-1997" + ] + }, + { + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (Feb 17-May 5 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658105", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17474429" + }, + "sort": [ + " 73-1997" + ] + }, + { + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (May 12-July 28, 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433081121117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433081121117", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i16700889" + }, + "sort": [ + " 73-1997" + ] + }, + { + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078530031" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078530031", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17142393" + }, + "sort": [ + " 73-1997" + ] + }, + { + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Apr 29-July 1 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658063" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658063", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474425" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658097" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658097", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474428" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Feb 19-Apr 22 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078626128" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078626128", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474400" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (July 8-Sept 30 1996 (inc))" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658071" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658071", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474426" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Oct 7-Nov 25 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658089" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658089", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474427" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 131 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Apr.-May 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240187" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "urn:barcode:33433084240187" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240187", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Apr.-May 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Apr.-May 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474884" + }, + "sort": [ + " 71-1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 130 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Aug-Sept 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658030" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "urn:barcode:33433078658030" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658030", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Aug-Sept 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474422" + }, + "sort": [ + " 71-1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 129 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658055" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "urn:barcode:33433078658055" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658055", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Dec 4 1995-Feb 12 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474424" + }, + "sort": [ + " 71-1995" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 839, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 838 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-04-26" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 10" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 837 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-29" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 6" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 836 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-22" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 5" + ] + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 132 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 707 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 108 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 774 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:co||Loaned", + "doc_count": 11 + }, + { + "key": "status:na||Not available", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-48e2744e6a6038997976efb1edaca0cb.json b/test/fixtures/query-48e2744e6a6038997976efb1edaca0cb.json new file mode 100644 index 00000000..cf8de2dd --- /dev/null +++ b/test/fixtures/query-48e2744e6a6038997976efb1edaca0cb.json @@ -0,0 +1,538 @@ +{ + "body": { + "took": 6, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.45847, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10022734", + "_score": 14.45847, + "_source": { + "extent": [ + "xiv, 381 p., [16] leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "creatorLiteralWithoutDates": [ + "Lewis, David Levering" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "African American arts", + "African American arts -- New York (State)", + "African American arts -- New York (State) -- New York", + "Arts, Modern", + "Arts, Modern -- 20th century", + "Arts, Modern -- 20th century -- New York (State)", + "Arts, Modern -- 20th century -- New York (State) -- New York", + "Harlem Renaissance", + "Harlem (New York, N.Y.)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Knopf : distributed by Random House" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1981 + ], + "title": [ + "When Harlem was in vogue" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "IEC 81-1139" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1981" + ], + "creatorLiteral": [ + "Lewis, David Levering, 1936-" + ], + "idLccn": [ + "80002704" + ], + "creatorLiteralNormalized": [ + "David Lewis", + "David Levering Lewis" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "idOclc": [ + "NYPG25743597-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IEC 81-1139" + }, + { + "type": "nypl:Bnumber", + "value": "10022734" + }, + { + "type": "bf:Isbn", + "value": "0394495721" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25743597-B" + }, + { + "type": "bf:Lccn", + "value": "80002704" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0022812" + } + ], + "popularity": 180, + "updatedAt": 1722349045777, + "publicationStatement": [ + "New York : Knopf : distributed by Random House, 1981." + ], + "idIsbn": [ + "0394495721" + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:bnum:10022734", + "urn:isbn:0394495721", + "urn:oclc:NYPG25743597-B", + "urn:lccn:80002704", + "urn:identifier:(WaOLN)nyp0022812" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "African American arts -- New York (State) -- New York.", + "Arts, Modern -- 20th century -- New York (State) -- New York.", + "Harlem Renaissance.", + "Harlem (New York, N.Y.)" + ], + "titleDisplay": [ + "When Harlem was in vogue / David Levering Lewis." + ], + "uri": "b10022734", + "lccClassification": [ + "NX511.N4 L48 1981" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0394495721" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag82", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag82||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433035187214" + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:barcode:33433035187214" + ], + "identifierV2": [ + { + "value": "IEC 81-1139", + "type": "bf:ShelfMark" + }, + { + "value": "33433035187214", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1105", + "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" + } + ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], + "physicalLocation": [ + "IEC 81-1139" + ], + "requestable": [ + true + ], + "shelfMark": [ + "IEC 81-1139" + ], + "shelfMark_sort": "aIEC 81-001139", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010902" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:-", + "label": "No restrictions" + } + ], + "accessMessage_packed": [ + "accessMessage:-||No restrictions" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } + ], + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "idBarcode": [ + "33433015873411" + ], + "identifier": [ + "urn:shelfmark:Sc *700-L (Lewis, D. When Harlem was in vogue)", + "urn:barcode:33433015873411" + ], + "identifierV2": [ + { + "value": "Sc *700-L (Lewis, D. When Harlem was in vogue)", + "type": "bf:ShelfMark" + }, + { + "value": "33433015873411", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc *700-L (Lewis, D. When Harlem was in vogue)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc *700-L (Lewis, D. When Harlem was in vogue)" + ], + "shelfMark_sort": "aSc *700-L (Lewis, D. When Harlem was in vogue)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010903" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433034124614" + ], + "identifier": [ + "urn:shelfmark:Sc E 96-780", + "urn:barcode:33433034124614" + ], + "identifierV2": [ + { + "value": "Sc E 96-780", + "type": "bf:ShelfMark" + }, + { + "value": "33433034124614", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc E 96-780" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc E 96-780" + ], + "shelfMark_sort": "aSc E 96-000780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010904" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mag82||Schwarzman Building - Milstein Division Room 121", + "doc_count": 1 + }, + { + "key": "loc:scff1||Schomburg Center - Research & Reference - Open Shelf", + "doc_count": 1 + }, + { + "key": "loc:scff2||Schomburg Center - Research & Reference", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 3 + } + ] + } + }, + "item_status": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 3 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-4a755b5e5368749bd0a0e34e33ed399a.json b/test/fixtures/query-4a755b5e5368749bd0a0e34e33ed399a.json new file mode 100644 index 00000000..caeca178 --- /dev/null +++ b/test/fixtures/query-4a755b5e5368749bd0a0e34e33ed399a.json @@ -0,0 +1,1311 @@ +{ + "body": { + "took": 59, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.565778, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.565778, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 4 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1855 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "idOclc": [ + "1608345" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1711598098379, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": [ + " -1933" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646033" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-4bd12c3ae52888c5c98968e87119421a.json b/test/fixtures/query-4bd12c3ae52888c5c98968e87119421a.json new file mode 100644 index 00000000..c856a85b --- /dev/null +++ b/test/fixtures/query-4bd12c3ae52888c5c98968e87119421a.json @@ -0,0 +1,352 @@ +{ + "body": { + "took": 11, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.59108, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10628074", + "_score": 15.59108, + "_source": { + "extent": [ + "387 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Diet", + "Diet -- Great Britain", + "Food consumption", + "Food consumption -- Great Britain" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Scolar Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "title": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JLD 80-944" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1979" + ], + "creatorLiteral": [ + "Burnett, John, 1925-" + ], + "idLccn": [ + "79322081" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "idOclc": [ + "5330384", + "NYPG804170330-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLD 80-944" + }, + { + "type": "nypl:Bnumber", + "value": "10628074" + }, + { + "type": "bf:Isbn", + "value": "0859674614" + }, + { + "type": "nypl:Oclc", + "value": "5330384" + }, + { + "type": "nypl:Oclc", + "value": "NYPG804170330-B" + }, + { + "type": "bf:Lccn", + "value": "79322081" + }, + { + "type": "bf:Identifier", + "value": "NN804170330" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0633800" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5330384" + } + ], + "updatedAt": 1711304061983, + "publicationStatement": [ + "London : Scolar Press, 1979." + ], + "idIsbn": [ + "0859674614" + ], + "identifier": [ + "urn:shelfmark:JLD 80-944", + "urn:bnum:10628074", + "urn:isbn:0859674614", + "urn:oclc:5330384", + "urn:oclc:NYPG804170330-B", + "urn:lccn:79322081", + "urn:identifier:NN804170330", + "urn:identifier:(WaOLN)nyp0633800", + "urn:identifier:(OCoLC)5330384" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "titleDisplay": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "uri": "b10628074", + "lccClassification": [ + "TX360.G7 B8 1979" + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ], + "idIsbn_clean": [ + "0859674614" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433080108636" + ], + "identifier": [ + "urn:shelfmark:JLD 80-944", + "urn:barcode:33433080108636" + ], + "identifierV2": [ + { + "value": "JLD 80-944", + "type": "bf:ShelfMark" + }, + { + "value": "33433080108636", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLD 80-944" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JLD 80-944" + ], + "shelfMark_sort": "aJLD 80-000944", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i15761885" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-82a17d8e09213631372470f2e3ce6c12.json b/test/fixtures/query-82a17d8e09213631372470f2e3ce6c12.json new file mode 100644 index 00000000..cde2a275 --- /dev/null +++ b/test/fixtures/query-82a17d8e09213631372470f2e3ce6c12.json @@ -0,0 +1,281 @@ +{ + "body": { + "took": 15, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.560494, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "cb4032259", + "_score": 15.560494, + "_source": { + "extent": [ + "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliographical footnotes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "recap-cul" + ], + "subjectLiteral_exploded": [ + "Diet", + "Diet -- Great Britain", + "Food consumption", + "Food consumption -- Great Britain" + ], + "publisherLiteral": [ + "Nelson," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "creatorLiteral": [ + "Burnett, John, 1925-2006." + ], + "createdString": [ + "1966" + ], + "idLccn": [ + " 66070181 " + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "4032259" + }, + { + "type": "bf:Lccn", + "value": " 66070181 " + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)ocm01650294" + }, + { + "type": "bf:Identifier", + "value": "(NNC)4032259" + }, + { + "type": "bf:Identifier", + "value": "4032259" + } + ], + "updatedAt": 1631229286701, + "publicationStatement": [ + "[London] : Nelson, 1966." + ], + "identifier": [ + "urn:bnum:4032259", + "urn:lccn: 66070181 ", + "urn:undefined:(OCoLC)ocm01650294", + "urn:undefined:(NNC)4032259", + "urn:undefined:4032259" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:undefined", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:undefined", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "titleDisplay": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "uri": "cb4032259", + "lccClassification": [ + "TX360.G7 B8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[London] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "ci4087955", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:0002", + "label": "Columbia University Libraries" + } + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "shelfMark": [ + "TX360.G79 B93 1966" + ], + "identifierV2": [ + { + "value": "TX360.G79 B93 1966", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "HS65164695" + } + ], + "physicalLocation": [ + "TX360.G79 B93 1966" + ], + "identifier": [ + "urn:barcode:HS65164695" + ], + "idBarcode": [ + "HS65164695" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "aTX360.G79 B93 001966" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-8641f97f68086958e020b8297e452e23.json b/test/fixtures/query-8641f97f68086958e020b8297e452e23.json new file mode 100644 index 00000000..1e198db1 --- /dev/null +++ b/test/fixtures/query-8641f97f68086958e020b8297e452e23.json @@ -0,0 +1,43 @@ +{ + "body": { + "took": 2, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 0, + "max_score": null, + "hits": [] + }, + "aggregations": { + "item_location": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-884ac2a647266229f3ce4dc8644bebaa.json b/test/fixtures/query-884ac2a647266229f3ce4dc8644bebaa.json new file mode 100644 index 00000000..b8d0578a --- /dev/null +++ b/test/fixtures/query-884ac2a647266229f3ce4dc8644bebaa.json @@ -0,0 +1,33864 @@ +{ + "body": { + "took": 35, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.527203, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b15109087", + "_score": 15.527203, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Published at Bruxelles, 1773-1775; at Liége, 1776-1781.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Description based on: 19th année, t. 10 (Oct. 1790).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Periodicals" + ], + "numItemDatesParsed": [ + 370 + ], + "publisherLiteral": [ + "Valade" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 370 + ], + "createdYear": [ + 17 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "L'Esprit des journaux, françois et étrangers" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "numItemVolumesParsed": [ + 365 + ], + "createdString": [ + "17uu" + ], + "numElectronicResources": [ + 368 + ], + "contributorLiteral": [ + "Société de gens de lettres." + ], + "dateStartYear": [ + 17 + ], + "idOclc": [ + "1568232" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers)" + }, + { + "type": "nypl:Bnumber", + "value": "15109087" + }, + { + "type": "nypl:Oclc", + "value": "1568232" + }, + { + "type": "bf:Identifier", + "value": "0246617" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)Z150000218" + } + ], + "dateEndYear": [ + 1 + ], + "contributor_sort": [ + "société de gens de lettres." + ], + "updatedAt": 1711593229661, + "publicationStatement": [ + "Paris : Valade" + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers)", + "urn:bnum:15109087", + "urn:oclc:1568232", + "urn:identifier:0246617", + "urn:identifier:(WaOLN)Z150000218" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "17uu" + ], + "title_sort": [ + "lesprit des journaux francois et etrangers" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Periodicals." + ], + "titleDisplay": [ + "L'Esprit des journaux, françois et étrangers / par une Société de gens-de-lettres." + ], + "uri": "b15109087", + "electronicResources": [ + { + "label": "Full text available via HathiTrust--Table (1782-1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743126" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1818)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743134" + }, + { + "label": "Full text available via HathiTrust--no. 2-3 (1818)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743142" + }, + { + "label": "Full text available via HathiTrust--no. 12, 1817-no. 1, 1818", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743159" + }, + { + "label": "Full text available via HathiTrust--no. 10-11 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743167" + }, + { + "label": "Full text available via HathiTrust--no. 8-9 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743175" + }, + { + "label": "Full text available via HathiTrust--no. 6-7 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743183" + }, + { + "label": "Full text available via HathiTrust--no. 4-5 (1817)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743191" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743209" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743217" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743225" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743233" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743241" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1814)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743258" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743266" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743274" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743282" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743290" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743308" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1809)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743316" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743324" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743332" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743340" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743357" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743365" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743373" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743381" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743399" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743407" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743423" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743431" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743449" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743456" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743464" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1806)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743472" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743480" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743498" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743506" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743514" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743522" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743530" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743548" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743555" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1813)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743563" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743571" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743589" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743597" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743605" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743613" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1812)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743621" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743639" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743647" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743654" + }, + { + "label": "Full text available via HathiTrust--v. 5-6 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743662" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743670" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1811)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743688" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743696" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743704" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743712" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1808)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743720" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743738" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743746" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1810)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743753" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743761" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743779" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743787" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743795" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743803" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743811" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743829" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743837" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743845" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743852" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743860" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743878" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743886" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1792)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743894" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743902" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743910" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743928" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743936" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743944" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743951" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743969" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743977" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743985" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081743993" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744009" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1791)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744017" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744025" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744033" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744041" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744058" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744066" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744074" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744082" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744090" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744108" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744116" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744124" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1790)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744132" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744140" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744157" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744165" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744173" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744181" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744199" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744207" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744215" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1789)", + "url": "http://hdl.handle.net/2027/nyp.33433081744223" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744231" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744249" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1789)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744256" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744264" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744272" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1795)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744280" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744298" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744306" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744314" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744322" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744330" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744348" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744355" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744363" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744371" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744389" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744397" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1794)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744405" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744413" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744421" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744439" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744447" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744454" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744462" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744470" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744488" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744496" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1793)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744504" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744512" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744520" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744538" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744546" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744553" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744561" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1800)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744579" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744587" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744595" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744603" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744611" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744629" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1799)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744637" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744645" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744652" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744660" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744678" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744686" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1798)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744694" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744702" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744710" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1797)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744728" + }, + { + "label": "Full text available via HathiTrust--no. 9-12 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744736" + }, + { + "label": "Full text available via HathiTrust--no. 5-8 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744744" + }, + { + "label": "Full text available via HathiTrust--no. 1-4 (1796)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744751" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1807)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744769" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744777" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744785" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744793" + }, + { + "label": "Full text available via HathiTrust--Table Generale 1-28 (1803-1805)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744801" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744819" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744827" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744835" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744843" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744850" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1804)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744868" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744876" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744884" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1803)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744892" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744900" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744918" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744926" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744934" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744942" + }, + { + "label": "Full text available via HathiTrust--no. 1-2 (1802)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744959" + }, + { + "label": "Full text available via HathiTrust--no. 11-12 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744967" + }, + { + "label": "Full text available via HathiTrust--no. 9-10 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744975" + }, + { + "label": "Full text available via HathiTrust--no. 7-8 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744983" + }, + { + "label": "Full text available via HathiTrust--no. 5-6 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081744991" + }, + { + "label": "Full text available via HathiTrust--no. 3-4 (1801)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745006" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745014" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745022" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745030" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745048" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745055" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745063" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745071" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745089" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745097" + }, + { + "label": "Full text available via HathiTrust--Table (1779-1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745105" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745113" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745121" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745139" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745147" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745154" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745162" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745170" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745188" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745196" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745204" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745212" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745220" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1781)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745238" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745246" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745253" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745261" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745279" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745287" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745295" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745303" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745311" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745329" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745337" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1780)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745345" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745352" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745360" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745378" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745386" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745394" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745402" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745410" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745428" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745436" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745444" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745451" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1779)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745469" + }, + { + "label": "Full text available via HathiTrust--Table (1776-1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745477" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745485" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745493" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745501" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745519" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745527" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745535" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745543" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745550" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745568" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745576" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745584" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745592" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745600" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745618" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745626" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745634" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745642" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745659" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745667" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745675" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745683" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745691" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745709" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745717" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1783)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745725" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745733" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745741" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1782)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745758" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745766" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745774" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745782" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745790" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745808" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745816" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745824" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745832" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745840" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745857" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745865" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745873" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745881" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745899" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745907" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745915" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745923" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745931" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745949" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745956" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745964" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745972" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745980" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081745998" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1784)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746004" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746012" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746020" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746038" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746046" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746053" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746061" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746079" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746087" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746095" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746103" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746111" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1788)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746129" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746137" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746145" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746152" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746160" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746178" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746186" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746194" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746202" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746210" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1786)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746228" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1785)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746236" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1787)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746244" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746764" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746772" + }, + { + "label": "Full text available via HathiTrust--no. 4-6 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746780" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1773)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746798" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1772)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746806" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1772)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081746814" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747010" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747028" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747036" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747044" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747051" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747069" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747077" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747085" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747093" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747101" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747119" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747127" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747135" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747143" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747150" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747168" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747176" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747184" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747192" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747200" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747218" + }, + { + "label": "Full text available via HathiTrust--no. 10-12 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747226" + }, + { + "label": "Full text available via HathiTrust--no. 7-9 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747234" + }, + { + "label": "Full text available via HathiTrust--no. 4-6 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747242" + }, + { + "label": "Full text available via HathiTrust--no. 1-3 (1774)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747259" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747267" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747275" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747283" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747291" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747309" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747317" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747325" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747333" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1778)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747341" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747358" + }, + { + "label": "Full text available via HathiTrust--no. 11 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747366" + }, + { + "label": "Full text available via HathiTrust--no. 10 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747374" + }, + { + "label": "Full text available via HathiTrust--no. 9 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747382" + }, + { + "label": "Full text available via HathiTrust--no. 8 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747390" + }, + { + "label": "Full text available via HathiTrust--no. 7 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747408" + }, + { + "label": "Full text available via HathiTrust--no. 6 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747416" + }, + { + "label": "Full text available via HathiTrust--no. 5 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747424" + }, + { + "label": "Full text available via HathiTrust--no. 4 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747432" + }, + { + "label": "Full text available via HathiTrust--no. 3 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747440" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747457" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1777)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747465" + }, + { + "label": "Full text available via HathiTrust--no. 2 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747473" + }, + { + "label": "Full text available via HathiTrust--no. 1 (1776)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747481" + }, + { + "label": "Full text available via HathiTrust--Table (1772-1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747499" + }, + { + "label": "Full text available via HathiTrust--no. 12 (1775)", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081747507" + } + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Esprit des journaux" + ], + "items": [ + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) v. 5-6 (1811)", + "urn:barcode:33433081743662" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) v. 000005-6 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) v. 5-6 (1811)" + ], + "uri": "i17146009", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) v. 5-6 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743662" + } + ], + "enumerationChronology": [ + "v. 5-6 (1811)" + ], + "idBarcode": [ + "33433081743662" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12, 1817-no. 1, 1818", + "urn:barcode:33433081743159" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012, 1817-no. 1, 1818", + "dateRange": [ + { + "gte": "1817", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1817" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12, 1817-no. 1, 1818" + ], + "uri": "i17146035", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12, 1817-no. 1, 1818" + }, + { + "type": "bf:Barcode", + "value": "33433081743159" + } + ], + "enumerationChronology": [ + "no. 12, 1817-no. 1, 1818" + ], + "idBarcode": [ + "33433081743159" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + }, + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1794)", + "urn:barcode:33433081744298" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1794)" + ], + "uri": "i17145921", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744298" + } + ], + "enumerationChronology": [ + "no. 12 (1794)" + ], + "idBarcode": [ + "33433081744298" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1793)", + "urn:barcode:33433081744413" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1793)" + ], + "uri": "i17145909", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744413" + } + ], + "enumerationChronology": [ + "no. 12 (1793)" + ], + "idBarcode": [ + "33433081744413" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1792)", + "urn:barcode:33433081743787" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1792)" + ], + "uri": "i17145897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743787" + } + ], + "enumerationChronology": [ + "no. 12 (1792)" + ], + "idBarcode": [ + "33433081743787" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1791)", + "urn:barcode:33433081743902" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1791)" + ], + "uri": "i17145885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743902" + } + ], + "enumerationChronology": [ + "no. 12 (1791)" + ], + "idBarcode": [ + "33433081743902" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1790)", + "urn:barcode:33433081744025" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1790)" + ], + "uri": "i17145873", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744025" + } + ], + "enumerationChronology": [ + "no. 12 (1790)" + ], + "idBarcode": [ + "33433081744025" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1789)", + "urn:barcode:33433081744140" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1789)" + ], + "uri": "i17145861", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744140" + } + ], + "enumerationChronology": [ + "no. 12 (1789)" + ], + "idBarcode": [ + "33433081744140" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1788)", + "urn:barcode:33433081746012" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1788)" + ], + "uri": "i17145849", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746012" + } + ], + "enumerationChronology": [ + "no. 12 (1788)" + ], + "idBarcode": [ + "33433081746012" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1787)", + "urn:barcode:33433081746137" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1787)" + ], + "uri": "i17145837", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746137" + } + ], + "enumerationChronology": [ + "no. 12 (1787)" + ], + "idBarcode": [ + "33433081746137" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1786)", + "urn:barcode:33433081746194" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1786)" + ], + "uri": "i17145831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081746194" + } + ], + "enumerationChronology": [ + "no. 12 (1786)" + ], + "idBarcode": [ + "33433081746194" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1785)", + "urn:barcode:33433081745956" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1785)" + ], + "uri": "i17145805", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745956" + } + ], + "enumerationChronology": [ + "no. 12 (1785)" + ], + "idBarcode": [ + "33433081745956" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1784)", + "urn:barcode:33433081745998" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1784)" + ], + "uri": "i17145801", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745998" + } + ], + "enumerationChronology": [ + "no. 12 (1784)" + ], + "idBarcode": [ + "33433081745998" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1783)", + "urn:barcode:33433081745618" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1783)" + ], + "uri": "i17145789", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745618" + } + ], + "enumerationChronology": [ + "no. 12 (1783)" + ], + "idBarcode": [ + "33433081745618" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1782)", + "urn:barcode:33433081745733" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1782)" + ], + "uri": "i17145777", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745733" + } + ], + "enumerationChronology": [ + "no. 12 (1782)" + ], + "idBarcode": [ + "33433081745733" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1781)", + "urn:barcode:33433081745113" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1781)" + ], + "uri": "i17145764", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745113" + } + ], + "enumerationChronology": [ + "no. 12 (1781)" + ], + "idBarcode": [ + "33433081745113" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1780)", + "urn:barcode:33433081745212" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1780)" + ], + "uri": "i17145754", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745212" + } + ], + "enumerationChronology": [ + "no. 12 (1780)" + ], + "idBarcode": [ + "33433081745212" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1779)", + "urn:barcode:33433081745352" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1779)" + ], + "uri": "i17145740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745352" + } + ], + "enumerationChronology": [ + "no. 12 (1779)" + ], + "idBarcode": [ + "33433081745352" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1778)", + "urn:barcode:33433081745485" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1778)" + ], + "uri": "i17145727", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081745485" + } + ], + "enumerationChronology": [ + "no. 12 (1778)" + ], + "idBarcode": [ + "33433081745485" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1777)", + "urn:barcode:33433081747358" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1777)" + ], + "uri": "i17145715", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747358" + } + ], + "enumerationChronology": [ + "no. 12 (1777)" + ], + "idBarcode": [ + "33433081747358" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1776)", + "urn:barcode:33433081747010" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1776)" + ], + "uri": "i17145703", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747010" + } + ], + "enumerationChronology": [ + "no. 12 (1776)" + ], + "idBarcode": [ + "33433081747010" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 12 (1775)", + "urn:barcode:33433081747507" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000012 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 12-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1775)" + ], + "uri": "i17145690", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 12 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747507" + } + ], + "enumerationChronology": [ + "no. 12 (1775)" + ], + "idBarcode": [ + "33433081747507" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1814)", + "urn:barcode:33433081743209" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1814)" + ], + "uri": "i17146030", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743209" + } + ], + "enumerationChronology": [ + "no. 11-12 (1814)" + ], + "idBarcode": [ + "33433081743209" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1813)", + "urn:barcode:33433081743514" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1813)" + ], + "uri": "i17146024", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743514" + } + ], + "enumerationChronology": [ + "no. 11-12 (1813)" + ], + "idBarcode": [ + "33433081743514" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1812)", + "urn:barcode:33433081743571" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1812)" + ], + "uri": "i17146018", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743571" + } + ], + "enumerationChronology": [ + "no. 11-12 (1812)" + ], + "idBarcode": [ + "33433081743571" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1811)", + "urn:barcode:33433081743639" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1811)" + ], + "uri": "i17146012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743639" + } + ], + "enumerationChronology": [ + "no. 11-12 (1811)" + ], + "idBarcode": [ + "33433081743639" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1810)", + "urn:barcode:33433081743696" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1810)" + ], + "uri": "i17146006", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743696" + } + ], + "enumerationChronology": [ + "no. 11-12 (1810)" + ], + "idBarcode": [ + "33433081743696" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1809)", + "urn:barcode:33433081743266" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1809)" + ], + "uri": "i17145999", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743266" + } + ], + "enumerationChronology": [ + "no. 11-12 (1809)" + ], + "idBarcode": [ + "33433081743266" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1808)", + "urn:barcode:33433081743324" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1808)" + ], + "uri": "i17145993", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743324" + } + ], + "enumerationChronology": [ + "no. 11-12 (1808)" + ], + "idBarcode": [ + "33433081743324" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1807)", + "urn:barcode:33433081743373" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1807)" + ], + "uri": "i17145988", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081743373" + } + ], + "enumerationChronology": [ + "no. 11-12 (1807)" + ], + "idBarcode": [ + "33433081743373" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1806)", + "urn:barcode:33433081743423" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1806)" + ], + "uri": "i17145982", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743423" + } + ], + "enumerationChronology": [ + "no. 11-12 (1806)" + ], + "idBarcode": [ + "33433081743423" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1805)", + "urn:barcode:33433081743480" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1805)" + ], + "uri": "i17145976", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081743480" + } + ], + "enumerationChronology": [ + "no. 11-12 (1805)" + ], + "idBarcode": [ + "33433081743480" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)", + "urn:barcode:33433081744819" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" + ], + "uri": "i17145969", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744819" + } + ], + "enumerationChronology": [ + "no. 11-12 (1804)" + ], + "idBarcode": [ + "33433081744819" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1803)", + "urn:barcode:33433081744876" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1803)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1803" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1803)" + ], + "uri": "i17145963", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1803)" + }, + { + "type": "bf:Barcode", + "value": "33433081744876" + } + ], + "enumerationChronology": [ + "no. 11-12 (1803)" + ], + "idBarcode": [ + "33433081744876" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1802)", + "urn:barcode:33433081744900" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1802)" + ], + "uri": "i17145960", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744900" + } + ], + "enumerationChronology": [ + "no. 11-12 (1802)" + ], + "idBarcode": [ + "33433081744900" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1801)", + "urn:barcode:33433081744967" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1801)" + ], + "uri": "i17145954", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081744967" + } + ], + "enumerationChronology": [ + "no. 11-12 (1801)" + ], + "idBarcode": [ + "33433081744967" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1800)", + "urn:barcode:33433081744520" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1800)" + ], + "uri": "i17145948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744520" + } + ], + "enumerationChronology": [ + "no. 11-12 (1800)" + ], + "idBarcode": [ + "33433081744520" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1799)", + "urn:barcode:33433081744587" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1799)" + ], + "uri": "i17145942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744587" + } + ], + "enumerationChronology": [ + "no. 11-12 (1799)" + ], + "idBarcode": [ + "33433081744587" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1798)", + "urn:barcode:33433081744645" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1798)" + ], + "uri": "i17145936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744645" + } + ], + "enumerationChronology": [ + "no. 11-12 (1798)" + ], + "idBarcode": [ + "33433081744645" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1794)", + "urn:barcode:33433081744306" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1794)" + ], + "uri": "i17145920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744306" + } + ], + "enumerationChronology": [ + "no. 11 (1794)" + ], + "idBarcode": [ + "33433081744306" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1793)", + "urn:barcode:33433081744421" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1793)" + ], + "uri": "i17145908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744421" + } + ], + "enumerationChronology": [ + "no. 11 (1793)" + ], + "idBarcode": [ + "33433081744421" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)", + "urn:barcode:33433081743795" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" + ], + "uri": "i17145896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743795" + } + ], + "enumerationChronology": [ + "no. 11 (1792)" + ], + "idBarcode": [ + "33433081743795" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1791)", + "urn:barcode:33433081743910" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1791)" + ], + "uri": "i17145884", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743910" + } + ], + "enumerationChronology": [ + "no. 11 (1791)" + ], + "idBarcode": [ + "33433081743910" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1790)", + "urn:barcode:33433081744033" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1790)" + ], + "uri": "i17145872", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744033" + } + ], + "enumerationChronology": [ + "no. 11 (1790)" + ], + "idBarcode": [ + "33433081744033" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1789)", + "urn:barcode:33433081744157" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1789)" + ], + "uri": "i17145860", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744157" + } + ], + "enumerationChronology": [ + "no. 11 (1789)" + ], + "idBarcode": [ + "33433081744157" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1788)", + "urn:barcode:33433081746020" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1788)" + ], + "uri": "i17145848", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746020" + } + ], + "enumerationChronology": [ + "no. 11 (1788)" + ], + "idBarcode": [ + "33433081746020" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1787)", + "urn:barcode:33433081746145" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1787)" + ], + "uri": "i17145836", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746145" + } + ], + "enumerationChronology": [ + "no. 11 (1787)" + ], + "idBarcode": [ + "33433081746145" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1786)", + "urn:barcode:33433081746202" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1786)" + ], + "uri": "i17145830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081746202" + } + ], + "enumerationChronology": [ + "no. 11 (1786)" + ], + "idBarcode": [ + "33433081746202" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1785)", + "urn:barcode:33433081745964" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1785)" + ], + "uri": "i17145804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745964" + } + ], + "enumerationChronology": [ + "no. 11 (1785)" + ], + "idBarcode": [ + "33433081745964" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1784)", + "urn:barcode:33433081746004" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1784)" + ], + "uri": "i17145800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081746004" + } + ], + "enumerationChronology": [ + "no. 11 (1784)" + ], + "idBarcode": [ + "33433081746004" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)", + "urn:barcode:33433081745626" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" + ], + "uri": "i17145788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745626" + } + ], + "enumerationChronology": [ + "no. 11 (1783)" + ], + "idBarcode": [ + "33433081745626" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1782)", + "urn:barcode:33433081745741" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1782)" + ], + "uri": "i17145776", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745741" + } + ], + "enumerationChronology": [ + "no. 11 (1782)" + ], + "idBarcode": [ + "33433081745741" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1781)", + "urn:barcode:33433081745121" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1781)" + ], + "uri": "i17145763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745121" + } + ], + "enumerationChronology": [ + "no. 11 (1781)" + ], + "idBarcode": [ + "33433081745121" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1780)", + "urn:barcode:33433081745246" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1780)" + ], + "uri": "i17145751", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745246" + } + ], + "enumerationChronology": [ + "no. 11 (1780)" + ], + "idBarcode": [ + "33433081745246" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1779)", + "urn:barcode:33433081745360" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1779)" + ], + "uri": "i17145739", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745360" + } + ], + "enumerationChronology": [ + "no. 11 (1779)" + ], + "idBarcode": [ + "33433081745360" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1778)", + "urn:barcode:33433081745493" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1778)" + ], + "uri": "i17145726", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081745493" + } + ], + "enumerationChronology": [ + "no. 11 (1778)" + ], + "idBarcode": [ + "33433081745493" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1777)", + "urn:barcode:33433081747366" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1777)" + ], + "uri": "i17145714", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747366" + } + ], + "enumerationChronology": [ + "no. 11 (1777)" + ], + "idBarcode": [ + "33433081747366" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)", + "urn:barcode:33433081747028" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)" + ], + "uri": "i17145702", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747028" + } + ], + "enumerationChronology": [ + "no. 11 (1776)" + ], + "idBarcode": [ + "33433081747028" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)", + "urn:barcode:33433081747119" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)" + ], + "uri": "i17145689", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747119" + } + ], + "enumerationChronology": [ + "no. 11 (1776)" + ], + "idBarcode": [ + "33433081747119" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)", + "urn:barcode:33433081747226" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-12 (1774)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1774" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" + ], + "uri": "i17145678", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" + }, + { + "type": "bf:Barcode", + "value": "33433081747226" + } + ], + "enumerationChronology": [ + "no. 10-12 (1774)" + ], + "idBarcode": [ + "33433081747226" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1773)", + "urn:barcode:33433081746764" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-12 (1773)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1773" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1773)" + ], + "uri": "i17145674", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1773)" + }, + { + "type": "bf:Barcode", + "value": "33433081746764" + } + ], + "enumerationChronology": [ + "no. 10-12 (1773)" + ], + "idBarcode": [ + "33433081746764" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1772)", + "urn:barcode:33433081746806" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-12 (1772)", + "dateRange": [ + { + "gte": "1772", + "lte": "1772" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1772" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1772)" + ], + "uri": "i17145670", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1772)" + }, + { + "type": "bf:Barcode", + "value": "33433081746806" + } + ], + "enumerationChronology": [ + "no. 10-12 (1772)" + ], + "idBarcode": [ + "33433081746806" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-11 (1817)", + "urn:barcode:33433081743167" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-11 (1817)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1817" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10-11 (1817)" + ], + "uri": "i17146034", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-11 (1817)" + }, + { + "type": "bf:Barcode", + "value": "33433081743167" + } + ], + "enumerationChronology": [ + "no. 10-11 (1817)" + ], + "idBarcode": [ + "33433081743167" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 11 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1794)", + "urn:barcode:33433081744314" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1794)" + ], + "uri": "i17145919", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744314" + } + ], + "enumerationChronology": [ + "no. 10 (1794)" + ], + "idBarcode": [ + "33433081744314" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1793)", + "urn:barcode:33433081744439" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1793)" + ], + "uri": "i17145907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744439" + } + ], + "enumerationChronology": [ + "no. 10 (1793)" + ], + "idBarcode": [ + "33433081744439" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1792)", + "urn:barcode:33433081743803" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1792)" + ], + "uri": "i17145895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743803" + } + ], + "enumerationChronology": [ + "no. 10 (1792)" + ], + "idBarcode": [ + "33433081743803" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1791)", + "urn:barcode:33433081743928" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1791)" + ], + "uri": "i17145883", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743928" + } + ], + "enumerationChronology": [ + "no. 10 (1791)" + ], + "idBarcode": [ + "33433081743928" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1790)", + "urn:barcode:33433081744041" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1790)" + ], + "uri": "i17145871", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744041" + } + ], + "enumerationChronology": [ + "no. 10 (1790)" + ], + "idBarcode": [ + "33433081744041" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)", + "urn:barcode:33433081744165" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" + ], + "uri": "i17145859", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744165" + } + ], + "enumerationChronology": [ + "no. 10 (1789)" + ], + "idBarcode": [ + "33433081744165" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1788)", + "urn:barcode:33433081746038" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1788)" + ], + "uri": "i17145847", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746038" + } + ], + "enumerationChronology": [ + "no. 10 (1788)" + ], + "idBarcode": [ + "33433081746038" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1787)", + "urn:barcode:33433081746152" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1787)" + ], + "uri": "i17145835", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746152" + } + ], + "enumerationChronology": [ + "no. 10 (1787)" + ], + "idBarcode": [ + "33433081746152" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1786)", + "urn:barcode:33433081746210" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1786)" + ], + "uri": "i17145829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081746210" + } + ], + "enumerationChronology": [ + "no. 10 (1786)" + ], + "idBarcode": [ + "33433081746210" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1785)", + "urn:barcode:33433081745972" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1785)" + ], + "uri": "i17145803", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745972" + } + ], + "enumerationChronology": [ + "no. 10 (1785)" + ], + "idBarcode": [ + "33433081745972" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1784)", + "urn:barcode:33433081745519" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1784)" + ], + "uri": "i17145799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745519" + } + ], + "enumerationChronology": [ + "no. 10 (1784)" + ], + "idBarcode": [ + "33433081745519" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1783)", + "urn:barcode:33433081745634" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1783)" + ], + "uri": "i17145787", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745634" + } + ], + "enumerationChronology": [ + "no. 10 (1783)" + ], + "idBarcode": [ + "33433081745634" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1782)", + "urn:barcode:33433081745758" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1782)" + ], + "uri": "i17145775", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745758" + } + ], + "enumerationChronology": [ + "no. 10 (1782)" + ], + "idBarcode": [ + "33433081745758" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1781)", + "urn:barcode:33433081745139" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1781)" + ], + "uri": "i17145762", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745139" + } + ], + "enumerationChronology": [ + "no. 10 (1781)" + ], + "idBarcode": [ + "33433081745139" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)", + "urn:barcode:33433081745253" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" + ], + "uri": "i17145750", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745253" + } + ], + "enumerationChronology": [ + "no. 10 (1780)" + ], + "idBarcode": [ + "33433081745253" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1779)", + "urn:barcode:33433081745378" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1779)" + ], + "uri": "i17145738", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745378" + } + ], + "enumerationChronology": [ + "no. 10 (1779)" + ], + "idBarcode": [ + "33433081745378" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1778)", + "urn:barcode:33433081745501" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1778)" + ], + "uri": "i17145725", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081745501" + } + ], + "enumerationChronology": [ + "no. 10 (1778)" + ], + "idBarcode": [ + "33433081745501" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1777)", + "urn:barcode:33433081747374" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1777)" + ], + "uri": "i17145713", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747374" + } + ], + "enumerationChronology": [ + "no. 10 (1777)" + ], + "idBarcode": [ + "33433081747374" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1776)", + "urn:barcode:33433081747036" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1776)" + ], + "uri": "i17145701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747036" + } + ], + "enumerationChronology": [ + "no. 10 (1776)" + ], + "idBarcode": [ + "33433081747036" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1775)", + "urn:barcode:33433081747127" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1775)" + ], + "uri": "i17145688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747127" + } + ], + "enumerationChronology": [ + "no. 10 (1775)" + ], + "idBarcode": [ + "33433081747127" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1797)", + "urn:barcode:33433081744702" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-12 (1797)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1797" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1797)" + ], + "uri": "i17145930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1797)" + }, + { + "type": "bf:Barcode", + "value": "33433081744702" + } + ], + "enumerationChronology": [ + "no. 9-12 (1797)" + ], + "idBarcode": [ + "33433081744702" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1796)", + "urn:barcode:33433081744736" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-12 (1796)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1796" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1796)" + ], + "uri": "i17145927", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1796)" + }, + { + "type": "bf:Barcode", + "value": "33433081744736" + } + ], + "enumerationChronology": [ + "no. 9-12 (1796)" + ], + "idBarcode": [ + "33433081744736" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1795)", + "urn:barcode:33433081744264" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-12 (1795)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1795" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1795)" + ], + "uri": "i17145924", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-12 (1795)" + }, + { + "type": "bf:Barcode", + "value": "33433081744264" + } + ], + "enumerationChronology": [ + "no. 9-12 (1795)" + ], + "idBarcode": [ + "33433081744264" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)", + "urn:barcode:33433081743217" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" + ], + "uri": "i17146029", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743217" + } + ], + "enumerationChronology": [ + "no. 9-10 (1814)" + ], + "idBarcode": [ + "33433081743217" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1813)", + "urn:barcode:33433081743522" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1813)" + ], + "uri": "i17146023", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743522" + } + ], + "enumerationChronology": [ + "no. 9-10 (1813)" + ], + "idBarcode": [ + "33433081743522" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1812)", + "urn:barcode:33433081743589" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1812)" + ], + "uri": "i17146017", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743589" + } + ], + "enumerationChronology": [ + "no. 9-10 (1812)" + ], + "idBarcode": [ + "33433081743589" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1811)", + "urn:barcode:33433081743647" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1811)" + ], + "uri": "i17146011", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743647" + } + ], + "enumerationChronology": [ + "no. 9-10 (1811)" + ], + "idBarcode": [ + "33433081743647" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1810)", + "urn:barcode:33433081743704" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1810)" + ], + "uri": "i17146005", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743704" + } + ], + "enumerationChronology": [ + "no. 9-10 (1810)" + ], + "idBarcode": [ + "33433081743704" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1809)", + "urn:barcode:33433081743274" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1809)" + ], + "uri": "i17145998", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743274" + } + ], + "enumerationChronology": [ + "no. 9-10 (1809)" + ], + "idBarcode": [ + "33433081743274" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1808)", + "urn:barcode:33433081743332" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1808)" + ], + "uri": "i17145992", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743332" + } + ], + "enumerationChronology": [ + "no. 9-10 (1808)" + ], + "idBarcode": [ + "33433081743332" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1807)", + "urn:barcode:33433081743381" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1807)" + ], + "uri": "i17145987", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081743381" + } + ], + "enumerationChronology": [ + "no. 9-10 (1807)" + ], + "idBarcode": [ + "33433081743381" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1806)", + "urn:barcode:33433081743431" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1806)" + ], + "uri": "i17145981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743431" + } + ], + "enumerationChronology": [ + "no. 9-10 (1806)" + ], + "idBarcode": [ + "33433081743431" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1805)", + "urn:barcode:33433081743498" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1805)" + ], + "uri": "i17145975", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081743498" + } + ], + "enumerationChronology": [ + "no. 9-10 (1805)" + ], + "idBarcode": [ + "33433081743498" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1804)", + "urn:barcode:33433081744827" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1804)" + ], + "uri": "i17145968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744827" + } + ], + "enumerationChronology": [ + "no. 9-10 (1804)" + ], + "idBarcode": [ + "33433081744827" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1803)", + "urn:barcode:33433081744884" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1803)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1803" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1803)" + ], + "uri": "i17145962", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1803)" + }, + { + "type": "bf:Barcode", + "value": "33433081744884" + } + ], + "enumerationChronology": [ + "no. 9-10 (1803)" + ], + "idBarcode": [ + "33433081744884" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1802)", + "urn:barcode:33433081744918" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1802)" + ], + "uri": "i17145959", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744918" + } + ], + "enumerationChronology": [ + "no. 9-10 (1802)" + ], + "idBarcode": [ + "33433081744918" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1801)", + "urn:barcode:33433081744975" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1801)" + ], + "uri": "i17145953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081744975" + } + ], + "enumerationChronology": [ + "no. 9-10 (1801)" + ], + "idBarcode": [ + "33433081744975" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1800)", + "urn:barcode:33433081744538" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1800)" + ], + "uri": "i17145947", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744538" + } + ], + "enumerationChronology": [ + "no. 9-10 (1800)" + ], + "idBarcode": [ + "33433081744538" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1799)", + "urn:barcode:33433081744595" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1799)" + ], + "uri": "i17145941", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744595" + } + ], + "enumerationChronology": [ + "no. 9-10 (1799)" + ], + "idBarcode": [ + "33433081744595" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1798)", + "urn:barcode:33433081744652" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1798)" + ], + "uri": "i17145935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744652" + } + ], + "enumerationChronology": [ + "no. 9-10 (1798)" + ], + "idBarcode": [ + "33433081744652" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1794)", + "urn:barcode:33433081744322" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1794)" + ], + "uri": "i17145918", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744322" + } + ], + "enumerationChronology": [ + "no. 9 (1794)" + ], + "idBarcode": [ + "33433081744322" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1793)", + "urn:barcode:33433081744447" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1793)" + ], + "uri": "i17145906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744447" + } + ], + "enumerationChronology": [ + "no. 9 (1793)" + ], + "idBarcode": [ + "33433081744447" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1792)", + "urn:barcode:33433081743811" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1792)" + ], + "uri": "i17145894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743811" + } + ], + "enumerationChronology": [ + "no. 9 (1792)" + ], + "idBarcode": [ + "33433081743811" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1791)", + "urn:barcode:33433081743936" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1791)" + ], + "uri": "i17145882", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743936" + } + ], + "enumerationChronology": [ + "no. 9 (1791)" + ], + "idBarcode": [ + "33433081743936" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1790)", + "urn:barcode:33433081744058" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1790)" + ], + "uri": "i17145870", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744058" + } + ], + "enumerationChronology": [ + "no. 9 (1790)" + ], + "idBarcode": [ + "33433081744058" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1789)", + "urn:barcode:33433081744173" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1789)" + ], + "uri": "i17145858", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744173" + } + ], + "enumerationChronology": [ + "no. 9 (1789)" + ], + "idBarcode": [ + "33433081744173" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1788)", + "urn:barcode:33433081746046" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1788)" + ], + "uri": "i17145846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746046" + } + ], + "enumerationChronology": [ + "no. 9 (1788)" + ], + "idBarcode": [ + "33433081746046" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1787)", + "urn:barcode:33433081746160" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1787)" + ], + "uri": "i17145834", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746160" + } + ], + "enumerationChronology": [ + "no. 9 (1787)" + ], + "idBarcode": [ + "33433081746160" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1786)", + "urn:barcode:33433081746228" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1786)" + ], + "uri": "i17145828", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081746228" + } + ], + "enumerationChronology": [ + "no. 9 (1786)" + ], + "idBarcode": [ + "33433081746228" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1785)", + "urn:barcode:33433081745816" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1785)" + ], + "uri": "i17145819", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745816" + } + ], + "enumerationChronology": [ + "no. 9 (1785)" + ], + "idBarcode": [ + "33433081745816" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1784)", + "urn:barcode:33433081745527" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1784)" + ], + "uri": "i17145798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745527" + } + ], + "enumerationChronology": [ + "no. 9 (1784)" + ], + "idBarcode": [ + "33433081745527" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1783)", + "urn:barcode:33433081745642" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1783)" + ], + "uri": "i17145786", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745642" + } + ], + "enumerationChronology": [ + "no. 9 (1783)" + ], + "idBarcode": [ + "33433081745642" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1782)", + "urn:barcode:33433081745014" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1782)" + ], + "uri": "i17145774", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745014" + } + ], + "enumerationChronology": [ + "no. 9 (1782)" + ], + "idBarcode": [ + "33433081745014" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1781)", + "urn:barcode:33433081745147" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1781)" + ], + "uri": "i17145761", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745147" + } + ], + "enumerationChronology": [ + "no. 9 (1781)" + ], + "idBarcode": [ + "33433081745147" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1780)", + "urn:barcode:33433081745261" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1780)" + ], + "uri": "i17145749", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745261" + } + ], + "enumerationChronology": [ + "no. 9 (1780)" + ], + "idBarcode": [ + "33433081745261" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1779)", + "urn:barcode:33433081745386" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1779)" + ], + "uri": "i17145737", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745386" + } + ], + "enumerationChronology": [ + "no. 9 (1779)" + ], + "idBarcode": [ + "33433081745386" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1778)", + "urn:barcode:33433081747267" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1778)" + ], + "uri": "i17145724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747267" + } + ], + "enumerationChronology": [ + "no. 9 (1778)" + ], + "idBarcode": [ + "33433081747267" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1777)", + "urn:barcode:33433081747382" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1777)" + ], + "uri": "i17145712", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747382" + } + ], + "enumerationChronology": [ + "no. 9 (1777)" + ], + "idBarcode": [ + "33433081747382" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1776)", + "urn:barcode:33433081747044" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1776)" + ], + "uri": "i17145700", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747044" + } + ], + "enumerationChronology": [ + "no. 9 (1776)" + ], + "idBarcode": [ + "33433081747044" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9 (1775)", + "urn:barcode:33433081747135" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 9-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1775)" + ], + "uri": "i17145687", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747135" + } + ], + "enumerationChronology": [ + "no. 9 (1775)" + ], + "idBarcode": [ + "33433081747135" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8-9 (1817)", + "urn:barcode:33433081743175" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008-9 (1817)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1817" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8-9 (1817)" + ], + "uri": "i17146033", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8-9 (1817)" + }, + { + "type": "bf:Barcode", + "value": "33433081743175" + } + ], + "enumerationChronology": [ + "no. 8-9 (1817)" + ], + "idBarcode": [ + "33433081743175" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1794)", + "urn:barcode:33433081744330" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1794)" + ], + "uri": "i17145917", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744330" + } + ], + "enumerationChronology": [ + "no. 8 (1794)" + ], + "idBarcode": [ + "33433081744330" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1793)", + "urn:barcode:33433081744454" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1793)" + ], + "uri": "i17145905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744454" + } + ], + "enumerationChronology": [ + "no. 8 (1793)" + ], + "idBarcode": [ + "33433081744454" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1792)", + "urn:barcode:33433081743829" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1792)" + ], + "uri": "i17145893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743829" + } + ], + "enumerationChronology": [ + "no. 8 (1792)" + ], + "idBarcode": [ + "33433081743829" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1791)", + "urn:barcode:33433081743944" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1791)" + ], + "uri": "i17145881", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743944" + } + ], + "enumerationChronology": [ + "no. 8 (1791)" + ], + "idBarcode": [ + "33433081743944" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1790)", + "urn:barcode:33433081744066" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1790)" + ], + "uri": "i17145869", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744066" + } + ], + "enumerationChronology": [ + "no. 8 (1790)" + ], + "idBarcode": [ + "33433081744066" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1789)", + "urn:barcode:33433081744181" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1789)" + ], + "uri": "i17145857", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744181" + } + ], + "enumerationChronology": [ + "no. 8 (1789)" + ], + "idBarcode": [ + "33433081744181" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1788)", + "urn:barcode:33433081746053" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1788)" + ], + "uri": "i17145845", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746053" + } + ], + "enumerationChronology": [ + "no. 8 (1788)" + ], + "idBarcode": [ + "33433081746053" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1787)", + "urn:barcode:33433081746178" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1787)" + ], + "uri": "i17145833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746178" + } + ], + "enumerationChronology": [ + "no. 8 (1787)" + ], + "idBarcode": [ + "33433081746178" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1786)", + "urn:barcode:33433081745873" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1786)" + ], + "uri": "i17145813", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745873" + } + ], + "enumerationChronology": [ + "no. 8 (1786)" + ], + "idBarcode": [ + "33433081745873" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1785)", + "urn:barcode:33433081745808" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1785)" + ], + "uri": "i17145820", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745808" + } + ], + "enumerationChronology": [ + "no. 8 (1785)" + ], + "idBarcode": [ + "33433081745808" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1784)", + "urn:barcode:33433081745535" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1784)" + ], + "uri": "i17145797", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745535" + } + ], + "enumerationChronology": [ + "no. 8 (1784)" + ], + "idBarcode": [ + "33433081745535" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1783)", + "urn:barcode:33433081745659" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1783)" + ], + "uri": "i17145785", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745659" + } + ], + "enumerationChronology": [ + "no. 8 (1783)" + ], + "idBarcode": [ + "33433081745659" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1782)", + "urn:barcode:33433081745022" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1782)" + ], + "uri": "i17145773", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745022" + } + ], + "enumerationChronology": [ + "no. 8 (1782)" + ], + "idBarcode": [ + "33433081745022" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1781)", + "urn:barcode:33433081745154" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1781)" + ], + "uri": "i17145760", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745154" + } + ], + "enumerationChronology": [ + "no. 8 (1781)" + ], + "idBarcode": [ + "33433081745154" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1780)", + "urn:barcode:33433081745279" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1780)" + ], + "uri": "i17145748", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745279" + } + ], + "enumerationChronology": [ + "no. 8 (1780)" + ], + "idBarcode": [ + "33433081745279" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1779)", + "urn:barcode:33433081745394" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1779)" + ], + "uri": "i17145736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745394" + } + ], + "enumerationChronology": [ + "no. 8 (1779)" + ], + "idBarcode": [ + "33433081745394" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1778)", + "urn:barcode:33433081747275" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1778)" + ], + "uri": "i17145723", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747275" + } + ], + "enumerationChronology": [ + "no. 8 (1778)" + ], + "idBarcode": [ + "33433081747275" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1777)", + "urn:barcode:33433081747390" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1777)" + ], + "uri": "i17145711", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747390" + } + ], + "enumerationChronology": [ + "no. 8 (1777)" + ], + "idBarcode": [ + "33433081747390" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1776)", + "urn:barcode:33433081747069" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1776)" + ], + "uri": "i17145698", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747069" + } + ], + "enumerationChronology": [ + "no. 8 (1776)" + ], + "idBarcode": [ + "33433081747069" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 8 (1775)", + "urn:barcode:33433081747143" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000008 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 8-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1775)" + ], + "uri": "i17145686", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 8 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747143" + } + ], + "enumerationChronology": [ + "no. 8 (1775)" + ], + "idBarcode": [ + "33433081747143" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1774)", + "urn:barcode:33433081747234" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-9 (1774)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1774" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1774)" + ], + "uri": "i17145677", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1774)" + }, + { + "type": "bf:Barcode", + "value": "33433081747234" + } + ], + "enumerationChronology": [ + "no. 7-9 (1774)" + ], + "idBarcode": [ + "33433081747234" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1773)", + "urn:barcode:33433081746772" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-9 (1773)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1773" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1773)" + ], + "uri": "i17145673", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1773)" + }, + { + "type": "bf:Barcode", + "value": "33433081746772" + } + ], + "enumerationChronology": [ + "no. 7-9 (1773)" + ], + "idBarcode": [ + "33433081746772" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1772)", + "urn:barcode:33433081746814" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-9 (1772)", + "dateRange": [ + { + "gte": "1772", + "lte": "1772" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1772" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1772)" + ], + "uri": "i17145669", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-9 (1772)" + }, + { + "type": "bf:Barcode", + "value": "33433081746814" + } + ], + "enumerationChronology": [ + "no. 7-9 (1772)" + ], + "idBarcode": [ + "33433081746814" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 9 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1814)", + "urn:barcode:33433081743225" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1814)" + ], + "uri": "i17146028", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743225" + } + ], + "enumerationChronology": [ + "no. 7-8 (1814)" + ], + "idBarcode": [ + "33433081743225" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1813)", + "urn:barcode:33433081743530" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1813)" + ], + "uri": "i17146022", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743530" + } + ], + "enumerationChronology": [ + "no. 7-8 (1813)" + ], + "idBarcode": [ + "33433081743530" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1812)", + "urn:barcode:33433081743597" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1812)" + ], + "uri": "i17146016", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743597" + } + ], + "enumerationChronology": [ + "no. 7-8 (1812)" + ], + "idBarcode": [ + "33433081743597" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1811)", + "urn:barcode:33433081743654" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1811)" + ], + "uri": "i17146010", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743654" + } + ], + "enumerationChronology": [ + "no. 7-8 (1811)" + ], + "idBarcode": [ + "33433081743654" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1810)", + "urn:barcode:33433081743712" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1810)" + ], + "uri": "i17146004", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743712" + } + ], + "enumerationChronology": [ + "no. 7-8 (1810)" + ], + "idBarcode": [ + "33433081743712" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1809)", + "urn:barcode:33433081743282" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1809)" + ], + "uri": "i17145997", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743282" + } + ], + "enumerationChronology": [ + "no. 7-8 (1809)" + ], + "idBarcode": [ + "33433081743282" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1808)", + "urn:barcode:33433081743720" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1808)" + ], + "uri": "i17146003", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743720" + } + ], + "enumerationChronology": [ + "no. 7-8 (1808)" + ], + "idBarcode": [ + "33433081743720" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1807)", + "urn:barcode:33433081743399" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1807)" + ], + "uri": "i17145986", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081743399" + } + ], + "enumerationChronology": [ + "no. 7-8 (1807)" + ], + "idBarcode": [ + "33433081743399" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1806)", + "urn:barcode:33433081743449" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1806)" + ], + "uri": "i17145980", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743449" + } + ], + "enumerationChronology": [ + "no. 7-8 (1806)" + ], + "idBarcode": [ + "33433081743449" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1805)", + "urn:barcode:33433081743506" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1805)" + ], + "uri": "i17145974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081743506" + } + ], + "enumerationChronology": [ + "no. 7-8 (1805)" + ], + "idBarcode": [ + "33433081743506" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1804)", + "urn:barcode:33433081744835" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1804)" + ], + "uri": "i17145967", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744835" + } + ], + "enumerationChronology": [ + "no. 7-8 (1804)" + ], + "idBarcode": [ + "33433081744835" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1802)", + "urn:barcode:33433081744926" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1802)" + ], + "uri": "i17145958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744926" + } + ], + "enumerationChronology": [ + "no. 7-8 (1802)" + ], + "idBarcode": [ + "33433081744926" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1801)", + "urn:barcode:33433081744983" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 7-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1801)" + ], + "uri": "i17145952", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081744983" + } + ], + "enumerationChronology": [ + "no. 7-8 (1801)" + ], + "idBarcode": [ + "33433081744983" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1800)", + "urn:barcode:33433081744546" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1800)" + ], + "uri": "i17145946", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744546" + } + ], + "enumerationChronology": [ + "no. 7-8 (1800)" + ], + "idBarcode": [ + "33433081744546" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1799)", + "urn:barcode:33433081744603" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1799)" + ], + "uri": "i17145940", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744603" + } + ], + "enumerationChronology": [ + "no. 7-8 (1799)" + ], + "idBarcode": [ + "33433081744603" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1798)", + "urn:barcode:33433081744660" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007-8 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1798)" + ], + "uri": "i17145934", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7-8 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744660" + } + ], + "enumerationChronology": [ + "no. 7-8 (1798)" + ], + "idBarcode": [ + "33433081744660" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1794)", + "urn:barcode:33433081744348" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1794)" + ], + "uri": "i17145916", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744348" + } + ], + "enumerationChronology": [ + "no. 7 (1794)" + ], + "idBarcode": [ + "33433081744348" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1793)", + "urn:barcode:33433081744462" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1793)" + ], + "uri": "i17145904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744462" + } + ], + "enumerationChronology": [ + "no. 7 (1793)" + ], + "idBarcode": [ + "33433081744462" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1792)", + "urn:barcode:33433081743837" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1792)" + ], + "uri": "i17145892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743837" + } + ], + "enumerationChronology": [ + "no. 7 (1792)" + ], + "idBarcode": [ + "33433081743837" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1791)", + "urn:barcode:33433081743951" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1791)" + ], + "uri": "i17145880", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743951" + } + ], + "enumerationChronology": [ + "no. 7 (1791)" + ], + "idBarcode": [ + "33433081743951" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1790)", + "urn:barcode:33433081744074" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1790)" + ], + "uri": "i17145868", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744074" + } + ], + "enumerationChronology": [ + "no. 7 (1790)" + ], + "idBarcode": [ + "33433081744074" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1789)", + "urn:barcode:33433081744199" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1789)" + ], + "uri": "i17145856", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744199" + } + ], + "enumerationChronology": [ + "no. 7 (1789)" + ], + "idBarcode": [ + "33433081744199" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1788)", + "urn:barcode:33433081746061" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1788)" + ], + "uri": "i17145844", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746061" + } + ], + "enumerationChronology": [ + "no. 7 (1788)" + ], + "idBarcode": [ + "33433081746061" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1787)", + "urn:barcode:33433081746186" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1787)" + ], + "uri": "i17145832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746186" + } + ], + "enumerationChronology": [ + "no. 7 (1787)" + ], + "idBarcode": [ + "33433081746186" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1786)", + "urn:barcode:33433081745881" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1786)" + ], + "uri": "i17145812", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745881" + } + ], + "enumerationChronology": [ + "no. 7 (1786)" + ], + "idBarcode": [ + "33433081745881" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1785)", + "urn:barcode:33433081745824" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1785)" + ], + "uri": "i17145818", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745824" + } + ], + "enumerationChronology": [ + "no. 7 (1785)" + ], + "idBarcode": [ + "33433081745824" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1784)", + "urn:barcode:33433081745543" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1784)" + ], + "uri": "i17145796", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745543" + } + ], + "enumerationChronology": [ + "no. 7 (1784)" + ], + "idBarcode": [ + "33433081745543" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1783)", + "urn:barcode:33433081745667" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1783)" + ], + "uri": "i17145784", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745667" + } + ], + "enumerationChronology": [ + "no. 7 (1783)" + ], + "idBarcode": [ + "33433081745667" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1782)", + "urn:barcode:33433081745030" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1782)" + ], + "uri": "i17145772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745030" + } + ], + "enumerationChronology": [ + "no. 7 (1782)" + ], + "idBarcode": [ + "33433081745030" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1781)", + "urn:barcode:33433081745170" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1781)" + ], + "uri": "i17145758", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745170" + } + ], + "enumerationChronology": [ + "no. 7 (1781)" + ], + "idBarcode": [ + "33433081745170" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1780)", + "urn:barcode:33433081745287" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1780)" + ], + "uri": "i17145747", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745287" + } + ], + "enumerationChronology": [ + "no. 7 (1780)" + ], + "idBarcode": [ + "33433081745287" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1779)", + "urn:barcode:33433081745402" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1779)" + ], + "uri": "i17145735", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745402" + } + ], + "enumerationChronology": [ + "no. 7 (1779)" + ], + "idBarcode": [ + "33433081745402" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1778)", + "urn:barcode:33433081747283" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1778)" + ], + "uri": "i17145722", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747283" + } + ], + "enumerationChronology": [ + "no. 7 (1778)" + ], + "idBarcode": [ + "33433081747283" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1777)", + "urn:barcode:33433081747408" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1777)" + ], + "uri": "i17145710", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747408" + } + ], + "enumerationChronology": [ + "no. 7 (1777)" + ], + "idBarcode": [ + "33433081747408" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1776)", + "urn:barcode:33433081747051" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1776)" + ], + "uri": "i17145699", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747051" + } + ], + "enumerationChronology": [ + "no. 7 (1776)" + ], + "idBarcode": [ + "33433081747051" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 7 (1775)", + "urn:barcode:33433081747150" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000007 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 7-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1775)" + ], + "uri": "i17145685", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 7 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747150" + } + ], + "enumerationChronology": [ + "no. 7 (1775)" + ], + "idBarcode": [ + "33433081747150" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6-7 (1817)", + "urn:barcode:33433081743183" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006-7 (1817)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1817" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6-7 (1817)" + ], + "uri": "i17146032", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6-7 (1817)" + }, + { + "type": "bf:Barcode", + "value": "33433081743183" + } + ], + "enumerationChronology": [ + "no. 6-7 (1817)" + ], + "idBarcode": [ + "33433081743183" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 7 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1794)", + "urn:barcode:33433081744355" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1794)" + ], + "uri": "i17145915", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744355" + } + ], + "enumerationChronology": [ + "no. 6 (1794)" + ], + "idBarcode": [ + "33433081744355" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1793)", + "urn:barcode:33433081744470" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1793)" + ], + "uri": "i17145903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744470" + } + ], + "enumerationChronology": [ + "no. 6 (1793)" + ], + "idBarcode": [ + "33433081744470" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1792)", + "urn:barcode:33433081743845" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1792)" + ], + "uri": "i17145891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743845" + } + ], + "enumerationChronology": [ + "no. 6 (1792)" + ], + "idBarcode": [ + "33433081743845" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1791)", + "urn:barcode:33433081743969" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1791)" + ], + "uri": "i17145879", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743969" + } + ], + "enumerationChronology": [ + "no. 6 (1791)" + ], + "idBarcode": [ + "33433081743969" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1790)", + "urn:barcode:33433081744082" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1790)" + ], + "uri": "i17145867", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744082" + } + ], + "enumerationChronology": [ + "no. 6 (1790)" + ], + "idBarcode": [ + "33433081744082" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1789)", + "urn:barcode:33433081744207" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1789)" + ], + "uri": "i17145855", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744207" + } + ], + "enumerationChronology": [ + "no. 6 (1789)" + ], + "idBarcode": [ + "33433081744207" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1788)", + "urn:barcode:33433081746079" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1788)" + ], + "uri": "i17145843", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746079" + } + ], + "enumerationChronology": [ + "no. 6 (1788)" + ], + "idBarcode": [ + "33433081746079" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1787)", + "urn:barcode:33433081745766" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1787)" + ], + "uri": "i17145824", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081745766" + } + ], + "enumerationChronology": [ + "no. 6 (1787)" + ], + "idBarcode": [ + "33433081745766" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1786)", + "urn:barcode:33433081745899" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1786)" + ], + "uri": "i17145811", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745899" + } + ], + "enumerationChronology": [ + "no. 6 (1786)" + ], + "idBarcode": [ + "33433081745899" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1785)", + "urn:barcode:33433081745832" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1785)" + ], + "uri": "i17145817", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745832" + } + ], + "enumerationChronology": [ + "no. 6 (1785)" + ], + "idBarcode": [ + "33433081745832" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1784)", + "urn:barcode:33433081745550" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1784)" + ], + "uri": "i17145795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745550" + } + ], + "enumerationChronology": [ + "no. 6 (1784)" + ], + "idBarcode": [ + "33433081745550" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1783)", + "urn:barcode:33433081745675" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1783)" + ], + "uri": "i17145783", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745675" + } + ], + "enumerationChronology": [ + "no. 6 (1783)" + ], + "idBarcode": [ + "33433081745675" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1782)", + "urn:barcode:33433081745048" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1782)" + ], + "uri": "i17145771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745048" + } + ], + "enumerationChronology": [ + "no. 6 (1782)" + ], + "idBarcode": [ + "33433081745048" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1781)", + "urn:barcode:33433081745188" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1781)" + ], + "uri": "i17145757", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745188" + } + ], + "enumerationChronology": [ + "no. 6 (1781)" + ], + "idBarcode": [ + "33433081745188" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1780)", + "urn:barcode:33433081745295" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1780)" + ], + "uri": "i17145746", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745295" + } + ], + "enumerationChronology": [ + "no. 6 (1780)" + ], + "idBarcode": [ + "33433081745295" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1779)", + "urn:barcode:33433081745410" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1779)" + ], + "uri": "i17145734", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745410" + } + ], + "enumerationChronology": [ + "no. 6 (1779)" + ], + "idBarcode": [ + "33433081745410" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1778)", + "urn:barcode:33433081747291" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1778)" + ], + "uri": "i17145721", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747291" + } + ], + "enumerationChronology": [ + "no. 6 (1778)" + ], + "idBarcode": [ + "33433081747291" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1777)", + "urn:barcode:33433081747416" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1777)" + ], + "uri": "i17145709", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747416" + } + ], + "enumerationChronology": [ + "no. 6 (1777)" + ], + "idBarcode": [ + "33433081747416" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1776)", + "urn:barcode:33433081747077" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1776)" + ], + "uri": "i17145697", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747077" + } + ], + "enumerationChronology": [ + "no. 6 (1776)" + ], + "idBarcode": [ + "33433081747077" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 6 (1775)", + "urn:barcode:33433081747168" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000006 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 6-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1775)" + ], + "uri": "i17145684", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 6 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747168" + } + ], + "enumerationChronology": [ + "no. 6 (1775)" + ], + "idBarcode": [ + "33433081747168" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1797)", + "urn:barcode:33433081744710" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-8 (1797)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1797" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1797)" + ], + "uri": "i17145929", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1797)" + }, + { + "type": "bf:Barcode", + "value": "33433081744710" + } + ], + "enumerationChronology": [ + "no. 5-8 (1797)" + ], + "idBarcode": [ + "33433081744710" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1796)", + "urn:barcode:33433081744744" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-8 (1796)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1796" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1796)" + ], + "uri": "i17145926", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1796)" + }, + { + "type": "bf:Barcode", + "value": "33433081744744" + } + ], + "enumerationChronology": [ + "no. 5-8 (1796)" + ], + "idBarcode": [ + "33433081744744" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1795)", + "urn:barcode:33433081744272" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-8 (1795)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1795" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1795)" + ], + "uri": "i17145923", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-8 (1795)" + }, + { + "type": "bf:Barcode", + "value": "33433081744272" + } + ], + "enumerationChronology": [ + "no. 5-8 (1795)" + ], + "idBarcode": [ + "33433081744272" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1814)", + "urn:barcode:33433081743233" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1814)" + ], + "uri": "i17146027", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743233" + } + ], + "enumerationChronology": [ + "no. 5-6 (1814)" + ], + "idBarcode": [ + "33433081743233" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1813)", + "urn:barcode:33433081743548" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1813)" + ], + "uri": "i17146021", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743548" + } + ], + "enumerationChronology": [ + "no. 5-6 (1813)" + ], + "idBarcode": [ + "33433081743548" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1812)", + "urn:barcode:33433081743605" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1812)" + ], + "uri": "i17146015", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743605" + } + ], + "enumerationChronology": [ + "no. 5-6 (1812)" + ], + "idBarcode": [ + "33433081743605" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1810)", + "urn:barcode:33433081743738" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1810)" + ], + "uri": "i17146002", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743738" + } + ], + "enumerationChronology": [ + "no. 5-6 (1810)" + ], + "idBarcode": [ + "33433081743738" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1809)", + "urn:barcode:33433081743290" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1809)" + ], + "uri": "i17145996", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743290" + } + ], + "enumerationChronology": [ + "no. 5-6 (1809)" + ], + "idBarcode": [ + "33433081743290" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1808)", + "urn:barcode:33433081743340" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1808)" + ], + "uri": "i17145991", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743340" + } + ], + "enumerationChronology": [ + "no. 5-6 (1808)" + ], + "idBarcode": [ + "33433081743340" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1807)", + "urn:barcode:33433081743407" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1807)" + ], + "uri": "i17145985", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081743407" + } + ], + "enumerationChronology": [ + "no. 5-6 (1807)" + ], + "idBarcode": [ + "33433081743407" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1806)", + "urn:barcode:33433081743456" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1806)" + ], + "uri": "i17145979", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743456" + } + ], + "enumerationChronology": [ + "no. 5-6 (1806)" + ], + "idBarcode": [ + "33433081743456" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1805)", + "urn:barcode:33433081744777" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1805)" + ], + "uri": "i17145973", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081744777" + } + ], + "enumerationChronology": [ + "no. 5-6 (1805)" + ], + "idBarcode": [ + "33433081744777" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1804)", + "urn:barcode:33433081744843" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1804)" + ], + "uri": "i17145966", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744843" + } + ], + "enumerationChronology": [ + "no. 5-6 (1804)" + ], + "idBarcode": [ + "33433081744843" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1802)", + "urn:barcode:33433081744934" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1802)" + ], + "uri": "i17145957", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744934" + } + ], + "enumerationChronology": [ + "no. 5-6 (1802)" + ], + "idBarcode": [ + "33433081744934" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1801)", + "urn:barcode:33433081744991" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 5-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1801)" + ], + "uri": "i17145951", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081744991" + } + ], + "enumerationChronology": [ + "no. 5-6 (1801)" + ], + "idBarcode": [ + "33433081744991" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1800)", + "urn:barcode:33433081744553" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1800)" + ], + "uri": "i17145945", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744553" + } + ], + "enumerationChronology": [ + "no. 5-6 (1800)" + ], + "idBarcode": [ + "33433081744553" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1799)", + "urn:barcode:33433081744611" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1799)" + ], + "uri": "i17145939", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744611" + } + ], + "enumerationChronology": [ + "no. 5-6 (1799)" + ], + "idBarcode": [ + "33433081744611" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1798)", + "urn:barcode:33433081744678" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005-6 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1798)" + ], + "uri": "i17145933", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5-6 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744678" + } + ], + "enumerationChronology": [ + "no. 5-6 (1798)" + ], + "idBarcode": [ + "33433081744678" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1794)", + "urn:barcode:33433081744363" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1794)" + ], + "uri": "i17145914", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744363" + } + ], + "enumerationChronology": [ + "no. 5 (1794)" + ], + "idBarcode": [ + "33433081744363" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1793)", + "urn:barcode:33433081744488" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1793)" + ], + "uri": "i17145902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744488" + } + ], + "enumerationChronology": [ + "no. 5 (1793)" + ], + "idBarcode": [ + "33433081744488" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1792)", + "urn:barcode:33433081743852" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1792)" + ], + "uri": "i17145890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743852" + } + ], + "enumerationChronology": [ + "no. 5 (1792)" + ], + "idBarcode": [ + "33433081743852" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1791)", + "urn:barcode:33433081743977" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1791)" + ], + "uri": "i17145878", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743977" + } + ], + "enumerationChronology": [ + "no. 5 (1791)" + ], + "idBarcode": [ + "33433081743977" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1790)", + "urn:barcode:33433081744090" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1790)" + ], + "uri": "i17145866", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744090" + } + ], + "enumerationChronology": [ + "no. 5 (1790)" + ], + "idBarcode": [ + "33433081744090" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1789)", + "urn:barcode:33433081744215" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1789)" + ], + "uri": "i17145854", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744215" + } + ], + "enumerationChronology": [ + "no. 5 (1789)" + ], + "idBarcode": [ + "33433081744215" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1788)", + "urn:barcode:33433081746087" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1788)" + ], + "uri": "i17145842", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746087" + } + ], + "enumerationChronology": [ + "no. 5 (1788)" + ], + "idBarcode": [ + "33433081746087" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1787)", + "urn:barcode:33433081745782" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1787)" + ], + "uri": "i17145822", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081745782" + } + ], + "enumerationChronology": [ + "no. 5 (1787)" + ], + "idBarcode": [ + "33433081745782" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1786)", + "urn:barcode:33433081745907" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1786)" + ], + "uri": "i17145810", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745907" + } + ], + "enumerationChronology": [ + "no. 5 (1786)" + ], + "idBarcode": [ + "33433081745907" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1785)", + "urn:barcode:33433081745840" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1785)" + ], + "uri": "i17145816", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745840" + } + ], + "enumerationChronology": [ + "no. 5 (1785)" + ], + "idBarcode": [ + "33433081745840" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1784)", + "urn:barcode:33433081745568" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1784)" + ], + "uri": "i17145794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745568" + } + ], + "enumerationChronology": [ + "no. 5 (1784)" + ], + "idBarcode": [ + "33433081745568" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1783)", + "urn:barcode:33433081745683" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1783)" + ], + "uri": "i17145782", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745683" + } + ], + "enumerationChronology": [ + "no. 5 (1783)" + ], + "idBarcode": [ + "33433081745683" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1782)", + "urn:barcode:33433081745055" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1782)" + ], + "uri": "i17145770", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745055" + } + ], + "enumerationChronology": [ + "no. 5 (1782)" + ], + "idBarcode": [ + "33433081745055" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1781)", + "urn:barcode:33433081745204" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1781)" + ], + "uri": "i17145755", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745204" + } + ], + "enumerationChronology": [ + "no. 5 (1781)" + ], + "idBarcode": [ + "33433081745204" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1780)", + "urn:barcode:33433081745303" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1780)" + ], + "uri": "i17145745", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745303" + } + ], + "enumerationChronology": [ + "no. 5 (1780)" + ], + "idBarcode": [ + "33433081745303" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1779)", + "urn:barcode:33433081745428" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1779)" + ], + "uri": "i17145733", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745428" + } + ], + "enumerationChronology": [ + "no. 5 (1779)" + ], + "idBarcode": [ + "33433081745428" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1778)", + "urn:barcode:33433081747309" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1778)" + ], + "uri": "i17145720", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747309" + } + ], + "enumerationChronology": [ + "no. 5 (1778)" + ], + "idBarcode": [ + "33433081747309" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1777)", + "urn:barcode:33433081747424" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1777)" + ], + "uri": "i17145708", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747424" + } + ], + "enumerationChronology": [ + "no. 5 (1777)" + ], + "idBarcode": [ + "33433081747424" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1776)", + "urn:barcode:33433081747085" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1776)" + ], + "uri": "i17145696", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747085" + } + ], + "enumerationChronology": [ + "no. 5 (1776)" + ], + "idBarcode": [ + "33433081747085" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 5 (1775)", + "urn:barcode:33433081747176" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000005 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 5-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1775)" + ], + "uri": "i17145683", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 5 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747176" + } + ], + "enumerationChronology": [ + "no. 5 (1775)" + ], + "idBarcode": [ + "33433081747176" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1774)", + "urn:barcode:33433081747242" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004-6 (1774)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1774" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1774)" + ], + "uri": "i17145676", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1774)" + }, + { + "type": "bf:Barcode", + "value": "33433081747242" + } + ], + "enumerationChronology": [ + "no. 4-6 (1774)" + ], + "idBarcode": [ + "33433081747242" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1773)", + "urn:barcode:33433081746780" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004-6 (1773)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1773" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1773)" + ], + "uri": "i17145672", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4-6 (1773)" + }, + { + "type": "bf:Barcode", + "value": "33433081746780" + } + ], + "enumerationChronology": [ + "no. 4-6 (1773)" + ], + "idBarcode": [ + "33433081746780" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 6 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4-5 (1817)", + "urn:barcode:33433081743191" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004-5 (1817)", + "dateRange": [ + { + "gte": "1817", + "lte": "1817" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1817" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4-5 (1817)" + ], + "uri": "i17146031", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4-5 (1817)" + }, + { + "type": "bf:Barcode", + "value": "33433081743191" + } + ], + "enumerationChronology": [ + "no. 4-5 (1817)" + ], + "idBarcode": [ + "33433081743191" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 5 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1818)", + "urn:barcode:33433081743134" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1818)", + "dateRange": [ + { + "gte": "1818", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 4-1818" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1818)" + ], + "uri": "i17146037", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1818)" + }, + { + "type": "bf:Barcode", + "value": "33433081743134" + } + ], + "enumerationChronology": [ + "no. 4 (1818)" + ], + "idBarcode": [ + "33433081743134" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1794)", + "urn:barcode:33433081744371" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1794)" + ], + "uri": "i17145913", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744371" + } + ], + "enumerationChronology": [ + "no. 4 (1794)" + ], + "idBarcode": [ + "33433081744371" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1793)", + "urn:barcode:33433081744496" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1793)" + ], + "uri": "i17145901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744496" + } + ], + "enumerationChronology": [ + "no. 4 (1793)" + ], + "idBarcode": [ + "33433081744496" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1792)", + "urn:barcode:33433081743860" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1792)" + ], + "uri": "i17145889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743860" + } + ], + "enumerationChronology": [ + "no. 4 (1792)" + ], + "idBarcode": [ + "33433081743860" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1791)", + "urn:barcode:33433081743985" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1791)" + ], + "uri": "i17145877", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743985" + } + ], + "enumerationChronology": [ + "no. 4 (1791)" + ], + "idBarcode": [ + "33433081743985" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1790)", + "urn:barcode:33433081744108" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1790)" + ], + "uri": "i17145865", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744108" + } + ], + "enumerationChronology": [ + "no. 4 (1790)" + ], + "idBarcode": [ + "33433081744108" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1789)", + "urn:barcode:33433081744223" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1789)" + ], + "uri": "i17145853", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744223" + } + ], + "enumerationChronology": [ + "no. 4 (1789)" + ], + "idBarcode": [ + "33433081744223" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1788)", + "urn:barcode:33433081746095" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1788)" + ], + "uri": "i17145841", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746095" + } + ], + "enumerationChronology": [ + "no. 4 (1788)" + ], + "idBarcode": [ + "33433081746095" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1787)", + "urn:barcode:33433081745790" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1787)" + ], + "uri": "i17145821", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081745790" + } + ], + "enumerationChronology": [ + "no. 4 (1787)" + ], + "idBarcode": [ + "33433081745790" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1786)", + "urn:barcode:33433081745915" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1786)" + ], + "uri": "i17145809", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745915" + } + ], + "enumerationChronology": [ + "no. 4 (1786)" + ], + "idBarcode": [ + "33433081745915" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1785)", + "urn:barcode:33433081745857" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1785)" + ], + "uri": "i17145815", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745857" + } + ], + "enumerationChronology": [ + "no. 4 (1785)" + ], + "idBarcode": [ + "33433081745857" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1784)", + "urn:barcode:33433081745576" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1784)" + ], + "uri": "i17145793", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745576" + } + ], + "enumerationChronology": [ + "no. 4 (1784)" + ], + "idBarcode": [ + "33433081745576" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1783)", + "urn:barcode:33433081745691" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1783)" + ], + "uri": "i17145781", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745691" + } + ], + "enumerationChronology": [ + "no. 4 (1783)" + ], + "idBarcode": [ + "33433081745691" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1782)", + "urn:barcode:33433081745063" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1782)" + ], + "uri": "i17145769", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745063" + } + ], + "enumerationChronology": [ + "no. 4 (1782)" + ], + "idBarcode": [ + "33433081745063" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1781)", + "urn:barcode:33433081745196" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1781)" + ], + "uri": "i17145756", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745196" + } + ], + "enumerationChronology": [ + "no. 4 (1781)" + ], + "idBarcode": [ + "33433081745196" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1780)", + "urn:barcode:33433081745311" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1780)" + ], + "uri": "i17145744", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745311" + } + ], + "enumerationChronology": [ + "no. 4 (1780)" + ], + "idBarcode": [ + "33433081745311" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1779)", + "urn:barcode:33433081745436" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1779)" + ], + "uri": "i17145732", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745436" + } + ], + "enumerationChronology": [ + "no. 4 (1779)" + ], + "idBarcode": [ + "33433081745436" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1778)", + "urn:barcode:33433081747317" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1778)" + ], + "uri": "i17145719", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747317" + } + ], + "enumerationChronology": [ + "no. 4 (1778)" + ], + "idBarcode": [ + "33433081747317" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1777)", + "urn:barcode:33433081747432" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1777)" + ], + "uri": "i17145707", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747432" + } + ], + "enumerationChronology": [ + "no. 4 (1777)" + ], + "idBarcode": [ + "33433081747432" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1776)", + "urn:barcode:33433081747093" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1776)" + ], + "uri": "i17145695", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747093" + } + ], + "enumerationChronology": [ + "no. 4 (1776)" + ], + "idBarcode": [ + "33433081747093" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 4 (1775)", + "urn:barcode:33433081747184" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000004 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 4-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1775)" + ], + "uri": "i17145682", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 4 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747184" + } + ], + "enumerationChronology": [ + "no. 4 (1775)" + ], + "idBarcode": [ + "33433081747184" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1814)", + "urn:barcode:33433081743241" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1814)" + ], + "uri": "i17146026", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743241" + } + ], + "enumerationChronology": [ + "no. 3-4 (1814)" + ], + "idBarcode": [ + "33433081743241" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1813)", + "urn:barcode:33433081743555" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1813)" + ], + "uri": "i17146020", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743555" + } + ], + "enumerationChronology": [ + "no. 3-4 (1813)" + ], + "idBarcode": [ + "33433081743555" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1812)", + "urn:barcode:33433081743613" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1812)" + ], + "uri": "i17146014", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743613" + } + ], + "enumerationChronology": [ + "no. 3-4 (1812)" + ], + "idBarcode": [ + "33433081743613" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1811)", + "urn:barcode:33433081743670" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1811)" + ], + "uri": "i17146008", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743670" + } + ], + "enumerationChronology": [ + "no. 3-4 (1811)" + ], + "idBarcode": [ + "33433081743670" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1810)", + "urn:barcode:33433081743746" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1810)" + ], + "uri": "i17146001", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743746" + } + ], + "enumerationChronology": [ + "no. 3-4 (1810)" + ], + "idBarcode": [ + "33433081743746" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1809)", + "urn:barcode:33433081743308" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1809)" + ], + "uri": "i17145995", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743308" + } + ], + "enumerationChronology": [ + "no. 3-4 (1809)" + ], + "idBarcode": [ + "33433081743308" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1808)", + "urn:barcode:33433081743357" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1808)" + ], + "uri": "i17145990", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743357" + } + ], + "enumerationChronology": [ + "no. 3-4 (1808)" + ], + "idBarcode": [ + "33433081743357" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1807)", + "urn:barcode:33433081744769" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1807)" + ], + "uri": "i17145984", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081744769" + } + ], + "enumerationChronology": [ + "no. 3-4 (1807)" + ], + "idBarcode": [ + "33433081744769" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1806)", + "urn:barcode:33433081743464" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1806)" + ], + "uri": "i17145978", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743464" + } + ], + "enumerationChronology": [ + "no. 3-4 (1806)" + ], + "idBarcode": [ + "33433081743464" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1805)", + "urn:barcode:33433081744785" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1805)" + ], + "uri": "i17145972", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081744785" + } + ], + "enumerationChronology": [ + "no. 3-4 (1805)" + ], + "idBarcode": [ + "33433081744785" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1804)", + "urn:barcode:33433081744850" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1804)" + ], + "uri": "i17145965", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744850" + } + ], + "enumerationChronology": [ + "no. 3-4 (1804)" + ], + "idBarcode": [ + "33433081744850" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1802)", + "urn:barcode:33433081744942" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1802)" + ], + "uri": "i17145956", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744942" + } + ], + "enumerationChronology": [ + "no. 3-4 (1802)" + ], + "idBarcode": [ + "33433081744942" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1801)", + "urn:barcode:33433081745006" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 3-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1801)" + ], + "uri": "i17145950", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081745006" + } + ], + "enumerationChronology": [ + "no. 3-4 (1801)" + ], + "idBarcode": [ + "33433081745006" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1800)", + "urn:barcode:33433081744561" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1800)" + ], + "uri": "i17145944", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744561" + } + ], + "enumerationChronology": [ + "no. 3-4 (1800)" + ], + "idBarcode": [ + "33433081744561" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1799)", + "urn:barcode:33433081744629" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1799)" + ], + "uri": "i17145938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744629" + } + ], + "enumerationChronology": [ + "no. 3-4 (1799)" + ], + "idBarcode": [ + "33433081744629" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1798)", + "urn:barcode:33433081744686" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003-4 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1798)" + ], + "uri": "i17145932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3-4 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744686" + } + ], + "enumerationChronology": [ + "no. 3-4 (1798)" + ], + "idBarcode": [ + "33433081744686" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1794)", + "urn:barcode:33433081744389" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1794)" + ], + "uri": "i17145912", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744389" + } + ], + "enumerationChronology": [ + "no. 3 (1794)" + ], + "idBarcode": [ + "33433081744389" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1793)", + "urn:barcode:33433081744504" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1793)" + ], + "uri": "i17145900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081744504" + } + ], + "enumerationChronology": [ + "no. 3 (1793)" + ], + "idBarcode": [ + "33433081744504" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1792)", + "urn:barcode:33433081743878" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1792)" + ], + "uri": "i17145888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743878" + } + ], + "enumerationChronology": [ + "no. 3 (1792)" + ], + "idBarcode": [ + "33433081743878" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1791)", + "urn:barcode:33433081743993" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1791)" + ], + "uri": "i17145876", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081743993" + } + ], + "enumerationChronology": [ + "no. 3 (1791)" + ], + "idBarcode": [ + "33433081743993" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1790)", + "urn:barcode:33433081744116" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1790)" + ], + "uri": "i17145864", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744116" + } + ], + "enumerationChronology": [ + "no. 3 (1790)" + ], + "idBarcode": [ + "33433081744116" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1789)", + "urn:barcode:33433081744231" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1789)" + ], + "uri": "i17145852", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744231" + } + ], + "enumerationChronology": [ + "no. 3 (1789)" + ], + "idBarcode": [ + "33433081744231" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1788)", + "urn:barcode:33433081746103" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1788)" + ], + "uri": "i17145840", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746103" + } + ], + "enumerationChronology": [ + "no. 3 (1788)" + ], + "idBarcode": [ + "33433081746103" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1787)", + "urn:barcode:33433081746244" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1787)" + ], + "uri": "i17145826", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081746244" + } + ], + "enumerationChronology": [ + "no. 3 (1787)" + ], + "idBarcode": [ + "33433081746244" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1786)", + "urn:barcode:33433081745923" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1786)" + ], + "uri": "i17145808", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745923" + } + ], + "enumerationChronology": [ + "no. 3 (1786)" + ], + "idBarcode": [ + "33433081745923" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1785)", + "urn:barcode:33433081745865" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1785)" + ], + "uri": "i17145814", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745865" + } + ], + "enumerationChronology": [ + "no. 3 (1785)" + ], + "idBarcode": [ + "33433081745865" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1784)", + "urn:barcode:33433081745584" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1784)" + ], + "uri": "i17145792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745584" + } + ], + "enumerationChronology": [ + "no. 3 (1784)" + ], + "idBarcode": [ + "33433081745584" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1783)", + "urn:barcode:33433081745709" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1783)" + ], + "uri": "i17145780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745709" + } + ], + "enumerationChronology": [ + "no. 3 (1783)" + ], + "idBarcode": [ + "33433081745709" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1782)", + "urn:barcode:33433081745071" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1782)" + ], + "uri": "i17145768", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745071" + } + ], + "enumerationChronology": [ + "no. 3 (1782)" + ], + "idBarcode": [ + "33433081745071" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1781)", + "urn:barcode:33433081745162" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1781)" + ], + "uri": "i17145759", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745162" + } + ], + "enumerationChronology": [ + "no. 3 (1781)" + ], + "idBarcode": [ + "33433081745162" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1780)", + "urn:barcode:33433081745329" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1780)" + ], + "uri": "i17145743", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745329" + } + ], + "enumerationChronology": [ + "no. 3 (1780)" + ], + "idBarcode": [ + "33433081745329" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1779)", + "urn:barcode:33433081745444" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1779)" + ], + "uri": "i17145731", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745444" + } + ], + "enumerationChronology": [ + "no. 3 (1779)" + ], + "idBarcode": [ + "33433081745444" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1778)", + "urn:barcode:33433081747325" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1778)" + ], + "uri": "i17145718", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747325" + } + ], + "enumerationChronology": [ + "no. 3 (1778)" + ], + "idBarcode": [ + "33433081747325" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1777)", + "urn:barcode:33433081747440" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1777)" + ], + "uri": "i17145706", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747440" + } + ], + "enumerationChronology": [ + "no. 3 (1777)" + ], + "idBarcode": [ + "33433081747440" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1776)", + "urn:barcode:33433081747101" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1776)" + ], + "uri": "i17145694", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747101" + } + ], + "enumerationChronology": [ + "no. 3 (1776)" + ], + "idBarcode": [ + "33433081747101" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 3 (1775)", + "urn:barcode:33433081747192" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000003 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 3-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1775)" + ], + "uri": "i17145681", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 3 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747192" + } + ], + "enumerationChronology": [ + "no. 3 (1775)" + ], + "idBarcode": [ + "33433081747192" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2-3 (1818)", + "urn:barcode:33433081743142" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002-3 (1818)", + "dateRange": [ + { + "gte": "1818", + "lte": "1818" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 2-1818" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2-3 (1818)" + ], + "uri": "i17146036", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2-3 (1818)" + }, + { + "type": "bf:Barcode", + "value": "33433081743142" + } + ], + "enumerationChronology": [ + "no. 2-3 (1818)" + ], + "idBarcode": [ + "33433081743142" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1794)", + "urn:barcode:33433081744397" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1794)" + ], + "uri": "i17145911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744397" + } + ], + "enumerationChronology": [ + "no. 2 (1794)" + ], + "idBarcode": [ + "33433081744397" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1793)", + "urn:barcode:33433081743761" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1793)" + ], + "uri": "i17145899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081743761" + } + ], + "enumerationChronology": [ + "no. 2 (1793)" + ], + "idBarcode": [ + "33433081743761" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1792)", + "urn:barcode:33433081743886" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1792)" + ], + "uri": "i17145887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743886" + } + ], + "enumerationChronology": [ + "no. 2 (1792)" + ], + "idBarcode": [ + "33433081743886" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1791)", + "urn:barcode:33433081744009" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1791)" + ], + "uri": "i17145875", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081744009" + } + ], + "enumerationChronology": [ + "no. 2 (1791)" + ], + "idBarcode": [ + "33433081744009" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1790)", + "urn:barcode:33433081744124" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1790)" + ], + "uri": "i17145863", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744124" + } + ], + "enumerationChronology": [ + "no. 2 (1790)" + ], + "idBarcode": [ + "33433081744124" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1789)", + "urn:barcode:33433081744249" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1789)" + ], + "uri": "i17145851", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744249" + } + ], + "enumerationChronology": [ + "no. 2 (1789)" + ], + "idBarcode": [ + "33433081744249" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1788)", + "urn:barcode:33433081746111" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1788)" + ], + "uri": "i17145839", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746111" + } + ], + "enumerationChronology": [ + "no. 2 (1788)" + ], + "idBarcode": [ + "33433081746111" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1786)", + "urn:barcode:33433081745931" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1786)" + ], + "uri": "i17145807", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745931" + } + ], + "enumerationChronology": [ + "no. 2 (1786)" + ], + "idBarcode": [ + "33433081745931" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1785)", + "urn:barcode:33433081746236" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1785)" + ], + "uri": "i17145827", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081746236" + } + ], + "enumerationChronology": [ + "no. 2 (1785)" + ], + "idBarcode": [ + "33433081746236" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1784)", + "urn:barcode:33433081745592" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1784)" + ], + "uri": "i17145791", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745592" + } + ], + "enumerationChronology": [ + "no. 2 (1784)" + ], + "idBarcode": [ + "33433081745592" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1783)", + "urn:barcode:33433081745717" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1783)" + ], + "uri": "i17145779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745717" + } + ], + "enumerationChronology": [ + "no. 2 (1783)" + ], + "idBarcode": [ + "33433081745717" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1782)", + "urn:barcode:33433081745089" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1782)" + ], + "uri": "i17145767", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745089" + } + ], + "enumerationChronology": [ + "no. 2 (1782)" + ], + "idBarcode": [ + "33433081745089" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1781)", + "urn:barcode:33433081745220" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1781)" + ], + "uri": "i17145753", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745220" + } + ], + "enumerationChronology": [ + "no. 2 (1781)" + ], + "idBarcode": [ + "33433081745220" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1780)", + "urn:barcode:33433081745337" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1780)" + ], + "uri": "i17145742", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745337" + } + ], + "enumerationChronology": [ + "no. 2 (1780)" + ], + "idBarcode": [ + "33433081745337" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1779)", + "urn:barcode:33433081745451" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1779)" + ], + "uri": "i17145730", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745451" + } + ], + "enumerationChronology": [ + "no. 2 (1779)" + ], + "idBarcode": [ + "33433081745451" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1778)", + "urn:barcode:33433081747333" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1778)" + ], + "uri": "i17145717", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747333" + } + ], + "enumerationChronology": [ + "no. 2 (1778)" + ], + "idBarcode": [ + "33433081747333" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1777)", + "urn:barcode:33433081747457" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1777)" + ], + "uri": "i17145705", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747457" + } + ], + "enumerationChronology": [ + "no. 2 (1777)" + ], + "idBarcode": [ + "33433081747457" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1776)", + "urn:barcode:33433081747473" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1776)" + ], + "uri": "i17145693", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747473" + } + ], + "enumerationChronology": [ + "no. 2 (1776)" + ], + "idBarcode": [ + "33433081747473" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1775)", + "urn:barcode:33433081747200" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1775)" + ], + "uri": "i17145680", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747200" + } + ], + "enumerationChronology": [ + "no. 2 (1775)" + ], + "idBarcode": [ + "33433081747200" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 2 (1737)", + "urn:barcode:33433081746251" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000002 (1737)", + "dateRange": [ + { + "gte": "1737", + "lte": "1737" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 2-1737" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1737)" + ], + "uri": "i17145825", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 2 (1737)" + }, + { + "type": "bf:Barcode", + "value": "33433081746251" + } + ], + "enumerationChronology": [ + "no. 2 (1737)" + ], + "idBarcode": [ + "33433081746251" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1797)", + "urn:barcode:33433081744728" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-4 (1797)", + "dateRange": [ + { + "gte": "1797", + "lte": "1797" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1797" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1797)" + ], + "uri": "i17145928", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1797)" + }, + { + "type": "bf:Barcode", + "value": "33433081744728" + } + ], + "enumerationChronology": [ + "no. 1-4 (1797)" + ], + "idBarcode": [ + "33433081744728" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1796)", + "urn:barcode:33433081744751" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-4 (1796)", + "dateRange": [ + { + "gte": "1796", + "lte": "1796" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1796" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1796)" + ], + "uri": "i17145925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1796)" + }, + { + "type": "bf:Barcode", + "value": "33433081744751" + } + ], + "enumerationChronology": [ + "no. 1-4 (1796)" + ], + "idBarcode": [ + "33433081744751" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1795)", + "urn:barcode:33433081744280" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-4 (1795)", + "dateRange": [ + { + "gte": "1795", + "lte": "1795" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1795" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1795)" + ], + "uri": "i17145922", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-4 (1795)" + }, + { + "type": "bf:Barcode", + "value": "33433081744280" + } + ], + "enumerationChronology": [ + "no. 1-4 (1795)" + ], + "idBarcode": [ + "33433081744280" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1803)", + "urn:barcode:33433081744892" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-3 (1803)", + "dateRange": [ + { + "gte": "1803", + "lte": "1803" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1803" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1803)" + ], + "uri": "i17145961", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1803)" + }, + { + "type": "bf:Barcode", + "value": "33433081744892" + } + ], + "enumerationChronology": [ + "no. 1-3 (1803)" + ], + "idBarcode": [ + "33433081744892" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1774)", + "urn:barcode:33433081747259" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-3 (1774)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1774" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1774)" + ], + "uri": "i17145675", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1774)" + }, + { + "type": "bf:Barcode", + "value": "33433081747259" + } + ], + "enumerationChronology": [ + "no. 1-3 (1774)" + ], + "idBarcode": [ + "33433081747259" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1773)", + "urn:barcode:33433081746798" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-3 (1773)", + "dateRange": [ + { + "gte": "1773", + "lte": "1773" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1773" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1773)" + ], + "uri": "i17145671", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-3 (1773)" + }, + { + "type": "bf:Barcode", + "value": "33433081746798" + } + ], + "enumerationChronology": [ + "no. 1-3 (1773)" + ], + "idBarcode": [ + "33433081746798" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1814)", + "urn:barcode:33433081743258" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1814)" + ], + "uri": "i17146025", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743258" + } + ], + "enumerationChronology": [ + "no. 1-2 (1814)" + ], + "idBarcode": [ + "33433081743258" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1813)", + "urn:barcode:33433081743563" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1813)", + "dateRange": [ + { + "gte": "1813", + "lte": "1813" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1813" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1813)" + ], + "uri": "i17146019", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1813)" + }, + { + "type": "bf:Barcode", + "value": "33433081743563" + } + ], + "enumerationChronology": [ + "no. 1-2 (1813)" + ], + "idBarcode": [ + "33433081743563" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1812)", + "urn:barcode:33433081743621" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1812)", + "dateRange": [ + { + "gte": "1812", + "lte": "1812" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1812" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1812)" + ], + "uri": "i17146013", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1812)" + }, + { + "type": "bf:Barcode", + "value": "33433081743621" + } + ], + "enumerationChronology": [ + "no. 1-2 (1812)" + ], + "idBarcode": [ + "33433081743621" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1811)", + "urn:barcode:33433081743688" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1811)", + "dateRange": [ + { + "gte": "1811", + "lte": "1811" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1811" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1811)" + ], + "uri": "i17146007", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1811)" + }, + { + "type": "bf:Barcode", + "value": "33433081743688" + } + ], + "enumerationChronology": [ + "no. 1-2 (1811)" + ], + "idBarcode": [ + "33433081743688" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1810)", + "urn:barcode:33433081743753" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1810)", + "dateRange": [ + { + "gte": "1810", + "lte": "1810" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1810" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1810)" + ], + "uri": "i17146000", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1810)" + }, + { + "type": "bf:Barcode", + "value": "33433081743753" + } + ], + "enumerationChronology": [ + "no. 1-2 (1810)" + ], + "idBarcode": [ + "33433081743753" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1809)", + "urn:barcode:33433081743316" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1809)", + "dateRange": [ + { + "gte": "1809", + "lte": "1809" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1809" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1809)" + ], + "uri": "i17145994", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1809)" + }, + { + "type": "bf:Barcode", + "value": "33433081743316" + } + ], + "enumerationChronology": [ + "no. 1-2 (1809)" + ], + "idBarcode": [ + "33433081743316" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1808)", + "urn:barcode:33433081743365" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1808)", + "dateRange": [ + { + "gte": "1808", + "lte": "1808" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1808" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1808)" + ], + "uri": "i17145989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1808)" + }, + { + "type": "bf:Barcode", + "value": "33433081743365" + } + ], + "enumerationChronology": [ + "no. 1-2 (1808)" + ], + "idBarcode": [ + "33433081743365" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1807)", + "urn:barcode:33433081743415" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1807)", + "dateRange": [ + { + "gte": "1807", + "lte": "1807" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1807" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1807)" + ], + "uri": "i17145983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1807)" + }, + { + "type": "bf:Barcode", + "value": "33433081743415" + } + ], + "enumerationChronology": [ + "no. 1-2 (1807)" + ], + "idBarcode": [ + "33433081743415" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1806)", + "urn:barcode:33433081743472" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1806)", + "dateRange": [ + { + "gte": "1806", + "lte": "1806" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1806" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1806)" + ], + "uri": "i17145977", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1806)" + }, + { + "type": "bf:Barcode", + "value": "33433081743472" + } + ], + "enumerationChronology": [ + "no. 1-2 (1806)" + ], + "idBarcode": [ + "33433081743472" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1805)", + "urn:barcode:33433081744793" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1805)", + "dateRange": [ + { + "gte": "1805", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1805" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1805)" + ], + "uri": "i17145971", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081744793" + } + ], + "enumerationChronology": [ + "no. 1-2 (1805)" + ], + "idBarcode": [ + "33433081744793" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1804)", + "urn:barcode:33433081744868" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1804)" + ], + "uri": "i17145964", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744868" + } + ], + "enumerationChronology": [ + "no. 1-2 (1804)" + ], + "idBarcode": [ + "33433081744868" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1802)", + "urn:barcode:33433081744959" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1802)", + "dateRange": [ + { + "gte": "1802", + "lte": "1802" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1802" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1802)" + ], + "uri": "i17145955", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1802)" + }, + { + "type": "bf:Barcode", + "value": "33433081744959" + } + ], + "enumerationChronology": [ + "no. 1-2 (1802)" + ], + "idBarcode": [ + "33433081744959" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1801)", + "urn:barcode:33433081744512" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1801)", + "dateRange": [ + { + "gte": "1801", + "lte": "1801" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 1-1801" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1801)" + ], + "uri": "i17145949", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1801)" + }, + { + "type": "bf:Barcode", + "value": "33433081744512" + } + ], + "enumerationChronology": [ + "no. 1-2 (1801)" + ], + "idBarcode": [ + "33433081744512" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1800)", + "urn:barcode:33433081744579" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1800)", + "dateRange": [ + { + "gte": "1800", + "lte": "1800" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1800" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1800)" + ], + "uri": "i17145943", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1800)" + }, + { + "type": "bf:Barcode", + "value": "33433081744579" + } + ], + "enumerationChronology": [ + "no. 1-2 (1800)" + ], + "idBarcode": [ + "33433081744579" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1799)", + "urn:barcode:33433081744637" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1799)", + "dateRange": [ + { + "gte": "1799", + "lte": "1799" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1799" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1799)" + ], + "uri": "i17145937", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1799)" + }, + { + "type": "bf:Barcode", + "value": "33433081744637" + } + ], + "enumerationChronology": [ + "no. 1-2 (1799)" + ], + "idBarcode": [ + "33433081744637" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1798)", + "urn:barcode:33433081744694" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001-2 (1798)", + "dateRange": [ + { + "gte": "1798", + "lte": "1798" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1798" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1798)" + ], + "uri": "i17145931", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1-2 (1798)" + }, + { + "type": "bf:Barcode", + "value": "33433081744694" + } + ], + "enumerationChronology": [ + "no. 1-2 (1798)" + ], + "idBarcode": [ + "33433081744694" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1794)", + "urn:barcode:33433081744405" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1794)", + "dateRange": [ + { + "gte": "1794", + "lte": "1794" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1794" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1794)" + ], + "uri": "i17145910", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1794)" + }, + { + "type": "bf:Barcode", + "value": "33433081744405" + } + ], + "enumerationChronology": [ + "no. 1 (1794)" + ], + "idBarcode": [ + "33433081744405" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1793)", + "urn:barcode:33433081743779" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1793)", + "dateRange": [ + { + "gte": "1793", + "lte": "1793" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1793" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1793)" + ], + "uri": "i17145898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1793)" + }, + { + "type": "bf:Barcode", + "value": "33433081743779" + } + ], + "enumerationChronology": [ + "no. 1 (1793)" + ], + "idBarcode": [ + "33433081743779" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1792)", + "urn:barcode:33433081743894" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1792)" + ], + "uri": "i17145886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743894" + } + ], + "enumerationChronology": [ + "no. 1 (1792)" + ], + "idBarcode": [ + "33433081743894" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1791)", + "urn:barcode:33433081744017" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1791)", + "dateRange": [ + { + "gte": "1791", + "lte": "1791" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1791" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1791)" + ], + "uri": "i17145874", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1791)" + }, + { + "type": "bf:Barcode", + "value": "33433081744017" + } + ], + "enumerationChronology": [ + "no. 1 (1791)" + ], + "idBarcode": [ + "33433081744017" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1790)", + "urn:barcode:33433081744132" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1790)", + "dateRange": [ + { + "gte": "1790", + "lte": "1790" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1790" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1790)" + ], + "uri": "i17145862", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1790)" + }, + { + "type": "bf:Barcode", + "value": "33433081744132" + } + ], + "enumerationChronology": [ + "no. 1 (1790)" + ], + "idBarcode": [ + "33433081744132" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1789)", + "urn:barcode:33433081744256" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1789)" + ], + "uri": "i17145850", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744256" + } + ], + "enumerationChronology": [ + "no. 1 (1789)" + ], + "idBarcode": [ + "33433081744256" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1788)", + "urn:barcode:33433081746129" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1788)", + "dateRange": [ + { + "gte": "1788", + "lte": "1788" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1788" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1788)" + ], + "uri": "i17145838", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1788)" + }, + { + "type": "bf:Barcode", + "value": "33433081746129" + } + ], + "enumerationChronology": [ + "no. 1 (1788)" + ], + "idBarcode": [ + "33433081746129" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1787)", + "urn:barcode:33433081745774" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1787)", + "dateRange": [ + { + "gte": "1787", + "lte": "1787" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1787" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1787)" + ], + "uri": "i17145823", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1787)" + }, + { + "type": "bf:Barcode", + "value": "33433081745774" + } + ], + "enumerationChronology": [ + "no. 1 (1787)" + ], + "idBarcode": [ + "33433081745774" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1786)", + "urn:barcode:33433081745949" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1786)", + "dateRange": [ + { + "gte": "1786", + "lte": "1786" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1786" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1786)" + ], + "uri": "i17145806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1786)" + }, + { + "type": "bf:Barcode", + "value": "33433081745949" + } + ], + "enumerationChronology": [ + "no. 1 (1786)" + ], + "idBarcode": [ + "33433081745949" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1785)", + "urn:barcode:33433081745980" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1785)", + "dateRange": [ + { + "gte": "1785", + "lte": "1785" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1785" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1785)" + ], + "uri": "i17145802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1785)" + }, + { + "type": "bf:Barcode", + "value": "33433081745980" + } + ], + "enumerationChronology": [ + "no. 1 (1785)" + ], + "idBarcode": [ + "33433081745980" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1784)", + "urn:barcode:33433081745600" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1784)", + "dateRange": [ + { + "gte": "1784", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1784" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1784)" + ], + "uri": "i17145790", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081745600" + } + ], + "enumerationChronology": [ + "no. 1 (1784)" + ], + "idBarcode": [ + "33433081745600" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1783)", + "urn:barcode:33433081745725" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1783)" + ], + "uri": "i17145778", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745725" + } + ], + "enumerationChronology": [ + "no. 1 (1783)" + ], + "idBarcode": [ + "33433081745725" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1782)", + "urn:barcode:33433081745097" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1782)", + "dateRange": [ + { + "gte": "1782", + "lte": "1782" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1782)" + ], + "uri": "i17145766", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1782)" + }, + { + "type": "bf:Barcode", + "value": "33433081745097" + } + ], + "enumerationChronology": [ + "no. 1 (1782)" + ], + "idBarcode": [ + "33433081745097" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1781)", + "urn:barcode:33433081745238" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1781)", + "dateRange": [ + { + "gte": "1781", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1781" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1781)" + ], + "uri": "i17145752", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745238" + } + ], + "enumerationChronology": [ + "no. 1 (1781)" + ], + "idBarcode": [ + "33433081745238" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1780)", + "urn:barcode:33433081745345" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1780)" + ], + "uri": "i17145741", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745345" + } + ], + "enumerationChronology": [ + "no. 1 (1780)" + ], + "idBarcode": [ + "33433081745345" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1779)", + "urn:barcode:33433081745469" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1779)", + "dateRange": [ + { + "gte": "1779", + "lte": "1779" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1779)" + ], + "uri": "i17145729", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1779)" + }, + { + "type": "bf:Barcode", + "value": "33433081745469" + } + ], + "enumerationChronology": [ + "no. 1 (1779)" + ], + "idBarcode": [ + "33433081745469" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1778)", + "urn:barcode:33433081747341" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1778)", + "dateRange": [ + { + "gte": "1778", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1778" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1778)" + ], + "uri": "i17145716", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081747341" + } + ], + "enumerationChronology": [ + "no. 1 (1778)" + ], + "idBarcode": [ + "33433081747341" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1777)", + "urn:barcode:33433081747465" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1777)", + "dateRange": [ + { + "gte": "1777", + "lte": "1777" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1777" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1777)" + ], + "uri": "i17145704", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1777)" + }, + { + "type": "bf:Barcode", + "value": "33433081747465" + } + ], + "enumerationChronology": [ + "no. 1 (1777)" + ], + "idBarcode": [ + "33433081747465" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1776)", + "urn:barcode:33433081747481" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1776)", + "dateRange": [ + { + "gte": "1776", + "lte": "1776" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1776)" + ], + "uri": "i17145692", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1776)" + }, + { + "type": "bf:Barcode", + "value": "33433081747481" + } + ], + "enumerationChronology": [ + "no. 1 (1776)" + ], + "idBarcode": [ + "33433081747481" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 1 (1775)", + "urn:barcode:33433081747218" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000001 (1775)", + "dateRange": [ + { + "gte": "1775", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 1-1775" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1775)" + ], + "uri": "i17145679", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 1 (1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747218" + } + ], + "enumerationChronology": [ + "no. 1 (1775)" + ], + "idBarcode": [ + "33433081747218" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) Table Generale 1-28 (1803-1805)", + "urn:barcode:33433081744801" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) Table Generale 1-28 (1803-1805)", + "dateRange": [ + { + "gte": "1803", + "lte": "1805" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1803" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) Table Generale 1-28 (1803-1805)" + ], + "uri": "i17145970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) Table Generale 1-28 (1803-1805)" + }, + { + "type": "bf:Barcode", + "value": "33433081744801" + } + ], + "enumerationChronology": [ + "Table Generale 1-28 (1803-1805)" + ], + "idBarcode": [ + "33433081744801" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) Table (1782-1784)", + "urn:barcode:33433081743126" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) Table (1782-1784)", + "dateRange": [ + { + "gte": "1782", + "lte": "1784" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " -1782" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) Table (1782-1784)" + ], + "uri": "i17146038", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) Table (1782-1784)" + }, + { + "type": "bf:Barcode", + "value": "33433081743126" + } + ], + "enumerationChronology": [ + "Table (1782-1784)" + ], + "idBarcode": [ + "33433081743126" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) Table (1779-1781)", + "urn:barcode:33433081745105" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) Table (1779-1781)", + "dateRange": [ + { + "gte": "1779", + "lte": "1781" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " -1779" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) Table (1779-1781)" + ], + "uri": "i17145765", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) Table (1779-1781)" + }, + { + "type": "bf:Barcode", + "value": "33433081745105" + } + ], + "enumerationChronology": [ + "Table (1779-1781)" + ], + "idBarcode": [ + "33433081745105" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) Table (1776-1778)", + "urn:barcode:33433081745477" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) Table (1776-1778)", + "dateRange": [ + { + "gte": "1776", + "lte": "1778" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " -1776" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) Table (1776-1778)" + ], + "uri": "i17145728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) Table (1776-1778)" + }, + { + "type": "bf:Barcode", + "value": "33433081745477" + } + ], + "enumerationChronology": [ + "Table (1776-1778)" + ], + "idBarcode": [ + "33433081745477" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) Table (1772-1775)", + "urn:barcode:33433081747499" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) Table (1772-1775)", + "dateRange": [ + { + "gte": "1772", + "lte": "1775" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " -1772" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) Table (1772-1775)" + ], + "uri": "i17145691", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) Table (1772-1775)" + }, + { + "type": "bf:Barcode", + "value": "33433081747499" + } + ], + "enumerationChronology": [ + "Table (1772-1775)" + ], + "idBarcode": [ + "33433081747499" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + } + ], + "dimensions": [ + "15 cm." + ] + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 370 + } + ] + } + }, + "item_format": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 370 + } + ] + } + }, + "item_status": { + "doc_count": 370, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 370 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-906378eb9669e457b097e0ce9eaf45ee.json b/test/fixtures/query-906378eb9669e457b097e0ce9eaf45ee.json new file mode 100644 index 00000000..60341151 --- /dev/null +++ b/test/fixtures/query-906378eb9669e457b097e0ce9eaf45ee.json @@ -0,0 +1,670 @@ +{ + "body": { + "took": 7, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.557082, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011374", + "_score": 15.557082, + "_source": { + "extent": [ + "2 v. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1827 + ], + "dateEndString": [ + "1828" + ], + "title": [ + "The table book" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 86-498" + ], + "numItemVolumesParsed": [ + 4 + ], + "createdString": [ + "1827" + ], + "creatorLiteral": [ + "Hone, William, 1780-1842." + ], + "idLccn": [ + "35038534" + ], + "numElectronicResources": [ + 4 + ], + "dateStartYear": [ + 1827 + ], + "idOclc": [ + "NYPG012000337-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "dateEndYear": [ + 1828 + ], + "updatedAt": 1711336788087, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:bnum:10011374", + "urn:oclc:NYPG012000337-B", + "urn:lccn:35038534", + "urn:identifier:NNSZ01213343", + "urn:identifier:(WaOLN)nyp0211346" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "lccClassification": [ + "AC4 .H65" + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433067332555" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book) v. 2", + "urn:barcode:33433067332555" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book) v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332555", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book) v. 2" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i14747243" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057532339" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498 v. 2", + "urn:barcode:33433057532339" + ], + "identifierV2": [ + { + "value": "JFE 86-498 v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532339", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498 v. 2" + ], + "shelfMark_sort": "aJFE 86-498 v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i13785802" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433067332548" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book) v. 1", + "urn:barcode:33433067332548" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book) v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332548", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book) v. 1" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i10005488" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057532081" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498 v. 1", + "urn:barcode:33433057532081" + ], + "identifierV2": [ + { + "value": "JFE 86-498 v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532081", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498 v. 1" + ], + "shelfMark_sort": "aJFE 86-498 v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i10005487" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 2 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-b5f1f7a5256bfb33747009bc91563857.json b/test/fixtures/query-b5f1f7a5256bfb33747009bc91563857.json new file mode 100644 index 00000000..63f51f7c --- /dev/null +++ b/test/fixtures/query-b5f1f7a5256bfb33747009bc91563857.json @@ -0,0 +1,670 @@ +{ + "body": { + "took": 14, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.566503, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011374", + "_score": 15.566503, + "_source": { + "extent": [ + "2 v. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1827 + ], + "dateEndString": [ + "1828" + ], + "title": [ + "The table book" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 86-498" + ], + "numItemVolumesParsed": [ + 4 + ], + "createdString": [ + "1827" + ], + "creatorLiteral": [ + "Hone, William, 1780-1842." + ], + "idLccn": [ + "35038534" + ], + "numElectronicResources": [ + 4 + ], + "dateStartYear": [ + 1827 + ], + "idOclc": [ + "NYPG012000337-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "dateEndYear": [ + 1828 + ], + "updatedAt": 1711336788087, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:shelfmark:JFE 86-498", + "urn:bnum:10011374", + "urn:oclc:NYPG012000337-B", + "urn:lccn:35038534", + "urn:identifier:NNSZ01213343", + "urn:identifier:(WaOLN)nyp0211346" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "lccClassification": [ + "AC4 .H65" + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433067332555" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book) v. 2", + "urn:barcode:33433067332555" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book) v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332555", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book) v. 2" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i14747243" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057532339" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498 v. 2", + "urn:barcode:33433057532339" + ], + "identifierV2": [ + { + "value": "JFE 86-498 v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532339", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498 v. 2" + ], + "shelfMark_sort": "aJFE 86-498 v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i13785802" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433067332548" + ], + "identifier": [ + "urn:shelfmark:*AY (Hone, W. Table book) v. 1", + "urn:barcode:33433067332548" + ], + "identifierV2": [ + { + "value": "*AY (Hone, W. Table book) v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433067332548", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*AY (Hone, W. Table book) v. 1" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i10005488" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057532081" + ], + "identifier": [ + "urn:shelfmark:JFE 86-498 v. 1", + "urn:barcode:33433057532081" + ], + "identifierV2": [ + { + "value": "JFE 86-498 v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433057532081", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 86-498 v. 1" + ], + "shelfMark_sort": "aJFE 86-498 v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i10005487" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 2 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-b6f9de46f1bb1c3b91e48279d2a2d3a3.json b/test/fixtures/query-b6f9de46f1bb1c3b91e48279d2a2d3a3.json new file mode 100644 index 00000000..61adf1eb --- /dev/null +++ b/test/fixtures/query-b6f9de46f1bb1c3b91e48279d2a2d3a3.json @@ -0,0 +1,9335 @@ +{ + "body": { + "took": 1002, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.04925, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 14.04925, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 834 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 839 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "contributorLiteralNormalized": [ + "Harold Ross", + "Harold Wallace Ross", + "William Shawn", + "Tina Brown", + "David Remnick", + "Katharine White", + "Katharine Sergeant White", + "Katharine Sergeant Angell White", + "E. White", + "E. B. White", + "Rea Irvin", + "Roger Angell" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 769 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "popularity": 1033, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 11 (May. 6, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 12 (May. 13, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 13 (May. 20, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 14 (May. 27, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 15 (Jun. 3, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 16 (Jun. 10, 2024)", + "position": 89, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 17 (Jun. 17, 2024)", + "position": 90, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 18 (Jun. 24, 2024)", + "position": 91, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 19 (Jul. 1, 2024)", + "position": 92, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 20 (Jul. 8, 2024)", + "position": 93, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 21 (Jul. 22, 2024)", + "position": 94, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 22 (Jul. 29, 2024)", + "position": 95, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 23 (Aug. 5, 2024)", + "position": 96, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 24 (Aug. 12, 2024)", + "position": 97, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 25 (Aug. 19, 2024)", + "position": 98, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 26 (Aug. 26, 2024)", + "position": 99, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 27 (Sep. 2, 2024)", + "position": 100, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 28 (Sep. 9, 2024)", + "position": 101, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 29 (Sep. 16, 2024)", + "position": 102, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 30 (Sep. 23, 2024)", + "position": 103, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 31 (Sep. 30, 2024)", + "position": 104, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 32 (Oct. 7, 2024)", + "position": 105, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 33 (Oct. 14, 2024)", + "position": 106, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 34 (Oct. 21, 2024)", + "position": 107, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 35 (Oct. 28, 2024)", + "position": 108, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1725650390151, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 132 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "contributorLiteralWithoutDates": [ + "Ross, Harold Wallace", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks)", + "Irvin, Rea", + "Angell, Roger" + ], + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 839, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 814 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-28", + "lte": "2024-10-28" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 35 (Oct. 28, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-28" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-0", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 35" + ] + }, + "sort": [ + " 100-2024-10-28" + ] + }, + { + "_nested": { + "field": "items", + "offset": 813 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-21", + "lte": "2024-10-21" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 34 (Oct. 21, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-21" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-1", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 34" + ] + }, + "sort": [ + " 100-2024-10-21" + ] + }, + { + "_nested": { + "field": "items", + "offset": 812 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-14", + "lte": "2024-10-14" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 33 (Oct. 14, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-14" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-2", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 33" + ] + }, + "sort": [ + " 100-2024-10-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 811 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-07", + "lte": "2024-10-07" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 32 (Oct. 7, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-10-07" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-3", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 32" + ] + }, + "sort": [ + " 100-2024-10-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 810 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-30", + "lte": "2024-09-30" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 31 (Sep. 30, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-30" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-4", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 31" + ] + }, + "sort": [ + " 100-2024-09-30" + ] + }, + { + "_nested": { + "field": "items", + "offset": 809 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-23", + "lte": "2024-09-23" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 30 (Sep. 23, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-23" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-5", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 30" + ] + }, + "sort": [ + " 100-2024-09-23" + ] + }, + { + "_nested": { + "field": "items", + "offset": 808 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-16", + "lte": "2024-09-16" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 29 (Sep. 16, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-16" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 29" + ] + }, + "sort": [ + " 100-2024-09-16" + ] + }, + { + "_nested": { + "field": "items", + "offset": 807 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-09", + "lte": "2024-09-09" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 28 (Sep. 9, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-09" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 28" + ] + }, + "sort": [ + " 100-2024-09-09" + ] + }, + { + "_nested": { + "field": "items", + "offset": 806 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-09-02", + "lte": "2024-09-02" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 27 (Sep. 2, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-09-02" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 27" + ] + }, + "sort": [ + " 100-2024-09-02" + ] + }, + { + "_nested": { + "field": "items", + "offset": 805 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-08-26", + "lte": "2024-08-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 26 (Aug. 26, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-08-26" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 26" + ] + }, + "sort": [ + " 100-2024-08-26" + ] + }, + { + "_nested": { + "field": "items", + "offset": 804 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-08-19", + "lte": "2024-08-19" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 25 (Aug. 19, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-08-19" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 25" + ] + }, + "sort": [ + " 100-2024-08-19" + ] + }, + { + "_nested": { + "field": "items", + "offset": 803 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-08-12", + "lte": "2024-08-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 24 (Aug. 12, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-08-12" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 24" + ] + }, + "sort": [ + " 100-2024-08-12" + ] + }, + { + "_nested": { + "field": "items", + "offset": 802 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-08-05", + "lte": "2024-08-05" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 23 (Aug. 5, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-08-05" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-12", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 23" + ] + }, + "sort": [ + " 100-2024-08-05" + ] + }, + { + "_nested": { + "field": "items", + "offset": 801 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-07-29", + "lte": "2024-07-29" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 22 (Jul. 29, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-07-29" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-13", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 22" + ] + }, + "sort": [ + " 100-2024-07-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 800 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-07-22", + "lte": "2024-07-22" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 21 (Jul. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-07-22" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 21" + ] + }, + "sort": [ + " 100-2024-07-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 798 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-07-08", + "lte": "2024-07-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 20 (Jul. 8, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-07-08" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-16", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 20" + ] + }, + "sort": [ + " 100-2024-07-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 797 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-07-01", + "lte": "2024-07-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 19 (Jul. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-07-01" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-17", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 19" + ] + }, + "sort": [ + " 100-2024-07-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 796 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-06-24", + "lte": "2024-06-24" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 18 (Jun. 24, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-06-24" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-18", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 18" + ] + }, + "sort": [ + " 100-2024-06-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 795 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-06-17", + "lte": "2024-06-17" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 17 (Jun. 17, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-06-17" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-19", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 17" + ] + }, + "sort": [ + " 100-2024-06-17" + ] + }, + { + "_nested": { + "field": "items", + "offset": 799 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-06-10", + "lte": "2024-06-10" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 16 (Jun. 10, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-06-10" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-15", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 16" + ] + }, + "sort": [ + " 100-2024-06-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 794 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-06-03", + "lte": "2024-06-03" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 15 (Jun. 3, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-06-03" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-20", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 15" + ] + }, + "sort": [ + " 100-2024-06-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 793 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-27", + "lte": "2024-05-27" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 14 (May. 27, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-27" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-21", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 14" + ] + }, + "sort": [ + " 100-2024-05-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 792 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-20", + "lte": "2024-05-20" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 13 (May. 20, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-20" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-22", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 13" + ] + }, + "sort": [ + " 100-2024-05-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 791 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-13", + "lte": "2024-05-13" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 12 (May. 13, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-13" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-23", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 12" + ] + }, + "sort": [ + " 100-2024-05-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 790 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-06", + "lte": "2024-05-06" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 11 (May. 6, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-06" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-24", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 11" + ] + }, + "sort": [ + " 100-2024-05-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 789 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-22", + "lte": "2024-04-22" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 10 (Apr. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-22" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-25", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 10" + ] + }, + "sort": [ + " 100-2024-04-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 788 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-15" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 9" + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 787 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-08" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-27", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 8" + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 786 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-01" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 7" + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 785 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-25" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-29", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 6" + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 784 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-18" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 5" + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 766 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-11" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 4" + ] + }, + "sort": [ + " 100-2024-03-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 765 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-04", + "lte": "2024-03-04" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 3 (Mar. 4, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-04" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 3" + ] + }, + "sort": [ + " 100-2024-03-04" + ] + }, + { + "_nested": { + "field": "items", + "offset": 783 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-02-26" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 2" + ] + }, + "sort": [ + " 100-2024-02-26" + ] + }, + { + "_nested": { + "field": "items", + "offset": 764 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-02-12" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 1" + ] + }, + "sort": [ + " 100-2024-02-12" + ] + }, + { + "_nested": { + "field": "items", + "offset": 755 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-02-05" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 48" + ] + }, + "sort": [ + " 99-2024-02-05" + ] + }, + { + "_nested": { + "field": "items", + "offset": 754 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-29" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 47" + ] + }, + "sort": [ + " 99-2024-01-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 753 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-22" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 46" + ] + }, + "sort": [ + " 99-2024-01-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 752 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-15" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-62", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 45" + ] + }, + "sort": [ + " 99-2024-01-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 751 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-01" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 44" + ] + }, + "sort": [ + " 99-2024-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 750 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-25" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 43" + ] + }, + "sort": [ + " 99-2023-12-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 749 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-18" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 42" + ] + }, + "sort": [ + " 99-2023-12-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 748 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-11" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 41" + ] + }, + "sort": [ + " 99-2023-12-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 747 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-04" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 40" + ] + }, + "sort": [ + " 99-2023-12-04" + ] + }, + { + "_nested": { + "field": "items", + "offset": 746 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-27" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 39" + ] + }, + "sort": [ + " 99-2023-11-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 743 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-20", + "lte": "2023-11-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 38 (Nov. 20, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-20" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 38" + ] + }, + "sort": [ + " 99-2023-11-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 745 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-13" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-69", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 37" + ] + }, + "sort": [ + " 99-2023-11-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 742 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-06" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 36" + ] + }, + "sort": [ + " 99-2023-11-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 741 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-30" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 35" + ] + }, + "sort": [ + " 99-2023-10-30" + ] + }, + { + "_nested": { + "field": "items", + "offset": 744 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-23" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 34" + ] + }, + "sort": [ + " 99-2023-10-23" + ] + }, + { + "_nested": { + "field": "items", + "offset": 734 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-16" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-80", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 33" + ] + }, + "sort": [ + " 99-2023-10-16" + ] + }, + { + "_nested": { + "field": "items", + "offset": 733 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-09" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-81", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 32" + ] + }, + "sort": [ + " 99-2023-10-09" + ] + }, + { + "_nested": { + "field": "items", + "offset": 732 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-02", + "lte": "2023-10-02" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 31 (Oct. 2, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-02" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 31" + ] + }, + "sort": [ + " 99-2023-10-02" + ] + }, + { + "_nested": { + "field": "items", + "offset": 763 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-25" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-51", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 30" + ] + }, + "sort": [ + " 99-2023-09-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 740 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-18" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 29" + ] + }, + "sort": [ + " 99-2023-09-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 762 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-11" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 28" + ] + }, + "sort": [ + " 99-2023-09-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 761 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-04" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 27" + ] + }, + "sort": [ + " 99-2023-09-04" + ] + }, + { + "_nested": { + "field": "items", + "offset": 731 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-28" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 26" + ] + }, + "sort": [ + " 99-2023-08-28" + ] + }, + { + "_nested": { + "field": "items", + "offset": 736 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-21" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 25" + ] + }, + "sort": [ + " 99-2023-08-21" + ] + }, + { + "_nested": { + "field": "items", + "offset": 735 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-14" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 24" + ] + }, + "sort": [ + " 99-2023-08-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 730 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-07" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 23" + ] + }, + "sort": [ + " 99-2023-08-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 739 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-31" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 22" + ] + }, + "sort": [ + " 99-2023-07-31" + ] + }, + { + "_nested": { + "field": "items", + "offset": 738 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-24" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-76", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 21" + ] + }, + "sort": [ + " 99-2023-07-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 737 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-10" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 20" + ] + }, + "sort": [ + " 99-2023-07-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 729 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-03" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 19" + ] + }, + "sort": [ + " 99-2023-07-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 728 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-26" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 18" + ] + }, + "sort": [ + " 99-2023-06-26" + ] + }, + { + "_nested": { + "field": "items", + "offset": 760 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-19" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 17" + ] + }, + "sort": [ + " 99-2023-06-19" + ] + }, + { + "_nested": { + "field": "items", + "offset": 727 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-12" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 16" + ] + }, + "sort": [ + " 99-2023-06-12" + ] + }, + { + "_nested": { + "field": "items", + "offset": 726 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-05" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-88", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 15" + ] + }, + "sort": [ + " 99-2023-06-05" + ] + }, + { + "_nested": { + "field": "items", + "offset": 725 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-29", + "lte": "2023-05-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 14 (May. 29, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-29" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-89", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 14" + ] + }, + "sort": [ + " 99-2023-05-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 724 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-22" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-90", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 13" + ] + }, + "sort": [ + " 99-2023-05-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 723 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-15" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-91", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 12" + ] + }, + "sort": [ + " 99-2023-05-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 722 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-08" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-92", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 11" + ] + }, + "sort": [ + " 99-2023-05-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 721 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-24" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-93", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 10" + ] + }, + "sort": [ + " 99-2023-04-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 759 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-17" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 9" + ] + }, + "sort": [ + " 99-2023-04-17" + ] + }, + { + "_nested": { + "field": "items", + "offset": 758 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-10" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 8" + ] + }, + "sort": [ + " 99-2023-04-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 757 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-03" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 7" + ] + }, + "sort": [ + " 99-2023-04-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 756 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-27" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 6" + ] + }, + "sort": [ + " 99-2023-03-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 720 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-20" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-94", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 5" + ] + }, + "sort": [ + " 99-2023-03-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 719 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-13" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-95", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 4" + ] + }, + "sort": [ + " 99-2023-03-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 718 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-06", + "lte": "2023-03-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 3 (Mar. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-06" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-96", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 3" + ] + }, + "sort": [ + " 99-2023-03-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 717 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-02-27" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-97", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 2" + ] + }, + "sort": [ + " 99-2023-02-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 716 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-02-13" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-98", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 1" + ] + }, + "sort": [ + " 99-2023-02-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 715 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 98-2022-02-14" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-99", + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ], + "volumeRaw": [ + "Vol. 98 No. 1-49" + ] + }, + "sort": [ + " 98-2022-02-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 712 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-02-07" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-102", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 48" + ] + }, + "sort": [ + " 97-2022-02-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 711 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-31" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-103", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 47" + ] + }, + "sort": [ + " 97-2022-01-31" + ] + }, + { + "_nested": { + "field": "items", + "offset": 710 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-24" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-104", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 46" + ] + }, + "sort": [ + " 97-2022-01-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 709 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-10" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-105", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 45" + ] + }, + "sort": [ + " 97-2022-01-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 708 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-03" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-106", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 44" + ] + }, + "sort": [ + " 97-2022-01-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 782 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-27" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 43" + ] + }, + "sort": [ + " 97-2021-12-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 707 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-20" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-107", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 42" + ] + }, + "sort": [ + " 97-2021-12-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 781 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-13" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 41" + ] + }, + "sort": [ + " 97-2021-12-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 780 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-06" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 40" + ] + }, + "sort": [ + " 97-2021-12-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 779 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-29" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 39" + ] + }, + "sort": [ + " 97-2021-11-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 778 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-22", + "lte": "2021-11-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 38 (Nov. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-22" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 38" + ] + }, + "sort": [ + " 97-2021-11-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 777 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-15" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 37" + ] + }, + "sort": [ + " 97-2021-11-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 776 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-08" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 36" + ] + }, + "sort": [ + " 97-2021-11-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 775 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-01" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 35" + ] + }, + "sort": [ + " 97-2021-11-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 774 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-25" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 34" + ] + }, + "sort": [ + " 97-2021-10-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 773 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-18" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker)", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker)", + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 33" + ] + }, + "sort": [ + " 97-2021-10-18" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 132 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 707 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 108 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 774 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:co||Loaned", + "doc_count": 11 + }, + { + "key": "status:na||Not available", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-bc2262e2d22a448b6c139cea69ea195c.json b/test/fixtures/query-bc2262e2d22a448b6c139cea69ea195c.json new file mode 100644 index 00000000..54248d88 --- /dev/null +++ b/test/fixtures/query-bc2262e2d22a448b6c139cea69ea195c.json @@ -0,0 +1,567 @@ +{ + "body": { + "took": 9, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.566503, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b13966759", + "_score": 15.566503, + "_source": { + "extent": [ + "418 p. : ill., facsims., ports. ;" + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "‏תל אביב : ועד ארגון יוצאי חורוסטוב בישראל, 8691." + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "‏תל אביב" + }, + { + "fieldName": "note", + "index": 0, + "value": "\"הערות ומקורות\": p.19-20." + } + ], + "note": [ + { + "noteType": "Note", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hebrew orYiddish.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jews", + "Jews -- Ukraine", + "Jews -- Ukraine -- Khorostkov", + "Jews -- Ukraine -- Khorostkov -- History", + "Holocaust, Jewish (1939-1945)", + "Holocaust, Jewish (1939-1945) -- Ukraine", + "Holocaust, Jewish (1939-1945) -- Ukraine -- Khorostkov", + "Khorostkov (Ukraine)", + "Khorostkov (Ukraine) -- Ethnic relations" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel" + ], + "parallelPublisherLiteral": [ + "‏ועד ארגון יוצאי חורוסטוב בישראל" + ], + "language": [ + { + "id": "lang:heb", + "label": "Hebrew" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1968 + ], + "parallelTitle": [ + "‏ספר חורוסטוב = Chrostkow book" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sefer Ḥorosṭḳov = Chorostkow book" + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "he 68003086" + ], + "numElectronicResources": [ + 2 + ], + "contributorLiteral": [ + "Sztokfisz, David." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" + }, + { + "type": "nypl:Bnumber", + "value": "13966759" + }, + { + "type": "nypl:Oclc", + "value": "19207169" + }, + { + "type": "nypl:Oclc", + "value": "NYPH98-B4722" + }, + { + "type": "bf:Lccn", + "value": "he 68003086" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0553876" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)19207169" + } + ], + "idOclc": [ + "19207169", + "NYPH98-B4722" + ], + "updatedAt": 1711516467334, + "parallelTitleAlt": [ + "‏חורוסטקוב; ספר-זכרון" + ], + "publicationStatement": [ + "Tel Aviv : Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel, 1968." + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)", + "urn:bnum:13966759", + "urn:oclc:19207169", + "urn:oclc:NYPH98-B4722", + "urn:lccn:he 68003086", + "urn:identifier:(WaOLN)nyp0553876", + "urn:identifier:(OCoLC)19207169" + ], + "genreForm": [ + "Memorial books (Holocaust)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews -- Ukraine -- Khorostkov -- History.", + "Holocaust, Jewish (1939-1945) -- Ukraine -- Khorostkov.", + "Khorostkov (Ukraine) -- Ethnic relations." + ], + "titleDisplay": [ + "Sefer Ḥorosṭḳov = Chorostkow book / ha-ʻorekh, Daṿid Shṭoḳfish." + ], + "uri": "b13966759", + "lccClassification": [ + "DS135.R93 K42 1968" + ], + "parallelContributorLiteral": [ + "‏שטאקפיש, דוד." + ], + "electronicResources": [ + { + "label": "NYPL Digital Collections", + "url": "https://digitalcollections.nypl.org/items/f9706f90-64a7-0133-547d-00505686a51c" + }, + { + "label": "Yiddish Book Center", + "url": "https://www.yiddishbookcenter.org/collections/yizkor-books/yzk-nybc313724" + } + ], + "parallelTitleDisplay": [ + "‏ספר חורוסטוב = Chrostkow book / העורך, דוד שטאקפיש." + ], + "placeOfPublication": [ + "Tel Aviv" + ], + "titleAlt": [ + "Horosṭḳov; sefer zikaron" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + }, + "sort": [ + null + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 2, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + } + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maff3", + "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" + ], + "idBarcode": [ + "33433084745110" + ], + "identifier": [ + "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "urn:barcode:33433084745110" + ], + "identifierV2": [ + { + "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084745110", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "shelfMark_sort": "aDesk-JWS (Yizkor books. Reprint. Khorostkov)", + "status": [ + { + "id": "status:o", + "label": "Use in library" + } + ], + "status_packed": [ + "status:o||Use in library" + ], + "type": [ + "bf:Item" + ], + "uri": "i25791623" + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111", + "doc_count": 1 + }, + { + "key": "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 2 + } + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + }, + { + "key": "status:o||Use in library", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-d2190607df3fb907309c54e576ba7f9c.json b/test/fixtures/query-d2190607df3fb907309c54e576ba7f9c.json new file mode 100644 index 00000000..3ef8bf4a --- /dev/null +++ b/test/fixtures/query-d2190607df3fb907309c54e576ba7f9c.json @@ -0,0 +1,436 @@ +{ + "body": { + "took": 5, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.557082, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10015541", + "_score": 15.557082, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 has title: A history and genealogy of the families of Howland, Brown, Follett, Van Dyke, Lamb, Spaulding, and Davidson with related lines of Treat, Botsford, Parker, Burwell, Clark, Andrews, Symmonds, Burnaman, Ashbaugh, and Smith from Holland, England, Scotland, and France to Massachusetts, Connecticut, New York, New Jersey, Ohio, Iowa, Indiana, Nebraska, Kansas, and Texas from \"The Mayflower\" pilgrims in 1620 to the 1980s / by Dorothy Davidson Symmonds.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Pritchard family", + "Rimmer family", + "Jacobs family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "D. Symmonds" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1985 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "A history and genealogy of the Pritchett, Rimmer, Jacobs, Hamilton, Eldridge, Etheridge, Smith, Brown, and Davidson families from North Carolina, Tennessee, Illinois, Missouri, and Kansas in the early 1800s to 1900s" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "APV (Pritchett) 87-2820" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1985" + ], + "creatorLiteral": [ + "Symmonds, Dorothy." + ], + "idLccn": [ + "85239758" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1985 + ], + "idOclc": [ + "NYPG017000068-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Pritchett) 87-2820" + }, + { + "type": "nypl:Bnumber", + "value": "10015541" + }, + { + "type": "nypl:Oclc", + "value": "NYPG017000068-B" + }, + { + "type": "bf:Lccn", + "value": "85239758" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215498" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1711089512041, + "publicationStatement": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) : D. Symmonds, c1985-" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820", + "urn:bnum:10015541", + "urn:oclc:NYPG017000068-B", + "urn:lccn:85239758", + "urn:identifier:(WaOLN)nyp0215498" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Pritchard family.", + "Rimmer family.", + "Jacobs family." + ], + "titleDisplay": [ + "A history and genealogy of the Pritchett, Rimmer, Jacobs, Hamilton, Eldridge, Etheridge, Smith, Brown, and Davidson families from North Carolina, Tennessee, Illinois, Missouri, and Kansas in the early 1800s to 1900s / by Dorothy Symmonds." + ], + "uri": "b10015541", + "lccClassification": [ + "CS71.P9615 1985" + ], + "placeOfPublication": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433065651741" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820 v. 2", + "urn:barcode:33433065651741" + ], + "identifierV2": [ + { + "value": "APV (Pritchett) 87-2820 v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433065651741", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 2" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i14747616" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433060936147" + ], + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820 v. 1", + "urn:barcode:33433060936147" + ], + "identifierV2": [ + { + "value": "APV (Pritchett) 87-2820 v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433060936147", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 1" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i35838326" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 2 + } + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 2 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-dc288d8cbad5143f18a83b955d80d608.json b/test/fixtures/query-dc288d8cbad5143f18a83b955d80d608.json new file mode 100644 index 00000000..d13f20f5 --- /dev/null +++ b/test/fixtures/query-dc288d8cbad5143f18a83b955d80d608.json @@ -0,0 +1,68649 @@ +{ + "body": { + "took": 290, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.059605, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 14.059605, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1925 + ], + "type": [ + "nypl:Item" + ], + "contributorLiteralNormalized": [ + "Harold Ross", + "Harold Wallace Ross", + "William Shawn", + "Tina Brown", + "David Remnick", + "Katharine White", + "Katharine Sergeant White", + "Katharine Sergeant Angell White", + "E. White", + "E. B. White", + "Rea Irvin", + "Roger Angell" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "dateStartYear": [ + 1925 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + } + ], + "updatedAt": 1725650390151, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "contributorLiteralWithoutDates": [ + "Ross, Harold Wallace", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks)", + "Irvin, Rea", + "Angell, Roger" + ], + "lccClassification": [ + "AP2 .N6763" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "items": [ + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + ], + "uri": "i40904678", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + }, + { + "type": "bf:Barcode", + "value": "33433136780354" + } + ], + "enumerationChronology": [ + "v. 97 (May 10-July 26, 2021)" + ], + "idBarcode": [ + "33433136780354" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + ], + "uri": "i40904674", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + }, + { + "type": "bf:Barcode", + "value": "33433136780347" + } + ], + "enumerationChronology": [ + "v. 97 (Feb 15-May 3, 2021)" + ], + "idBarcode": [ + "33433136780347" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + ], + "uri": "i40904679", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + }, + { + "type": "bf:Barcode", + "value": "33433136780362" + } + ], + "enumerationChronology": [ + "v. 97 (Aug. 2-Oct 25, 2021)" + ], + "idBarcode": [ + "33433136780362" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + ], + "uri": "i40269792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + }, + { + "type": "bf:Barcode", + "value": "33433136742404" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "idBarcode": [ + "33433136742404" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (May-July 2020)" + ], + "uri": "i40269798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)" + }, + { + "type": "bf:Barcode", + "value": "33433136742420" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "idBarcode": [ + "33433136742420" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + ], + "uri": "i40269804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + }, + { + "type": "bf:Barcode", + "value": "33433136742438" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "idBarcode": [ + "33433136742438" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + ], + "uri": "i40269794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + }, + { + "type": "bf:Barcode", + "value": "33433136742412" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "idBarcode": [ + "33433136742412" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + ], + "uri": "i40232403", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + }, + { + "type": "bf:Barcode", + "value": "33433130033321" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "idBarcode": [ + "33433130033321" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (May-July 2019)" + ], + "uri": "i40232398", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)" + }, + { + "type": "bf:Barcode", + "value": "33433130033305" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "idBarcode": [ + "33433130033305" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + ], + "uri": "i40232353", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + }, + { + "type": "bf:Barcode", + "value": "33433130033297" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "idBarcode": [ + "33433130033297" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "uri": "i40232406", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + }, + { + "type": "bf:Barcode", + "value": "33433130033339" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "idBarcode": [ + "33433130033339" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + ], + "uri": "i40232401", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + }, + { + "type": "bf:Barcode", + "value": "33433130033313" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "idBarcode": [ + "33433130033313" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "urn:barcode:33433128201161" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Oct.-Nov. 2018)", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)" + ], + "uri": "i37530724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)" + }, + { + "type": "bf:Barcode", + "value": "33433128201161" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "idBarcode": [ + "33433128201161" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (May-June 2018)", + "urn:barcode:33433128201310" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (May-June 2018)", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (May-June 2018)" + ], + "uri": "i37539307", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 94 (May-June 2018)" + }, + { + "type": "bf:Barcode", + "value": "33433128201310" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "idBarcode": [ + "33433128201310" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "urn:barcode:33433128201302" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (July-Sept. 2018)", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (July-Sept. 2018)" + ], + "uri": "i37539308", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 94 (July-Sept. 2018)" + }, + { + "type": "bf:Barcode", + "value": "33433128201302" + } + ], + "enumerationChronology": [ + "v. 94 (July-Sept. 2018)" + ], + "idBarcode": [ + "33433128201302" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "urn:barcode:33433128200965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Feb. 12-Apr. 30, 2018)", + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "uri": "i37529511", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)" + }, + { + "type": "bf:Barcode", + "value": "33433128200965" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "idBarcode": [ + "33433128200965" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "urn:barcode:33433128200973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Dec. 3, 2018-Feb. 11, 2019)", + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "uri": "i37529513", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + }, + { + "type": "bf:Barcode", + "value": "33433128200973" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "idBarcode": [ + "33433128200973" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "urn:barcode:33433121911253" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Nov. 6, 2017-Feb. 5, 2018)", + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "uri": "i36790458", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + }, + { + "type": "bf:Barcode", + "value": "33433121911253" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "idBarcode": [ + "33433121911253" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (May-July 2017)", + "urn:barcode:33433121911105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (May-July 2017)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (May-July 2017)" + ], + "uri": "i36790460", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 93 (May-July 2017)" + }, + { + "type": "bf:Barcode", + "value": "33433121911105" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "idBarcode": [ + "33433121911105" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "urn:barcode:33433121911246" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Feb. 13-Apr. 24, 2017)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "uri": "i36790455", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" + }, + { + "type": "bf:Barcode", + "value": "33433121911246" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "idBarcode": [ + "33433121911246" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "urn:barcode:33433121911097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Aug-Oct 2017)", + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)" + ], + "uri": "i36790462", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)" + }, + { + "type": "bf:Barcode", + "value": "33433121911097" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "idBarcode": [ + "33433121911097" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "urn:barcode:33433119892341" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Oct. -Nov. 2016) Inc. ", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. " + ], + "uri": "i36118780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. " + }, + { + "type": "bf:Barcode", + "value": "33433119892341" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "idBarcode": [ + "33433119892341" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (May-June 2016)", + "urn:barcode:33433119855561" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (May-June 2016)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (May-June 2016)" + ], + "uri": "i36058799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 92 (May-June 2016)" + }, + { + "type": "bf:Barcode", + "value": "33433119855561" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "idBarcode": [ + "33433119855561" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + ], + "uri": "i36060542", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + }, + { + "type": "bf:Barcode", + "value": "33433119872095" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "idBarcode": [ + "33433119872095" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "urn:barcode:33433119872103" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Feb. 8-April 25, 2016)", + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)" + ], + "uri": "i36060543", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)" + }, + { + "type": "bf:Barcode", + "value": "33433119872103" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "idBarcode": [ + "33433119872103" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "urn:barcode:33433119892333" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Dec. 5, 2016-Feb. 6, 2017)", + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "uri": "i36118763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + }, + { + "type": "bf:Barcode", + "value": "33433119892333" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "idBarcode": [ + "33433119892333" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + ], + "uri": "i36060538", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + }, + { + "type": "bf:Barcode", + "value": "33433119872087" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "idBarcode": [ + "33433119872087" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "urn:barcode:33433119855579" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Nov. 2, 2015- Feb. 1, 2016)", + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "uri": "i36058800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + }, + { + "type": "bf:Barcode", + "value": "33433119855579" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "idBarcode": [ + "33433119855579" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "urn:barcode:33433119892317" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Mar. 23-Aug. 31, 2015) Inc. ", + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "uri": "i36118736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + }, + { + "type": "bf:Barcode", + "value": "33433119892317" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "idBarcode": [ + "33433119892317" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "urn:barcode:33433114102134" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (Oct. 6-Dec. 1 2014)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)" + ], + "uri": "i34327846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)" + }, + { + "type": "bf:Barcode", + "value": "33433114102134" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "idBarcode": [ + "33433114102134" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (May-June 2014)", + "urn:barcode:33433114101987" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (May-June 2014)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (May-June 2014)" + ], + "uri": "i34325260", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 90 (May-June 2014)" + }, + { + "type": "bf:Barcode", + "value": "33433114101987" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "idBarcode": [ + "33433114101987" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "uri": "i34327829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + }, + { + "type": "bf:Barcode", + "value": "33433114102084" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "idBarcode": [ + "33433114102084" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "urn:barcode:33433114102043" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089-90 (Feb. 10-Apr. 28 2014)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "uri": "i34327008", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)" + }, + { + "type": "bf:Barcode", + "value": "33433114102043" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "idBarcode": [ + "33433114102043" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "urn:barcode:33433110762709" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Sept-Oct 2013)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)" + ], + "uri": "i32414253", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433110762709" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "idBarcode": [ + "33433110762709" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "urn:barcode:33433110762691" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Nov-Dec 2013)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)" + ], + "uri": "i32414254", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433110762691" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "idBarcode": [ + "33433110762691" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (May-June 2013)", + "urn:barcode:33433110762725" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (May-June 2013)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (May-June 2013)" + ], + "uri": "i32414248", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (May-June 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433110762725" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "idBarcode": [ + "33433110762725" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "urn:barcode:33433110762717" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (July-Aug 2013)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (July-Aug 2013)" + ], + "uri": "i32414252", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (July-Aug 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433110762717" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "idBarcode": [ + "33433110762717" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "urn:barcode:33433110762741" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Jan. 6-Feb. 3, 2014)", + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "uri": "i32414227", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)" + }, + { + "type": "bf:Barcode", + "value": "33433110762741" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "idBarcode": [ + "33433110762741" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "urn:barcode:33433110762733" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Feb. 11-Apr. 29 , 2013)", + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "uri": "i32414245", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433110762733" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "idBarcode": [ + "33433110762733" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "urn:barcode:33433108528393" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (June 4-July 16, 2012)", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)" + ], + "uri": "i31482936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)" + }, + { + "type": "bf:Barcode", + "value": "33433108528393" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "idBarcode": [ + "33433108528393" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "urn:barcode:33433108528385" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Feb. 13-Mar. 26, 2012)", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "uri": "i31482935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)" + }, + { + "type": "bf:Barcode", + "value": "33433108528385" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "idBarcode": [ + "33433108528385" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "urn:barcode:33433108528401" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Dec. 10, 2012-Feb. 4, 2013)", + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "uri": "i31482938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + }, + { + "type": "bf:Barcode", + "value": "33433108528401" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "idBarcode": [ + "33433108528401" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "urn:barcode:33433108528377" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Apr.-May 2012) Inc.", + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc." + ], + "uri": "i31482930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc." + }, + { + "type": "bf:Barcode", + "value": "33433108528377" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "idBarcode": [ + "33433108528377" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + ], + "uri": "i28878991", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099610952" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "idBarcode": [ + "33433099610952" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (June-July 2011)" + ], + "uri": "i28878983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099611083" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "idBarcode": [ + "33433099611083" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "uri": "i28878974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099611109" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "idBarcode": [ + "33433099611109" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "uri": "i28879000", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + }, + { + "type": "bf:Barcode", + "value": "33433099610945" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "idBarcode": [ + "33433099610945" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + ], + "uri": "i28878989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099611075" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "idBarcode": [ + "33433099611075" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + ], + "uri": "i28878981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099611091" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "idBarcode": [ + "33433099611091" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + ], + "uri": "i28974701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + }, + { + "type": "bf:Barcode", + "value": "33433099612925" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "idBarcode": [ + "33433099612925" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + ], + "uri": "i28878958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + }, + { + "type": "bf:Barcode", + "value": "33433099611125" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "idBarcode": [ + "33433099611125" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "uri": "i28878948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + }, + { + "type": "bf:Barcode", + "value": "33433099611141" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "idBarcode": [ + "33433099611141" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "uri": "i28878970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + }, + { + "type": "bf:Barcode", + "value": "33433099611117" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "idBarcode": [ + "33433099611117" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + ], + "uri": "i28878953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + }, + { + "type": "bf:Barcode", + "value": "33433099611133" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "idBarcode": [ + "33433099611133" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + ], + "uri": "i28878932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + }, + { + "type": "bf:Barcode", + "value": "33433099611166" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "idBarcode": [ + "33433099611166" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (May-June 2009)" + ], + "uri": "i28878920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)" + }, + { + "type": "bf:Barcode", + "value": "33433099611182" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "idBarcode": [ + "33433099611182" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "uri": "i28878911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + }, + { + "type": "bf:Barcode", + "value": "33433099611190" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "idBarcode": [ + "33433099611190" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "uri": "i28878925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + }, + { + "type": "bf:Barcode", + "value": "33433099611174" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "idBarcode": [ + "33433099611174" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + ], + "uri": "i25589223", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + }, + { + "type": "bf:Barcode", + "value": "33433085063992" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "idBarcode": [ + "33433085063992" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (June-July 2008)" + ], + "uri": "i25589214", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)" + }, + { + "type": "bf:Barcode", + "value": "33433085064008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "idBarcode": [ + "33433085064008" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "uri": "i25589272", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + }, + { + "type": "bf:Barcode", + "value": "33433085063950" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "idBarcode": [ + "33433085063950" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "uri": "i25589242", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + }, + { + "type": "bf:Barcode", + "value": "33433085063976" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "idBarcode": [ + "33433085063976" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "uri": "i25589287", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + }, + { + "type": "bf:Barcode", + "value": "33433085064172" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "idBarcode": [ + "33433085064172" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + ], + "uri": "i25589205", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + }, + { + "type": "bf:Barcode", + "value": "33433085064214" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "idBarcode": [ + "33433085064214" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "uri": "i25589229", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + }, + { + "type": "bf:Barcode", + "value": "33433085063984" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "idBarcode": [ + "33433085063984" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + ], + "uri": "i25589274", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + }, + { + "type": "bf:Barcode", + "value": "33433085063943" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "idBarcode": [ + "33433085063943" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "uri": "i25589278", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + }, + { + "type": "bf:Barcode", + "value": "33433085064180" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "idBarcode": [ + "33433085064180" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "uri": "i25589263", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + }, + { + "type": "bf:Barcode", + "value": "33433085064206" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "idBarcode": [ + "33433085064206" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "uri": "i25589251", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + }, + { + "type": "bf:Barcode", + "value": "33433085063968" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "idBarcode": [ + "33433085063968" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + ], + "uri": "i25589269", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + }, + { + "type": "bf:Barcode", + "value": "33433085064198" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "idBarcode": [ + "33433085064198" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + ], + "uri": "i17474922", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + }, + { + "type": "bf:Barcode", + "value": "33433084240575" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "idBarcode": [ + "33433084240575" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (May-June 2006)" + ], + "uri": "i17474920", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)" + }, + { + "type": "bf:Barcode", + "value": "33433084240559" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "idBarcode": [ + "33433084240559" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + ], + "uri": "i17474921", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + }, + { + "type": "bf:Barcode", + "value": "33433084240567" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "idBarcode": [ + "33433084240567" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "uri": "i17474919", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + }, + { + "type": "bf:Barcode", + "value": "33433084240542" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "idBarcode": [ + "33433084240542" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "uri": "i17474923", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + }, + { + "type": "bf:Barcode", + "value": "33433084240583" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "idBarcode": [ + "33433084240583" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + ], + "uri": "i17474917", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + }, + { + "type": "bf:Barcode", + "value": "33433084240526" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "idBarcode": [ + "33433084240526" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "uri": "i17474916", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + }, + { + "type": "bf:Barcode", + "value": "33433084240518" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "idBarcode": [ + "33433084240518" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "uri": "i17474914", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + }, + { + "type": "bf:Barcode", + "value": "33433084240492" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "idBarcode": [ + "33433084240492" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "uri": "i17474918", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + }, + { + "type": "bf:Barcode", + "value": "33433084240534" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "idBarcode": [ + "33433084240534" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + ], + "uri": "i17474915", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + }, + { + "type": "bf:Barcode", + "value": "33433084240500" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "idBarcode": [ + "33433084240500" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + ], + "uri": "i17474912", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + }, + { + "type": "bf:Barcode", + "value": "33433084240476" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "idBarcode": [ + "33433084240476" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (May-June 2004)" + ], + "uri": "i17474911", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)" + }, + { + "type": "bf:Barcode", + "value": "33433084240468" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "idBarcode": [ + "33433084240468" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + ], + "uri": "i17474399", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + }, + { + "type": "bf:Barcode", + "value": "33433078508037" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "idBarcode": [ + "33433078508037" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + ], + "uri": "i17474447", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + }, + { + "type": "bf:Barcode", + "value": "33433080028222" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "idBarcode": [ + "33433080028222" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "uri": "i17474913", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + }, + { + "type": "bf:Barcode", + "value": "33433084240484" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "idBarcode": [ + "33433084240484" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + ], + "uri": "i17474909", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240443" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "idBarcode": [ + "33433084240443" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (June-July 2003)" + ], + "uri": "i17474907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240427" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "idBarcode": [ + "33433084240427" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "uri": "i17474905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240401" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "idBarcode": [ + "33433084240401" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "uri": "i17474910", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + }, + { + "type": "bf:Barcode", + "value": "33433084240450" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "idBarcode": [ + "33433084240450" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + ], + "uri": "i17474908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240435" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "idBarcode": [ + "33433084240435" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + ], + "uri": "i17474906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240419" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "idBarcode": [ + "33433084240419" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + ], + "uri": "i17474903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240385" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "idBarcode": [ + "33433084240385" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (June-July 2002)" + ], + "uri": "i17474901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240369" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "idBarcode": [ + "33433084240369" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "uri": "i17474899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240344" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "idBarcode": [ + "33433084240344" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "uri": "i17474904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + }, + { + "type": "bf:Barcode", + "value": "33433084240393" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "idBarcode": [ + "33433084240393" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + ], + "uri": "i17474902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240377" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "idBarcode": [ + "33433084240377" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + ], + "uri": "i17474900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240351" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "idBarcode": [ + "33433084240351" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" + ], + "uri": "i17474897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" + }, + { + "type": "bf:Barcode", + "value": "33433084240328" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "idBarcode": [ + "33433084240328" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (May-July 2001)" + ], + "uri": "i17474446", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)" + }, + { + "type": "bf:Barcode", + "value": "33433079991612" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "idBarcode": [ + "33433079991612" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "uri": "i17474895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + }, + { + "type": "bf:Barcode", + "value": "33433084240302" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "idBarcode": [ + "33433084240302" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "uri": "i17474898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + }, + { + "type": "bf:Barcode", + "value": "33433084240336" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "idBarcode": [ + "33433084240336" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "uri": "i17474896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + }, + { + "type": "bf:Barcode", + "value": "33433084240310" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "idBarcode": [ + "33433084240310" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" + ], + "uri": "i17474893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" + }, + { + "type": "bf:Barcode", + "value": "33433084240286" + } + ], + "enumerationChronology": [ + "v. 76 (Sept.-Oct. 2000)" + ], + "idBarcode": [ + "33433084240286" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "uri": "i17474894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + }, + { + "type": "bf:Barcode", + "value": "33433084240294" + } + ], + "enumerationChronology": [ + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "idBarcode": [ + "33433084240294" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" + ], + "uri": "i17474402", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" + }, + { + "type": "bf:Barcode", + "value": "33433078639105" + } + ], + "enumerationChronology": [ + "v. 76 (July-Aug. 2000)" + ], + "idBarcode": [ + "33433078639105" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "uri": "i40028166", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" + }, + { + "type": "bf:Barcode", + "value": "33433084240278" + } + ], + "enumerationChronology": [ + "v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "idBarcode": [ + "33433084240278" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "urn:barcode:33433080426707" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "uri": "i17474434", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + }, + { + "type": "bf:Barcode", + "value": "33433080426707" + } + ], + "enumerationChronology": [ + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "idBarcode": [ + "33433080426707" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" + ], + "uri": "i17474887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433084240211" + } + ], + "enumerationChronology": [ + "v. 75(Feb.22-May 3, 1999)" + ], + "idBarcode": [ + "33433084240211" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" + ], + "uri": "i17474890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433084240245" + } + ], + "enumerationChronology": [ + "v. 75 (Sept.-Oct. 1999)" + ], + "idBarcode": [ + "33433084240245" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Nov. 1999)" + ], + "uri": "i17474891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433084240252" + } + ], + "enumerationChronology": [ + "v. 75 (Nov. 1999)" + ], + "idBarcode": [ + "33433084240252" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" + ], + "uri": "i17474888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433084240229" + } + ], + "enumerationChronology": [ + "v. 75 (May 10-June 28, 1999)" + ], + "idBarcode": [ + "33433084240229" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" + ], + "uri": "i17474889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433084240237" + } + ], + "enumerationChronology": [ + "v. 75 (July-Aug. 1999)" + ], + "idBarcode": [ + "33433084240237" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", + "dateRange": [ + { + "gte": "1999", + "lte": "2000" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "uri": "i17474892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + }, + { + "type": "bf:Barcode", + "value": "33433084240260" + } + ], + "enumerationChronology": [ + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "idBarcode": [ + "33433084240260" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "uri": "i17474886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" + }, + { + "type": "bf:Barcode", + "value": "33433084240203" + } + ], + "enumerationChronology": [ + "v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "idBarcode": [ + "33433084240203" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "uri": "i17474403", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + }, + { + "type": "bf:Barcode", + "value": "33433078660671" + } + ], + "enumerationChronology": [ + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "idBarcode": [ + "33433078660671" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" + ], + "uri": "i17474885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" + }, + { + "type": "bf:Barcode", + "value": "33433084240195" + } + ], + "enumerationChronology": [ + "v. 74 (June- Aug. 1998)" + ], + "idBarcode": [ + "33433084240195" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 74-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 74" + ], + "uri": "i17474453", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 74" + }, + { + "type": "bf:Barcode", + "value": "33433080030616" + } + ], + "enumerationChronology": [ + "v. 74" + ], + "idBarcode": [ + "33433080030616" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", + "dateRange": [ + { + "gte": "1997", + "lte": "1998" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "uri": "i17142393", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + }, + { + "type": "bf:Barcode", + "value": "33433078530031" + } + ], + "enumerationChronology": [ + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "idBarcode": [ + "33433078530031" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" + ], + "uri": "i16700889", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" + }, + { + "type": "bf:Barcode", + "value": "33433081121117" + } + ], + "enumerationChronology": [ + "v. 73 (May 12-July 28, 1997)" + ], + "idBarcode": [ + "33433081121117" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" + ], + "uri": "i17474429", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" + }, + { + "type": "bf:Barcode", + "value": "33433078658105" + } + ], + "enumerationChronology": [ + "v. 73 (Feb 17-May 5 1997)" + ], + "idBarcode": [ + "33433078658105" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" + ], + "uri": "i17474430", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" + }, + { + "type": "bf:Barcode", + "value": "33433078658113" + } + ], + "enumerationChronology": [ + "v. 73 (Aug-Oct 1997)" + ], + "idBarcode": [ + "33433078658113" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" + ], + "uri": "i17474427", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" + }, + { + "type": "bf:Barcode", + "value": "33433078658089" + } + ], + "enumerationChronology": [ + "v. 72 (Oct 7-Nov 25 1996)" + ], + "idBarcode": [ + "33433078658089" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" + ], + "uri": "i17474426", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" + }, + { + "type": "bf:Barcode", + "value": "33433078658071" + } + ], + "enumerationChronology": [ + "v. 72 (July 8-Sept 30 1996 (inc))" + ], + "idBarcode": [ + "33433078658071" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" + ], + "uri": "i17474400", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" + }, + { + "type": "bf:Barcode", + "value": "33433078626128" + } + ], + "enumerationChronology": [ + "v. 72 (Feb 19-Apr 22 1996)" + ], + "idBarcode": [ + "33433078626128" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", + "dateRange": [ + { + "gte": "1996", + "lte": "1997" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "uri": "i17474428", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" + }, + { + "type": "bf:Barcode", + "value": "33433078658097" + } + ], + "enumerationChronology": [ + "v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "idBarcode": [ + "33433078658097" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" + ], + "uri": "i17474425", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" + }, + { + "type": "bf:Barcode", + "value": "33433078658063" + } + ], + "enumerationChronology": [ + "v. 72 (Apr 29-July 1 1996)" + ], + "idBarcode": [ + "33433078658063" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "urn:barcode:33433078658048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" + ], + "uri": "i17474423", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433078658048" + } + ], + "enumerationChronology": [ + "v. 71 (Oct-Nov 1995)" + ], + "idBarcode": [ + "33433078658048" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", + "urn:barcode:33433078658022" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (June-July 1995)" + ], + "uri": "i17474421", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (June-July 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433078658022" + } + ], + "enumerationChronology": [ + "v. 71 (June-July 1995)" + ], + "idBarcode": [ + "33433078658022" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "urn:barcode:33433084240179" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" + ], + "uri": "i17474883", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433084240179" + } + ], + "enumerationChronology": [ + "v. 71 (Feb. 20-Mar. 27, 1995)" + ], + "idBarcode": [ + "33433084240179" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "urn:barcode:33433078658055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Dec 4 1995-Feb 12 1996)", + "dateRange": [ + { + "gte": "1995", + "lte": "1996" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "uri": "i17474424", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)" + }, + { + "type": "bf:Barcode", + "value": "33433078658055" + } + ], + "enumerationChronology": [ + "v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "idBarcode": [ + "33433078658055" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "urn:barcode:33433078658030" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Aug-Sept 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)" + ], + "uri": "i17474422", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433078658030" + } + ], + "enumerationChronology": [ + "v. 71 (Aug-Sept 1995)" + ], + "idBarcode": [ + "33433078658030" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "urn:barcode:33433084240187" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Apr.-May 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 71 (Apr.-May 1995)" + ], + "uri": "i17474884", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 71 (Apr.-May 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433084240187" + } + ], + "enumerationChronology": [ + "v. 71 (Apr.-May 1995)" + ], + "idBarcode": [ + "33433084240187" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Oct. 1994)", + "urn:barcode:33433084240138" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Oct. 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Oct. 1994)" + ], + "uri": "i17474879", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Oct. 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240138" + } + ], + "enumerationChronology": [ + "v. 70 (Oct. 1994)" + ], + "idBarcode": [ + "33433084240138" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Nov. 1994)", + "urn:barcode:33433084240146" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Nov. 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Nov. 1994)" + ], + "uri": "i17474880", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Nov. 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240146" + } + ], + "enumerationChronology": [ + "v. 70 (Nov. 1994)" + ], + "idBarcode": [ + "33433084240146" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (May 1994)", + "urn:barcode:33433084240104" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (May 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (May 1994)" + ], + "uri": "i17474876", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (May 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240104" + } + ], + "enumerationChronology": [ + "v. 70 (May 1994)" + ], + "idBarcode": [ + "33433084240104" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (June-July 1994)", + "urn:barcode:33433084240112" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (June-July 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (June-July 1994)" + ], + "uri": "i17474877", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (June-July 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240112" + } + ], + "enumerationChronology": [ + "v. 70 (June-July 1994)" + ], + "idBarcode": [ + "33433084240112" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Jan. 9-Feb. 13, 1995)", + "urn:barcode:33433084240161" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Jan. 9-Feb. 13, 1995)", + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1995" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Jan. 9-Feb. 13, 1995)" + ], + "uri": "i17474882", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Jan. 9-Feb. 13, 1995)" + }, + { + "type": "bf:Barcode", + "value": "33433084240161" + } + ], + "enumerationChronology": [ + "v. 70 (Jan. 9-Feb. 13, 1995)" + ], + "idBarcode": [ + "33433084240161" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Feb. 21-Mar. 28, 1994)", + "urn:barcode:33433084240096" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Feb. 21-Mar. 28, 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Feb. 21-Mar. 28, 1994)" + ], + "uri": "i17474875", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Feb. 21-Mar. 28, 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240096" + } + ], + "enumerationChronology": [ + "v. 70 (Feb. 21-Mar. 28, 1994)" + ], + "idBarcode": [ + "33433084240096" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Dec. 5, 1994-Jan. 2,1995)", + "urn:barcode:33433084240153" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Dec. 5, 1994-Jan. 2,1995)", + "dateRange": [ + { + "gte": "1994", + "lte": "1995" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Dec. 5, 1994-Jan. 2,1995)" + ], + "uri": "i17474881", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Dec. 5, 1994-Jan. 2,1995)" + }, + { + "type": "bf:Barcode", + "value": "33433084240153" + } + ], + "enumerationChronology": [ + "v. 70 (Dec. 5, 1994-Jan. 2,1995)" + ], + "idBarcode": [ + "33433084240153" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 70 (Aug.-Sept. 1994)", + "urn:barcode:33433084240120" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000070 (Aug.-Sept. 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 70-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 70 (Aug.-Sept. 1994)" + ], + "uri": "i17474878", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 70 (Aug.-Sept. 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240120" + } + ], + "enumerationChronology": [ + "v. 70 (Aug.-Sept. 1994)" + ], + "idBarcode": [ + "33433084240120" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Sept. 1993)", + "urn:barcode:33433084240047" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Sept. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Sept. 1993)" + ], + "uri": "i17474870", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Sept. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433084240047" + } + ], + "enumerationChronology": [ + "v. 69 (Sept. 1993)" + ], + "idBarcode": [ + "33433084240047" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Oct. 1993)", + "urn:barcode:33433084240054" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Oct. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Oct. 1993)" + ], + "uri": "i17474871", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Oct. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433084240054" + } + ], + "enumerationChronology": [ + "v. 69 (Oct. 1993)" + ], + "idBarcode": [ + "33433084240054" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Nov. 1993)", + "urn:barcode:33433084240062" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Nov. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Nov. 1993)" + ], + "uri": "i17474872", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Nov. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433084240062" + } + ], + "enumerationChronology": [ + "v. 69 (Nov. 1993)" + ], + "idBarcode": [ + "33433084240062" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (May 1993)", + "urn:barcode:33433078696063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (May 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (May 1993)" + ], + "uri": "i16700893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (May 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433078696063" + } + ], + "enumerationChronology": [ + "v. 69 (May 1993)" + ], + "idBarcode": [ + "33433078696063" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (June-July 1993)", + "urn:barcode:33433078696071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (June-July 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (June-July 1993)" + ], + "uri": "i16700894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (June-July 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433078696071" + } + ], + "enumerationChronology": [ + "v. 69 (June-July 1993)" + ], + "idBarcode": [ + "33433078696071" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Jan. 10-Feb. 14, 1994)", + "urn:barcode:33433084240088" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Jan. 10-Feb. 14, 1994)", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Jan. 10-Feb. 14, 1994)" + ], + "uri": "i17474874", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Jan. 10-Feb. 14, 1994)" + }, + { + "type": "bf:Barcode", + "value": "33433084240088" + } + ], + "enumerationChronology": [ + "v. 69 (Jan. 10-Feb. 14, 1994)" + ], + "idBarcode": [ + "33433084240088" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Feb. 22-Mar. 29 1993)", + "urn:barcode:33433078696048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Feb. 22-Mar. 29 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Feb. 22-Mar. 29 1993)" + ], + "uri": "i16700891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Feb. 22-Mar. 29 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433078696048" + } + ], + "enumerationChronology": [ + "v. 69 (Feb. 22-Mar. 29 1993)" + ], + "idBarcode": [ + "33433078696048" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Dec. 1993)", + "urn:barcode:33433084240070" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Dec. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Dec. 1993)" + ], + "uri": "i17474873", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Dec. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433084240070" + } + ], + "enumerationChronology": [ + "v. 69 (Dec. 1993)" + ], + "idBarcode": [ + "33433084240070" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Aug. 1993)", + "urn:barcode:33433078696089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Aug. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Aug. 1993)" + ], + "uri": "i16700895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Aug. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433078696089" + } + ], + "enumerationChronology": [ + "v. 69 (Aug. 1993)" + ], + "idBarcode": [ + "33433078696089" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 69 (Apr. 1993)", + "urn:barcode:33433078696055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000069 (Apr. 1993)", + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 69-1993" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 69 (Apr. 1993)" + ], + "uri": "i16700892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 69 (Apr. 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433078696055" + } + ], + "enumerationChronology": [ + "v. 69 (Apr. 1993)" + ], + "idBarcode": [ + "33433078696055" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 69, + "lte": 69 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Oct. 1992)", + "urn:barcode:33433084240005" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Oct. 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Oct. 1992)" + ], + "uri": "i17474866", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Oct. 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084240005" + } + ], + "enumerationChronology": [ + "v. 68 (Oct. 1992)" + ], + "idBarcode": [ + "33433084240005" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Nov. 1992)", + "urn:barcode:33433084240013" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Nov. 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Nov. 1992)" + ], + "uri": "i17474867", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Nov. 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084240013" + } + ], + "enumerationChronology": [ + "v. 68 (Nov. 1992)" + ], + "idBarcode": [ + "33433084240013" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (June-July 1992)", + "urn:barcode:33433078653247" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (June-July 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (June-July 1992)" + ], + "uri": "i17474404", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (June-July 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433078653247" + } + ], + "enumerationChronology": [ + "v. 68 (June-July 1992)" + ], + "idBarcode": [ + "33433078653247" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Feb. 24-Mar. 30, 1992)", + "urn:barcode:33433084239973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Feb. 24-Mar. 30, 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Feb. 24-Mar. 30, 1992)" + ], + "uri": "i17474863", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Feb. 24-Mar. 30, 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084239973" + } + ], + "enumerationChronology": [ + "v. 68 (Feb. 24-Mar. 30, 1992)" + ], + "idBarcode": [ + "33433084239973" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Dec. 7, 1992-Jan. 4, 1993)", + "urn:barcode:33433084240021" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Dec. 7, 1992-Jan. 4, 1993)", + "dateRange": [ + { + "gte": "1992", + "lte": "1993" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Dec. 7, 1992-Jan. 4, 1993)" + ], + "uri": "i17474868", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Dec. 7, 1992-Jan. 4, 1993)" + }, + { + "type": "bf:Barcode", + "value": "33433084240021" + } + ], + "enumerationChronology": [ + "v. 68 (Dec. 7, 1992-Jan. 4, 1993)" + ], + "idBarcode": [ + "33433084240021" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Aug.-Sept. 1992)", + "urn:barcode:33433084239999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Aug.-Sept. 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Aug.-Sept. 1992)" + ], + "uri": "i17474865", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Aug.-Sept. 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084239999" + } + ], + "enumerationChronology": [ + "v. 68 (Aug.-Sept. 1992)" + ], + "idBarcode": [ + "33433084239999" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 68 (Apr.-May 1992)", + "urn:barcode:33433084239981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000068 (Apr.-May 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 68-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 68 (Apr.-May 1992)" + ], + "uri": "i17474864", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 68 (Apr.-May 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084239981" + } + ], + "enumerationChronology": [ + "v. 68 (Apr.-May 1992)" + ], + "idBarcode": [ + "33433084239981" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Sept.-Oct. 1991)", + "urn:barcode:33433084239940" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (Sept.-Oct. 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (Sept.-Oct. 1991)" + ], + "uri": "i17474860", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (Sept.-Oct. 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239940" + } + ], + "enumerationChronology": [ + "v. 67 (Sept.-Oct. 1991)" + ], + "idBarcode": [ + "33433084239940" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (N0v.-Dec. 1991)", + "urn:barcode:33433084239957" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (N0v.-Dec. 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (N0v.-Dec. 1991)" + ], + "uri": "i17474861", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (N0v.-Dec. 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239957" + } + ], + "enumerationChronology": [ + "v. 67 (N0v.-Dec. 1991)" + ], + "idBarcode": [ + "33433084239957" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (May-June 1991)", + "urn:barcode:33433084239924" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (May-June 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (May-June 1991)" + ], + "uri": "i17474858", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (May-June 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239924" + } + ], + "enumerationChronology": [ + "v. 67 (May-June 1991)" + ], + "idBarcode": [ + "33433084239924" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (July-Aug. 1991)", + "urn:barcode:33433084239932" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (July-Aug. 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (July-Aug. 1991)" + ], + "uri": "i17474859", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (July-Aug. 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239932" + } + ], + "enumerationChronology": [ + "v. 67 (July-Aug. 1991)" + ], + "idBarcode": [ + "33433084239932" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Jan. 6-Feb. 17, 1992)", + "urn:barcode:33433084239965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (Jan. 6-Feb. 17, 1992)", + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1992" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (Jan. 6-Feb. 17, 1992)" + ], + "uri": "i17474862", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (Jan. 6-Feb. 17, 1992)" + }, + { + "type": "bf:Barcode", + "value": "33433084239965" + } + ], + "enumerationChronology": [ + "v. 67 (Jan. 6-Feb. 17, 1992)" + ], + "idBarcode": [ + "33433084239965" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 67 (Feb. 25-Apr. 29, 1991)", + "urn:barcode:33433084239916" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000067 (Feb. 25-Apr. 29, 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 67-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 67 (Feb. 25-Apr. 29, 1991)" + ], + "uri": "i17474857", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 67 (Feb. 25-Apr. 29, 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239916" + } + ], + "enumerationChronology": [ + "v. 67 (Feb. 25-Apr. 29, 1991)" + ], + "idBarcode": [ + "33433084239916" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Sept.-Oct. 1990)", + "urn:barcode:33433084239890" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (Sept.-Oct. 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 66-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (Sept.-Oct. 1990)" + ], + "uri": "i17474855", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (Sept.-Oct. 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433084239890" + } + ], + "enumerationChronology": [ + "v. 66 (Sept.-Oct. 1990)" + ], + "idBarcode": [ + "33433084239890" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Nov-Dec 1990)", + "urn:barcode:33433078658014" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (Nov-Dec 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 66-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (Nov-Dec 1990)" + ], + "uri": "i17474420", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (Nov-Dec 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433078658014" + } + ], + "enumerationChronology": [ + "v. 66 (Nov-Dec 1990)" + ], + "idBarcode": [ + "33433078658014" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (May-June 1990)", + "urn:barcode:33433084239882" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (May-June 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 66-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (May-June 1990)" + ], + "uri": "i17474854", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (May-June 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433084239882" + } + ], + "enumerationChronology": [ + "v. 66 (May-June 1990)" + ], + "idBarcode": [ + "33433084239882" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (July-Aug 1990)", + "urn:barcode:33433078658006" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (July-Aug 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 66-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (July-Aug 1990)" + ], + "uri": "i17474419", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (July-Aug 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433078658006" + } + ], + "enumerationChronology": [ + "v. 66 (July-Aug 1990)" + ], + "idBarcode": [ + "33433078658006" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Jan. 7-Feb. 18, 1991)", + "urn:barcode:33433084239908" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (Jan. 7-Feb. 18, 1991)", + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 66-1991" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (Jan. 7-Feb. 18, 1991)" + ], + "uri": "i17474856", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (Jan. 7-Feb. 18, 1991)" + }, + { + "type": "bf:Barcode", + "value": "33433084239908" + } + ], + "enumerationChronology": [ + "v. 66 (Jan. 7-Feb. 18, 1991)" + ], + "idBarcode": [ + "33433084239908" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 66 (Feb. 19-Apr. 30, 1990)", + "urn:barcode:33433078657990" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000066 (Feb. 19-Apr. 30, 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 66-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 66 (Feb. 19-Apr. 30, 1990)" + ], + "uri": "i17474418", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 66 (Feb. 19-Apr. 30, 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433078657990" + } + ], + "enumerationChronology": [ + "v. 66 (Feb. 19-Apr. 30, 1990)" + ], + "idBarcode": [ + "33433078657990" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Sept. 4-Oct. 30, 1989)", + "urn:barcode:33433084239874" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (Sept. 4-Oct. 30, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (Sept. 4-Oct. 30, 1989)" + ], + "uri": "i17474853", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (Sept. 4-Oct. 30, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433084239874" + } + ], + "enumerationChronology": [ + "v. 65 (Sept. 4-Oct. 30, 1989)" + ], + "idBarcode": [ + "33433084239874" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Nov.6-Dec. 25, 1989)", + "urn:barcode:33433079122770" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (Nov.6-Dec. 25, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (Nov.6-Dec. 25, 1989)" + ], + "uri": "i17474437", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (Nov.6-Dec. 25, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433079122770" + } + ], + "enumerationChronology": [ + "v. 65 (Nov.6-Dec. 25, 1989)" + ], + "idBarcode": [ + "33433079122770" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (May 1-June 26, 1989)", + "urn:barcode:33433084239866" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (May 1-June 26, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (May 1-June 26, 1989)" + ], + "uri": "i17474852", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (May 1-June 26, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433084239866" + } + ], + "enumerationChronology": [ + "v. 65 (May 1-June 26, 1989)" + ], + "idBarcode": [ + "33433084239866" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (July 3-Aug. 28, 1989)", + "urn:barcode:33433079122762" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (July 3-Aug. 28, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (July 3-Aug. 28, 1989)" + ], + "uri": "i17474436", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (July 3-Aug. 28, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433079122762" + } + ], + "enumerationChronology": [ + "v. 65 (July 3-Aug. 28, 1989)" + ], + "idBarcode": [ + "33433079122762" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Jan. -Feb 12 1990)", + "urn:barcode:33433078657982" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (Jan. -Feb 12 1990)", + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1990" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (Jan. -Feb 12 1990)" + ], + "uri": "i17474417", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (Jan. -Feb 12 1990)" + }, + { + "type": "bf:Barcode", + "value": "33433078657982" + } + ], + "enumerationChronology": [ + "v. 65 (Jan. -Feb 12 1990)" + ], + "idBarcode": [ + "33433078657982" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 65 (Feb. 20-Apr. 24, 1989)", + "urn:barcode:33433084239858" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000065 (Feb. 20-Apr. 24, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 65-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 65 (Feb. 20-Apr. 24, 1989)" + ], + "uri": "i17474851", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 65 (Feb. 20-Apr. 24, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433084239858" + } + ], + "enumerationChronology": [ + "v. 65 (Feb. 20-Apr. 24, 1989)" + ], + "idBarcode": [ + "33433084239858" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Sept. 5-Oct. 31, 1988)", + "urn:barcode:33433079122754" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (Sept. 5-Oct. 31, 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (Sept. 5-Oct. 31, 1988)" + ], + "uri": "i17474435", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (Sept. 5-Oct. 31, 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433079122754" + } + ], + "enumerationChronology": [ + "v. 64 (Sept. 5-Oct. 31, 1988)" + ], + "idBarcode": [ + "33433079122754" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Nov.-Dec. 1988)", + "urn:barcode:33433084239833" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (Nov.-Dec. 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (Nov.-Dec. 1988)" + ], + "uri": "i17474849", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (Nov.-Dec. 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433084239833" + } + ], + "enumerationChronology": [ + "v. 64 (Nov.-Dec. 1988)" + ], + "idBarcode": [ + "33433084239833" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (May 2-June 27, 1988)", + "urn:barcode:33433078657958" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (May 2-June 27, 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (May 2-June 27, 1988)" + ], + "uri": "i17474414", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (May 2-June 27, 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433078657958" + } + ], + "enumerationChronology": [ + "v. 64 (May 2-June 27, 1988)" + ], + "idBarcode": [ + "33433078657958" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (July-Aug 1988)", + "urn:barcode:33433078657966" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (July-Aug 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (July-Aug 1988)" + ], + "uri": "i17474415", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (July-Aug 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433078657966" + } + ], + "enumerationChronology": [ + "v. 64 (July-Aug 1988)" + ], + "idBarcode": [ + "33433078657966" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Jan.2-Feb. 13, 1989)", + "urn:barcode:33433084239841" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (Jan.2-Feb. 13, 1989)", + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1989" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (Jan.2-Feb. 13, 1989)" + ], + "uri": "i17474850", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (Jan.2-Feb. 13, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433084239841" + } + ], + "enumerationChronology": [ + "v. 64 (Jan.2-Feb. 13, 1989)" + ], + "idBarcode": [ + "33433084239841" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 64 (Feb. 22-Apr. 25, 1988)", + "urn:barcode:33433078657974" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000064 (Feb. 22-Apr. 25, 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 64-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 64 (Feb. 22-Apr. 25, 1988)" + ], + "uri": "i17474416", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 64 (Feb. 22-Apr. 25, 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433078657974" + } + ], + "enumerationChronology": [ + "v. 64 (Feb. 22-Apr. 25, 1988)" + ], + "idBarcode": [ + "33433078657974" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 64, + "lte": 64 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Sept. -Oct. 1987)", + "urn:barcode:33433084239809" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (Sept. -Oct. 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (Sept. -Oct. 1987)" + ], + "uri": "i17474846", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (Sept. -Oct. 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239809" + } + ], + "enumerationChronology": [ + "v. 63 (Sept. -Oct. 1987)" + ], + "idBarcode": [ + "33433084239809" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Nov. 1987)", + "urn:barcode:33433084239817" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (Nov. 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (Nov. 1987)" + ], + "uri": "i17474847", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (Nov. 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239817" + } + ], + "enumerationChronology": [ + "v. 63 (Nov. 1987)" + ], + "idBarcode": [ + "33433084239817" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (May-June 1987)", + "urn:barcode:33433084239783" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (May-June 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (May-June 1987)" + ], + "uri": "i17474844", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (May-June 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239783" + } + ], + "enumerationChronology": [ + "v. 63 (May-June 1987)" + ], + "idBarcode": [ + "33433084239783" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (July-Aug. 1987)", + "urn:barcode:33433084239791" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (July-Aug. 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (July-Aug. 1987)" + ], + "uri": "i17474845", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (July-Aug. 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239791" + } + ], + "enumerationChronology": [ + "v. 63 (July-Aug. 1987)" + ], + "idBarcode": [ + "33433084239791" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Jan. 4-Feb. 15, 1988)", + "urn:barcode:33433078657941" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (Jan. 4-Feb. 15, 1988)", + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1988" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (Jan. 4-Feb. 15, 1988)" + ], + "uri": "i17474413", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (Jan. 4-Feb. 15, 1988)" + }, + { + "type": "bf:Barcode", + "value": "33433078657941" + } + ], + "enumerationChronology": [ + "v. 63 (Jan. 4-Feb. 15, 1988)" + ], + "idBarcode": [ + "33433078657941" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Feb. 23-Apr. 1987)", + "urn:barcode:33433084239775" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (Feb. 23-Apr. 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (Feb. 23-Apr. 1987)" + ], + "uri": "i17474843", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (Feb. 23-Apr. 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239775" + } + ], + "enumerationChronology": [ + "v. 63 (Feb. 23-Apr. 1987)" + ], + "idBarcode": [ + "33433084239775" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 63 (Dec. 7-28, 1987)", + "urn:barcode:33433084239825" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000063 (Dec. 7-28, 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 63-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 63 (Dec. 7-28, 1987)" + ], + "uri": "i17474848", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 63 (Dec. 7-28, 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239825" + } + ], + "enumerationChronology": [ + "v. 63 (Dec. 7-28, 1987)" + ], + "idBarcode": [ + "33433084239825" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Sept. -Oct. 1986)", + "urn:barcode:33433084239742" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000062 (Sept. -Oct. 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 62-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 62 (Sept. -Oct. 1986)" + ], + "uri": "i17474840", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 62 (Sept. -Oct. 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433084239742" + } + ], + "enumerationChronology": [ + "v. 62 (Sept. -Oct. 1986)" + ], + "idBarcode": [ + "33433084239742" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Nov. -Dec. 1986)", + "urn:barcode:33433084239759" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000062 (Nov. -Dec. 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 62-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 62 (Nov. -Dec. 1986)" + ], + "uri": "i17474841", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 62 (Nov. -Dec. 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433084239759" + } + ], + "enumerationChronology": [ + "v. 62 (Nov. -Dec. 1986)" + ], + "idBarcode": [ + "33433084239759" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (May-June 1986)", + "urn:barcode:33433078657925" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000062 (May-June 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 62-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 62 (May-June 1986)" + ], + "uri": "i17474411", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 62 (May-June 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433078657925" + } + ], + "enumerationChronology": [ + "v. 62 (May-June 1986)" + ], + "idBarcode": [ + "33433078657925" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (July-Aug. 1986)", + "urn:barcode:33433078657933" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000062 (July-Aug. 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 62-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 62 (July-Aug. 1986)" + ], + "uri": "i17474412", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 62 (July-Aug. 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433078657933" + } + ], + "enumerationChronology": [ + "v. 62 (July-Aug. 1986)" + ], + "idBarcode": [ + "33433078657933" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 62 (Jan. -Feb. 1987)", + "urn:barcode:33433084239767" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000062 (Jan. -Feb. 1987)", + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 62-1987" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 62 (Jan. -Feb. 1987)" + ], + "uri": "i17474842", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 62 (Jan. -Feb. 1987)" + }, + { + "type": "bf:Barcode", + "value": "33433084239767" + } + ], + "enumerationChronology": [ + "v. 62 (Jan. -Feb. 1987)" + ], + "idBarcode": [ + "33433084239767" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Sept. -Oct. 1985)", + "urn:barcode:33433084239726" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (Sept. -Oct. 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (Sept. -Oct. 1985)" + ], + "uri": "i17474838", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (Sept. -Oct. 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433084239726" + } + ], + "enumerationChronology": [ + "v. 61 (Sept. -Oct. 1985)" + ], + "idBarcode": [ + "33433084239726" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Nov. -Dec. 1985)", + "urn:barcode:33433084239734" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (Nov. -Dec. 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (Nov. -Dec. 1985)" + ], + "uri": "i17474839", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (Nov. -Dec. 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433084239734" + } + ], + "enumerationChronology": [ + "v. 61 (Nov. -Dec. 1985)" + ], + "idBarcode": [ + "33433084239734" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (May-June 1985)", + "urn:barcode:33433078657883" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (May-June 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (May-June 1985)" + ], + "uri": "i17474407", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (May-June 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433078657883" + } + ], + "enumerationChronology": [ + "v. 61 (May-June 1985)" + ], + "idBarcode": [ + "33433078657883" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (July-Aug. 1985)", + "urn:barcode:33433078657891" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (July-Aug. 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (July-Aug. 1985)" + ], + "uri": "i17474408", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (July-Aug. 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433078657891" + } + ], + "enumerationChronology": [ + "v. 61 (July-Aug. 1985)" + ], + "idBarcode": [ + "33433078657891" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Jan 6 1986-Feb 10 1986)", + "urn:barcode:33433078657909" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (Jan 6 1986-Feb 10 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (Jan 6 1986-Feb 10 1986)" + ], + "uri": "i17474409", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (Jan 6 1986-Feb 10 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433078657909" + } + ], + "enumerationChronology": [ + "v. 61 (Jan 6 1986-Feb 10 1986)" + ], + "idBarcode": [ + "33433078657909" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Feb. 25-Apr. 29 1985)", + "urn:barcode:33433078657875" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (Feb. 25-Apr. 29 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (Feb. 25-Apr. 29 1985)" + ], + "uri": "i17474406", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (Feb. 25-Apr. 29 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433078657875" + } + ], + "enumerationChronology": [ + "v. 61 (Feb. 25-Apr. 29 1985)" + ], + "idBarcode": [ + "33433078657875" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 61 (Feb. 24-Apr. 28 1986)", + "urn:barcode:33433078657917" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000061 (Feb. 24-Apr. 28 1986)", + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 61-1986" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 61 (Feb. 24-Apr. 28 1986)" + ], + "uri": "i17474410", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 61 (Feb. 24-Apr. 28 1986)" + }, + { + "type": "bf:Barcode", + "value": "33433078657917" + } + ], + "enumerationChronology": [ + "v. 61 (Feb. 24-Apr. 28 1986)" + ], + "idBarcode": [ + "33433078657917" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 61, + "lte": 61 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Sept. -Oct. 1984)", + "urn:barcode:33433084239700" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (Sept. -Oct. 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (Sept. -Oct. 1984)" + ], + "uri": "i17474836", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (Sept. -Oct. 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239700" + } + ], + "enumerationChronology": [ + "v. 60 (Sept. -Oct. 1984)" + ], + "idBarcode": [ + "33433084239700" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Nov. -Dec. 1984)", + "urn:barcode:33433084239718" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (Nov. -Dec. 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (Nov. -Dec. 1984)" + ], + "uri": "i17474837", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (Nov. -Dec. 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239718" + } + ], + "enumerationChronology": [ + "v. 60 (Nov. -Dec. 1984)" + ], + "idBarcode": [ + "33433084239718" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (May-June 1984)", + "urn:barcode:33433084239684" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (May-June 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (May-June 1984)" + ], + "uri": "i17474834", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (May-June 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239684" + } + ], + "enumerationChronology": [ + "v. 60 (May-June 1984)" + ], + "idBarcode": [ + "33433084239684" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (July-Aug. 1984)", + "urn:barcode:33433084239692" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (July-Aug. 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (July-Aug. 1984)" + ], + "uri": "i17474835", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (July-Aug. 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239692" + } + ], + "enumerationChronology": [ + "v. 60 (July-Aug. 1984)" + ], + "idBarcode": [ + "33433084239692" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Jan. 7 1985-Feb. 18 1985)", + "urn:barcode:33433078657867" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (Jan. 7 1985-Feb. 18 1985)", + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 60-1985" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (Jan. 7 1985-Feb. 18 1985)" + ], + "uri": "i17474405", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (Jan. 7 1985-Feb. 18 1985)" + }, + { + "type": "bf:Barcode", + "value": "33433078657867" + } + ], + "enumerationChronology": [ + "v. 60 (Jan. 7 1985-Feb. 18 1985)" + ], + "idBarcode": [ + "33433078657867" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Feb. 20-Mar. 26, 1984)", + "urn:barcode:33433084239668" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (Feb. 20-Mar. 26, 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (Feb. 20-Mar. 26, 1984)" + ], + "uri": "i17474832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (Feb. 20-Mar. 26, 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239668" + } + ], + "enumerationChronology": [ + "v. 60 (Feb. 20-Mar. 26, 1984)" + ], + "idBarcode": [ + "33433084239668" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 60 (Apr. 1984)", + "urn:barcode:33433084239676" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000060 (Apr. 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 60-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 60 (Apr. 1984)" + ], + "uri": "i17474833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 60 (Apr. 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239676" + } + ], + "enumerationChronology": [ + "v. 60 (Apr. 1984)" + ], + "idBarcode": [ + "33433084239676" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Oct. 1983)", + "urn:barcode:33433084239627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Oct. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Oct. 1983)" + ], + "uri": "i17474828", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Oct. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239627" + } + ], + "enumerationChronology": [ + "v. 59 (Oct. 1983)" + ], + "idBarcode": [ + "33433084239627" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Nov. 1983)", + "urn:barcode:33433084239635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Nov. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Nov. 1983)" + ], + "uri": "i17474829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Nov. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239635" + } + ], + "enumerationChronology": [ + "v. 59 (Nov. 1983)" + ], + "idBarcode": [ + "33433084239635" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (May 1983)", + "urn:barcode:33433078712639" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (May 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (May 1983)" + ], + "uri": "i16700897", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (May 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433078712639" + } + ], + "enumerationChronology": [ + "v. 59 (May 1983)" + ], + "idBarcode": [ + "33433078712639" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (June-July 1983)", + "urn:barcode:33433084239601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (June-July 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (June-July 1983)" + ], + "uri": "i17474826", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (June-July 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239601" + } + ], + "enumerationChronology": [ + "v. 59 (June-July 1983)" + ], + "idBarcode": [ + "33433084239601" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Jan.2-Feb. 13, 1984)", + "urn:barcode:33433084239650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Jan.2-Feb. 13, 1984)", + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1984" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Jan.2-Feb. 13, 1984)" + ], + "uri": "i17474831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Jan.2-Feb. 13, 1984)" + }, + { + "type": "bf:Barcode", + "value": "33433084239650" + } + ], + "enumerationChronology": [ + "v. 59 (Jan.2-Feb. 13, 1984)" + ], + "idBarcode": [ + "33433084239650" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Dec. 1983)", + "urn:barcode:33433084239643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Dec. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Dec. 1983)" + ], + "uri": "i17474830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Dec. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239643" + } + ], + "enumerationChronology": [ + "v. 59 (Dec. 1983)" + ], + "idBarcode": [ + "33433084239643" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Aug.-Sept. 1983)", + "urn:barcode:33433084239619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Aug.-Sept. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Aug.-Sept. 1983)" + ], + "uri": "i17474827", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Aug.-Sept. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239619" + } + ], + "enumerationChronology": [ + "v. 59 (Aug.-Sept. 1983)" + ], + "idBarcode": [ + "33433084239619" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 59 (Apr. 1983)", + "urn:barcode:33433084239593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000059 (Apr. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 59-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 59 (Apr. 1983)" + ], + "uri": "i17474825", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 59 (Apr. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239593" + } + ], + "enumerationChronology": [ + "v. 59 (Apr. 1983)" + ], + "idBarcode": [ + "33433084239593" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Sept.-Oct. 1982)", + "urn:barcode:33433084239551" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Sept.-Oct. 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Sept.-Oct. 1982)" + ], + "uri": "i17474821", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Sept.-Oct. 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239551" + } + ], + "enumerationChronology": [ + "v. 58 (Sept.-Oct. 1982)" + ], + "idBarcode": [ + "33433084239551" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Nov.-Dec. 1982)", + "urn:barcode:33433084239569" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Nov.-Dec. 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Nov.-Dec. 1982)" + ], + "uri": "i17474822", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Nov.-Dec. 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239569" + } + ], + "enumerationChronology": [ + "v. 58 (Nov.-Dec. 1982)" + ], + "idBarcode": [ + "33433084239569" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (May-June 1982)", + "urn:barcode:33433084239536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (May-June 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (May-June 1982)" + ], + "uri": "i17474819", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (May-June 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239536" + } + ], + "enumerationChronology": [ + "v. 58 (May-June 1982)" + ], + "idBarcode": [ + "33433084239536" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (July 5-Aug. 30, 1982)", + "urn:barcode:33433084239544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (July 5-Aug. 30, 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (July 5-Aug. 30, 1982)" + ], + "uri": "i17474820", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (July 5-Aug. 30, 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239544" + } + ], + "enumerationChronology": [ + "v. 58 (July 5-Aug. 30, 1982)" + ], + "idBarcode": [ + "33433084239544" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Jan. 3-Feb. 14, 1983)", + "urn:barcode:33433084239577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Jan. 3-Feb. 14, 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Jan. 3-Feb. 14, 1983)" + ], + "uri": "i17474823", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Jan. 3-Feb. 14, 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239577" + } + ], + "enumerationChronology": [ + "v. 58 (Jan. 3-Feb. 14, 1983)" + ], + "idBarcode": [ + "33433084239577" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Feb. 22-Mar. 29, 1982)", + "urn:barcode:33433084239510" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Feb. 22-Mar. 29, 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Feb. 22-Mar. 29, 1982)" + ], + "uri": "i17474817", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Feb. 22-Mar. 29, 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239510" + } + ], + "enumerationChronology": [ + "v. 58 (Feb. 22-Mar. 29, 1982)" + ], + "idBarcode": [ + "33433084239510" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Feb. 21-Mar. 1983)", + "urn:barcode:33433084239585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Feb. 21-Mar. 1983)", + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1983" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Feb. 21-Mar. 1983)" + ], + "uri": "i17474824", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Feb. 21-Mar. 1983)" + }, + { + "type": "bf:Barcode", + "value": "33433084239585" + } + ], + "enumerationChronology": [ + "v. 58 (Feb. 21-Mar. 1983)" + ], + "idBarcode": [ + "33433084239585" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 58 (Apr. 5-26, 1982)", + "urn:barcode:33433084239528" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000058 (Apr. 5-26, 1982)", + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 58-1982" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 58 (Apr. 5-26, 1982)" + ], + "uri": "i17474818", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 58 (Apr. 5-26, 1982)" + }, + { + "type": "bf:Barcode", + "value": "33433084239528" + } + ], + "enumerationChronology": [ + "v. 58 (Apr. 5-26, 1982)" + ], + "idBarcode": [ + "33433084239528" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Sept. 1981)", + "urn:barcode:33433084239478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Sept. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Sept. 1981)" + ], + "uri": "i17474813", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Sept. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239478" + } + ], + "enumerationChronology": [ + "v. 57 (Sept. 1981)" + ], + "idBarcode": [ + "33433084239478" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Oct. 1981)", + "urn:barcode:33433084239486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Oct. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Oct. 1981)" + ], + "uri": "i17474814", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Oct. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239486" + } + ], + "enumerationChronology": [ + "v. 57 (Oct. 1981)" + ], + "idBarcode": [ + "33433084239486" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Nov. 1981)", + "urn:barcode:33433084239494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Nov. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Nov. 1981)" + ], + "uri": "i17474815", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Nov. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239494" + } + ], + "enumerationChronology": [ + "v. 57 (Nov. 1981)" + ], + "idBarcode": [ + "33433084239494" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (May 1981)", + "urn:barcode:33433084239445" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (May 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (May 1981)" + ], + "uri": "i17474810", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (May 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239445" + } + ], + "enumerationChronology": [ + "v. 57 (May 1981)" + ], + "idBarcode": [ + "33433084239445" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Mar. 1981)", + "urn:barcode:33433084239429" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Mar. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Mar. 1981)" + ], + "uri": "i17474808", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Mar. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239429" + } + ], + "enumerationChronology": [ + "v. 57 (Mar. 1981)" + ], + "idBarcode": [ + "33433084239429" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (June 1981)", + "urn:barcode:33433084239452" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (June 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (June 1981)" + ], + "uri": "i17474811", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (June 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239452" + } + ], + "enumerationChronology": [ + "v. 57 (June 1981)" + ], + "idBarcode": [ + "33433084239452" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (July-Aug. 1981)", + "urn:barcode:33433084239460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (July-Aug. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (July-Aug. 1981)" + ], + "uri": "i17474812", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (July-Aug. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239460" + } + ], + "enumerationChronology": [ + "v. 57 (July-Aug. 1981)" + ], + "idBarcode": [ + "33433084239460" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Dec. 1981)", + "urn:barcode:33433084239502" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Dec. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Dec. 1981)" + ], + "uri": "i17474816", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Dec. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239502" + } + ], + "enumerationChronology": [ + "v. 57 (Dec. 1981)" + ], + "idBarcode": [ + "33433084239502" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 57 (Apr. 1981)", + "urn:barcode:33433084239437" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000057 (Apr. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 57-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 57 (Apr. 1981)" + ], + "uri": "i17474809", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 57 (Apr. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239437" + } + ], + "enumerationChronology": [ + "v. 57 (Apr. 1981)" + ], + "idBarcode": [ + "33433084239437" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56-57 (Jan.-Feb. 1981)", + "urn:barcode:33433084239411" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056-57 (Jan.-Feb. 1981)", + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1981" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56-57 (Jan.-Feb. 1981)" + ], + "uri": "i17474807", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56-57 (Jan.-Feb. 1981)" + }, + { + "type": "bf:Barcode", + "value": "33433084239411" + } + ], + "enumerationChronology": [ + "v. 56-57 (Jan.-Feb. 1981)" + ], + "idBarcode": [ + "33433084239411" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 57 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Oct. 1980)", + "urn:barcode:33433084239387" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Oct. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Oct. 1980)" + ], + "uri": "i17474804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Oct. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239387" + } + ], + "enumerationChronology": [ + "v. 56 (Oct. 1980)" + ], + "idBarcode": [ + "33433084239387" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Nov. 1980)", + "urn:barcode:33433084239395" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Nov. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Nov. 1980)" + ], + "uri": "i17474805", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Nov. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239395" + } + ], + "enumerationChronology": [ + "v. 56 (Nov. 1980)" + ], + "idBarcode": [ + "33433084239395" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (May 1980)", + "urn:barcode:33433079128785" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (May 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (May 1980)" + ], + "uri": "i17586832", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (May 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433079128785" + } + ], + "enumerationChronology": [ + "v. 56 (May 1980)" + ], + "idBarcode": [ + "33433079128785" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Mar. 1980)", + "urn:barcode:33433084239346" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Mar. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Mar. 1980)" + ], + "uri": "i17474800", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Mar. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239346" + } + ], + "enumerationChronology": [ + "v. 56 (Mar. 1980)" + ], + "idBarcode": [ + "33433084239346" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (June-July 1980)", + "urn:barcode:33433084239361" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (June-July 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (June-July 1980)" + ], + "uri": "i17474802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (June-July 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239361" + } + ], + "enumerationChronology": [ + "v. 56 (June-July 1980)" + ], + "idBarcode": [ + "33433084239361" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Dec. 1980)", + "urn:barcode:33433084239403" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Dec. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Dec. 1980)" + ], + "uri": "i17474806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Dec. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239403" + } + ], + "enumerationChronology": [ + "v. 56 (Dec. 1980)" + ], + "idBarcode": [ + "33433084239403" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Aug.-Sept. 1980)", + "urn:barcode:33433084239379" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Aug.-Sept. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Aug.-Sept. 1980)" + ], + "uri": "i17474803", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Aug.-Sept. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239379" + } + ], + "enumerationChronology": [ + "v. 56 (Aug.-Sept. 1980)" + ], + "idBarcode": [ + "33433084239379" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 56 (Apr. 1980)", + "urn:barcode:33433084239353" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000056 (Apr. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 56-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 56 (Apr. 1980)" + ], + "uri": "i17474801", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 56 (Apr. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239353" + } + ], + "enumerationChronology": [ + "v. 56 (Apr. 1980)" + ], + "idBarcode": [ + "33433084239353" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55-56 (Jan.-Feb. 1980)", + "urn:barcode:33433084239338" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055-56 (Jan.-Feb. 1980)", + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1980" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55-56 (Jan.-Feb. 1980)" + ], + "uri": "i17474799", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55-56 (Jan.-Feb. 1980)" + }, + { + "type": "bf:Barcode", + "value": "33433084239338" + } + ], + "enumerationChronology": [ + "v. 55-56 (Jan.-Feb. 1980)" + ], + "idBarcode": [ + "33433084239338" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 56 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Sept. 1979)", + "urn:barcode:33433084239296" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Sept. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Sept. 1979)" + ], + "uri": "i17474795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Sept. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239296" + } + ], + "enumerationChronology": [ + "v. 55 (Sept. 1979)" + ], + "idBarcode": [ + "33433084239296" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Oct. 1979)", + "urn:barcode:33433084239304" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Oct. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Oct. 1979)" + ], + "uri": "i17474796", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Oct. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239304" + } + ], + "enumerationChronology": [ + "v. 55 (Oct. 1979)" + ], + "idBarcode": [ + "33433084239304" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Nov. 1979)", + "urn:barcode:33433084239312" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Nov. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Nov. 1979)" + ], + "uri": "i17474797", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Nov. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239312" + } + ], + "enumerationChronology": [ + "v. 55 (Nov. 1979)" + ], + "idBarcode": [ + "33433084239312" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (May-June 1979)", + "urn:barcode:33433084239270" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (May-June 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (May-June 1979)" + ], + "uri": "i17474793", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (May-June 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239270" + } + ], + "enumerationChronology": [ + "v. 55 (May-June 1979)" + ], + "idBarcode": [ + "33433084239270" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Mar. 1979)", + "urn:barcode:33433084239254" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Mar. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Mar. 1979)" + ], + "uri": "i17474791", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Mar. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239254" + } + ], + "enumerationChronology": [ + "v. 55 (Mar. 1979)" + ], + "idBarcode": [ + "33433084239254" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (July-Aug. 1979)", + "urn:barcode:33433084239288" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (July-Aug. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (July-Aug. 1979)" + ], + "uri": "i17474794", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (July-Aug. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239288" + } + ], + "enumerationChronology": [ + "v. 55 (July-Aug. 1979)" + ], + "idBarcode": [ + "33433084239288" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Dec. 1979)", + "urn:barcode:33433084239320" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Dec. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Dec. 1979)" + ], + "uri": "i17474798", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Dec. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239320" + } + ], + "enumerationChronology": [ + "v. 55 (Dec. 1979)" + ], + "idBarcode": [ + "33433084239320" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 55 (Apr. 1979)", + "urn:barcode:33433084239262" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000055 (Apr. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 55-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 55 (Apr. 1979)" + ], + "uri": "i17474792", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 55 (Apr. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239262" + } + ], + "enumerationChronology": [ + "v. 55 (Apr. 1979)" + ], + "idBarcode": [ + "33433084239262" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54-55 (Jan.-Feb. 1979)", + "urn:barcode:33433084239247" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054-55 (Jan.-Feb. 1979)", + "dateRange": [ + { + "gte": "1979", + "lte": "1979" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1979" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54-55 (Jan.-Feb. 1979)" + ], + "uri": "i17474790", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54-55 (Jan.-Feb. 1979)" + }, + { + "type": "bf:Barcode", + "value": "33433084239247" + } + ], + "enumerationChronology": [ + "v. 54-55 (Jan.-Feb. 1979)" + ], + "idBarcode": [ + "33433084239247" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 55 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Oct. 1978)", + "urn:barcode:33433084239213" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Oct. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Oct. 1978)" + ], + "uri": "i17474787", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Oct. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239213" + } + ], + "enumerationChronology": [ + "v. 54 (Oct. 1978)" + ], + "idBarcode": [ + "33433084239213" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Nov. 1978)", + "urn:barcode:33433084239221" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Nov. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Nov. 1978)" + ], + "uri": "i17474788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Nov. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239221" + } + ], + "enumerationChronology": [ + "v. 54 (Nov. 1978)" + ], + "idBarcode": [ + "33433084239221" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (May 1978)", + "urn:barcode:33433084239189" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (May 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (May 1978)" + ], + "uri": "i17474784", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (May 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239189" + } + ], + "enumerationChronology": [ + "v. 54 (May 1978)" + ], + "idBarcode": [ + "33433084239189" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Mar. 1978)", + "urn:barcode:33433084239163" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Mar. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Mar. 1978)" + ], + "uri": "i17474782", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Mar. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239163" + } + ], + "enumerationChronology": [ + "v. 54 (Mar. 1978)" + ], + "idBarcode": [ + "33433084239163" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (June-July 1978)", + "urn:barcode:33433084239197" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (June-July 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (June-July 1978)" + ], + "uri": "i17474785", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (June-July 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239197" + } + ], + "enumerationChronology": [ + "v. 54 (June-July 1978)" + ], + "idBarcode": [ + "33433084239197" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Dec. 1978)", + "urn:barcode:33433084239239" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Dec. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Dec. 1978)" + ], + "uri": "i17474789", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Dec. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239239" + } + ], + "enumerationChronology": [ + "v. 54 (Dec. 1978)" + ], + "idBarcode": [ + "33433084239239" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Aug.-Sept. 1978)", + "urn:barcode:33433084239205" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Aug.-Sept. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Aug.-Sept. 1978)" + ], + "uri": "i17474786", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Aug.-Sept. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239205" + } + ], + "enumerationChronology": [ + "v. 54 (Aug.-Sept. 1978)" + ], + "idBarcode": [ + "33433084239205" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 54 (Apr. 1978)", + "urn:barcode:33433084239171" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000054 (Apr. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 54-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 54 (Apr. 1978)" + ], + "uri": "i17474783", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 54 (Apr. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239171" + } + ], + "enumerationChronology": [ + "v. 54 (Apr. 1978)" + ], + "idBarcode": [ + "33433084239171" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53-54 (Jan.-Feb. 1978)", + "urn:barcode:33433084239155" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053-54 (Jan.-Feb. 1978)", + "dateRange": [ + { + "gte": "1978", + "lte": "1978" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1978" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53-54 (Jan.-Feb. 1978)" + ], + "uri": "i17474781", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53-54 (Jan.-Feb. 1978)" + }, + { + "type": "bf:Barcode", + "value": "33433084239155" + } + ], + "enumerationChronology": [ + "v. 53-54 (Jan.-Feb. 1978)" + ], + "idBarcode": [ + "33433084239155" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 54 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Sept. 1977)", + "urn:barcode:33433084239122" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Sept. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Sept. 1977)" + ], + "uri": "i17474778", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Sept. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239122" + } + ], + "enumerationChronology": [ + "v. 53 (Sept. 1977)" + ], + "idBarcode": [ + "33433084239122" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Oct. 1977)", + "urn:barcode:33433084239130" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Oct. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Oct. 1977)" + ], + "uri": "i17474779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Oct. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239130" + } + ], + "enumerationChronology": [ + "v. 53 (Oct. 1977)" + ], + "idBarcode": [ + "33433084239130" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Nov. 1977)", + "urn:barcode:33433080722055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Nov. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Nov. 1977)" + ], + "uri": "i17586829", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Nov. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433080722055" + } + ], + "enumerationChronology": [ + "v. 53 (Nov. 1977)" + ], + "idBarcode": [ + "33433080722055" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (May-June 1977)", + "urn:barcode:33433084239106" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (May-June 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (May-June 1977)" + ], + "uri": "i17474776", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (May-June 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239106" + } + ], + "enumerationChronology": [ + "v. 53 (May-June 1977)" + ], + "idBarcode": [ + "33433084239106" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Mar. 1977)", + "urn:barcode:33433084239080" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Mar. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Mar. 1977)" + ], + "uri": "i17474774", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Mar. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239080" + } + ], + "enumerationChronology": [ + "v. 53 (Mar. 1977)" + ], + "idBarcode": [ + "33433084239080" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (July-Aug. 1977)", + "urn:barcode:33433084239114" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (July-Aug. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (July-Aug. 1977)" + ], + "uri": "i17474777", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (July-Aug. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239114" + } + ], + "enumerationChronology": [ + "v. 53 (July-Aug. 1977)" + ], + "idBarcode": [ + "33433084239114" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Dec. 1977)", + "urn:barcode:33433084239148" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Dec. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Dec. 1977)" + ], + "uri": "i17474780", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Dec. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239148" + } + ], + "enumerationChronology": [ + "v. 53 (Dec. 1977)" + ], + "idBarcode": [ + "33433084239148" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 53 (Apr. 1977)", + "urn:barcode:33433084239098" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000053 (Apr. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 53-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 53 (Apr. 1977)" + ], + "uri": "i17474775", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 53 (Apr. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239098" + } + ], + "enumerationChronology": [ + "v. 53 (Apr. 1977)" + ], + "idBarcode": [ + "33433084239098" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52-52 (Jan.-Feb. 1977)", + "urn:barcode:33433084239072" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052-52 (Jan.-Feb. 1977)", + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1977" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52-52 (Jan.-Feb. 1977)" + ], + "uri": "i17474773", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52-52 (Jan.-Feb. 1977)" + }, + { + "type": "bf:Barcode", + "value": "33433084239072" + } + ], + "enumerationChronology": [ + "v. 52-52 (Jan.-Feb. 1977)" + ], + "idBarcode": [ + "33433084239072" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Oct. 11-25, 1976)", + "urn:barcode:33433099622486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (Oct. 11-25, 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (Oct. 11-25, 1976)" + ], + "uri": "i29597795", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (Oct. 11-25, 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622486" + } + ], + "enumerationChronology": [ + "v. 52 (Oct. 11-25, 1976)" + ], + "idBarcode": [ + "33433099622486" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Nov. 1-22, 1976)", + "urn:barcode:33433099622478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (Nov. 1-22, 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (Nov. 1-22, 1976)" + ], + "uri": "i29597802", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (Nov. 1-22, 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622478" + } + ], + "enumerationChronology": [ + "v. 52 (Nov. 1-22, 1976)" + ], + "idBarcode": [ + "33433099622478" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (May 1976)", + "urn:barcode:33433099622510" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (May 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (May 1976)" + ], + "uri": "i29597728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (May 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622510" + } + ], + "enumerationChronology": [ + "v. 52 (May 1976)" + ], + "idBarcode": [ + "33433099622510" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (June-July 1976)", + "urn:barcode:33433099622502" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (June-July 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (June-July 1976)" + ], + "uri": "i29597740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (June-July 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622502" + } + ], + "enumerationChronology": [ + "v. 52 (June-July 1976)" + ], + "idBarcode": [ + "33433099622502" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Feb. 23-Apr. 5, 1976)", + "urn:barcode:33433099622528" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (Feb. 23-Apr. 5, 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (Feb. 23-Apr. 5, 1976)" + ], + "uri": "i29597675", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (Feb. 23-Apr. 5, 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622528" + } + ], + "enumerationChronology": [ + "v. 52 (Feb. 23-Apr. 5, 1976)" + ], + "idBarcode": [ + "33433099622528" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Dec. 1976)", + "urn:barcode:33433099622460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (Dec. 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (Dec. 1976)" + ], + "uri": "i29597806", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (Dec. 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622460" + } + ], + "enumerationChronology": [ + "v. 52 (Dec. 1976)" + ], + "idBarcode": [ + "33433099622460" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 52 (Aug-Sept 1976)", + "urn:barcode:33433099622494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000052 (Aug-Sept 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 52-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 52 (Aug-Sept 1976)" + ], + "uri": "i29597779", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 52 (Aug-Sept 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622494" + } + ], + "enumerationChronology": [ + "v. 52 (Aug-Sept 1976)" + ], + "idBarcode": [ + "33433099622494" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Oct. 1975)", + "urn:barcode:33433099622551" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Oct. 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Oct. 1975)" + ], + "uri": "i29597655", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Oct. 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622551" + } + ], + "enumerationChronology": [ + "v. 51 (Oct. 1975)" + ], + "idBarcode": [ + "33433099622551" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Nov 1975)", + "urn:barcode:33433099622544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Nov 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Nov 1975)" + ], + "uri": "i29597656", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Nov 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622544" + } + ], + "enumerationChronology": [ + "v. 51 (Nov 1975)" + ], + "idBarcode": [ + "33433099622544" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (June-July 1975)", + "urn:barcode:33433099622577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (June-July 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (June-July 1975)" + ], + "uri": "i29597630", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (June-July 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622577" + } + ], + "enumerationChronology": [ + "v. 51 (June-July 1975)" + ], + "idBarcode": [ + "33433099622577" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Jan. 12-Feb. 16, 1976)", + "urn:barcode:33433099622601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Jan. 12-Feb. 16, 1976)", + "dateRange": [ + { + "gte": "1976", + "lte": "1976" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1976" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Jan. 12-Feb. 16, 1976)" + ], + "uri": "i29597430", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Jan. 12-Feb. 16, 1976)" + }, + { + "type": "bf:Barcode", + "value": "33433099622601" + } + ], + "enumerationChronology": [ + "v. 51 (Jan. 12-Feb. 16, 1976)" + ], + "idBarcode": [ + "33433099622601" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Feb. 24-Mar. 31, 1975)", + "urn:barcode:33433099622593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Feb. 24-Mar. 31, 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Feb. 24-Mar. 31, 1975)" + ], + "uri": "i29597442", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Feb. 24-Mar. 31, 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622593" + } + ], + "enumerationChronology": [ + "v. 51 (Feb. 24-Mar. 31, 1975)" + ], + "idBarcode": [ + "33433099622593" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Dec. 1975)", + "urn:barcode:33433099622536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Dec. 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Dec. 1975)" + ], + "uri": "i29597665", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Dec. 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622536" + } + ], + "enumerationChronology": [ + "v. 51 (Dec. 1975)" + ], + "idBarcode": [ + "33433099622536" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Aug-Sept 1975)", + "urn:barcode:33433099622569" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Aug-Sept 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Aug-Sept 1975)" + ], + "uri": "i29597639", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Aug-Sept 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622569" + } + ], + "enumerationChronology": [ + "v. 51 (Aug-Sept 1975)" + ], + "idBarcode": [ + "33433099622569" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 51 (Apr-May 1975)", + "urn:barcode:33433099622585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000051 (Apr-May 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 51-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 51 (Apr-May 1975)" + ], + "uri": "i29597620", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 51 (Apr-May 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622585" + } + ], + "enumerationChronology": [ + "v. 51 (Apr-May 1975)" + ], + "idBarcode": [ + "33433099622585" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 inc. (Nov.-Dec. 1974)", + "urn:barcode:33433099622619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000050 inc. (Nov.-Dec. 1974)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 50-1974" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 50 inc. (Nov.-Dec. 1974)" + ], + "uri": "i29597322", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 50 inc. (Nov.-Dec. 1974)" + }, + { + "type": "bf:Barcode", + "value": "33433099622619" + } + ], + "enumerationChronology": [ + "v. 50 inc. (Nov.-Dec. 1974)" + ], + "idBarcode": [ + "33433099622619" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Oct. 1974)", + "urn:barcode:33433099622627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000050 (Oct. 1974)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 50-1974" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 50 (Oct. 1974)" + ], + "uri": "i29597316", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 50 (Oct. 1974)" + }, + { + "type": "bf:Barcode", + "value": "33433099622627" + } + ], + "enumerationChronology": [ + "v. 50 (Oct. 1974)" + ], + "idBarcode": [ + "33433099622627" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Jan. 6-Feb. 17, 1975)", + "urn:barcode:33433099622650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000050 (Jan. 6-Feb. 17, 1975)", + "dateRange": [ + { + "gte": "1975", + "lte": "1975" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 50-1975" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 50 (Jan. 6-Feb. 17, 1975)" + ], + "uri": "i29597003", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 50 (Jan. 6-Feb. 17, 1975)" + }, + { + "type": "bf:Barcode", + "value": "33433099622650" + } + ], + "enumerationChronology": [ + "v. 50 (Jan. 6-Feb. 17, 1975)" + ], + "idBarcode": [ + "33433099622650" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Aug. 19-Sept. 30, 1974)", + "urn:barcode:33433099622635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000050 (Aug. 19-Sept. 30, 1974)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 50-1974" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 50 (Aug. 19-Sept. 30, 1974)" + ], + "uri": "i29597294", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 50 (Aug. 19-Sept. 30, 1974)" + }, + { + "type": "bf:Barcode", + "value": "33433099622635" + } + ], + "enumerationChronology": [ + "v. 50 (Aug. 19-Sept. 30, 1974)" + ], + "idBarcode": [ + "33433099622635" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 50 (Apr. 29, 1974)", + "urn:barcode:33433099622643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000050 (Apr. 29, 1974)", + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 50-1974" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 50 (Apr. 29, 1974)" + ], + "uri": "i29597286", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 50 (Apr. 29, 1974)" + }, + { + "type": "bf:Barcode", + "value": "33433099622643" + } + ], + "enumerationChronology": [ + "v. 50 (Apr. 29, 1974)" + ], + "idBarcode": [ + "33433099622643" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Sept.-Oct. 1972)", + "urn:barcode:33433081121083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Sept.-Oct. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Sept.-Oct. 1972)" + ], + "uri": "i16700886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Sept.-Oct. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433081121083" + } + ], + "enumerationChronology": [ + "v. 48 (Sept.-Oct. 1972)" + ], + "idBarcode": [ + "33433081121083" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Nov. 1972)", + "urn:barcode:33433081121091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Nov. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Nov. 1972)" + ], + "uri": "i16700887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Nov. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433081121091" + } + ], + "enumerationChronology": [ + "v. 48 (Nov. 1972)" + ], + "idBarcode": [ + "33433081121091" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (May-June 1972)", + "urn:barcode:33433080731296" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (May-June 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (May-June 1972)" + ], + "uri": "i17474431", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (May-June 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433080731296" + } + ], + "enumerationChronology": [ + "v. 48 (May-June 1972)" + ], + "idBarcode": [ + "33433080731296" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (July-Aug. 1972)", + "urn:barcode:33433081120473" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (July-Aug. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (July-Aug. 1972)" + ], + "uri": "i16700885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (July-Aug. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433081120473" + } + ], + "enumerationChronology": [ + "v. 48 (July-Aug. 1972)" + ], + "idBarcode": [ + "33433081120473" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Jan.-Feb. 17, 1973)", + "urn:barcode:33433078744582" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Jan.-Feb. 17, 1973)", + "dateRange": [ + { + "gte": "1973", + "lte": "1973" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1973" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Jan.-Feb. 17, 1973)" + ], + "uri": "i16700899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Jan.-Feb. 17, 1973)" + }, + { + "type": "bf:Barcode", + "value": "33433078744582" + } + ], + "enumerationChronology": [ + "v. 48 (Jan.-Feb. 17, 1973)" + ], + "idBarcode": [ + "33433078744582" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Feb. 26-Mar. 1972)", + "urn:barcode:33433084239056" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Feb. 26-Mar. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Feb. 26-Mar. 1972)" + ], + "uri": "i17474771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Feb. 26-Mar. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433084239056" + } + ], + "enumerationChronology": [ + "v. 48 (Feb. 26-Mar. 1972)" + ], + "idBarcode": [ + "33433084239056" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Dec. 1972)", + "urn:barcode:33433081121109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Dec. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Dec. 1972)" + ], + "uri": "i16700888", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Dec. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433081121109" + } + ], + "enumerationChronology": [ + "v. 48 (Dec. 1972)" + ], + "idBarcode": [ + "33433081121109" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 48 (Apr. 1972)", + "urn:barcode:33433084239064" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000048 (Apr. 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 48-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 48 (Apr. 1972)" + ], + "uri": "i17474772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 48 (Apr. 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433084239064" + } + ], + "enumerationChronology": [ + "v. 48 (Apr. 1972)" + ], + "idBarcode": [ + "33433084239064" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Oct. 1971)", + "urn:barcode:33433084239023" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Oct. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Oct. 1971)" + ], + "uri": "i17474768", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Oct. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084239023" + } + ], + "enumerationChronology": [ + "v. 47 (Oct. 1971)" + ], + "idBarcode": [ + "33433084239023" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Nov. 1971)", + "urn:barcode:33433084239031" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Nov. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Nov. 1971)" + ], + "uri": "i17474769", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Nov. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084239031" + } + ], + "enumerationChronology": [ + "v. 47 (Nov. 1971)" + ], + "idBarcode": [ + "33433084239031" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (May 1971)", + "urn:barcode:33433084238991" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (May 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (May 1971)" + ], + "uri": "i17474765", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (May 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084238991" + } + ], + "enumerationChronology": [ + "v. 47 (May 1971)" + ], + "idBarcode": [ + "33433084238991" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (June-July 1971)", + "urn:barcode:33433084239007" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (June-July 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (June-July 1971)" + ], + "uri": "i17474766", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (June-July 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084239007" + } + ], + "enumerationChronology": [ + "v. 47 (June-July 1971)" + ], + "idBarcode": [ + "33433084239007" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Feb. 20-Mar. 1971)", + "urn:barcode:33433084238975" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Feb. 20-Mar. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Feb. 20-Mar. 1971)" + ], + "uri": "i17474763", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Feb. 20-Mar. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084238975" + } + ], + "enumerationChronology": [ + "v. 47 (Feb. 20-Mar. 1971)" + ], + "idBarcode": [ + "33433084238975" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Dec. 1971)", + "urn:barcode:33433084239049" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Dec. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Dec. 1971)" + ], + "uri": "i17474770", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Dec. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084239049" + } + ], + "enumerationChronology": [ + "v. 47 (Dec. 1971)" + ], + "idBarcode": [ + "33433084239049" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Aug.-Sept. 1971)", + "urn:barcode:33433084239015" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Aug.-Sept. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Aug.-Sept. 1971)" + ], + "uri": "i17474767", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Aug.-Sept. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084239015" + } + ], + "enumerationChronology": [ + "v. 47 (Aug.-Sept. 1971)" + ], + "idBarcode": [ + "33433084239015" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 47 (Apr. 1971)", + "urn:barcode:33433084238983" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000047 (Apr. 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 47-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 47 (Apr. 1971)" + ], + "uri": "i17474764", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 47 (Apr. 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084238983" + } + ], + "enumerationChronology": [ + "v. 47 (Apr. 1971)" + ], + "idBarcode": [ + "33433084238983" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Oct. 1970)", + "urn:barcode:33433084238934" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Oct. 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Oct. 1970)" + ], + "uri": "i17474759", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Oct. 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238934" + } + ], + "enumerationChronology": [ + "v. 46 (Oct. 1970)" + ], + "idBarcode": [ + "33433084238934" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Nov. 1970)", + "urn:barcode:33433084238942" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Nov. 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Nov. 1970)" + ], + "uri": "i17474760", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Nov. 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238942" + } + ], + "enumerationChronology": [ + "v. 46 (Nov. 1970)" + ], + "idBarcode": [ + "33433084238942" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (May 1970)", + "urn:barcode:33433104098789" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (May 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (May 1970)" + ], + "uri": "i29250562", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (May 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433104098789" + } + ], + "enumerationChronology": [ + "v. 46 (May 1970)" + ], + "idBarcode": [ + "33433104098789" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (June-July 1970)", + "urn:barcode:33433084238918" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (June-July 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (June-July 1970)" + ], + "uri": "i17474757", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (June-July 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238918" + } + ], + "enumerationChronology": [ + "v. 46 (June-July 1970)" + ], + "idBarcode": [ + "33433084238918" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Jan.-Feb. 13, 1971)", + "urn:barcode:33433084238967" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Jan.-Feb. 13, 1971)", + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1971" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Jan.-Feb. 13, 1971)" + ], + "uri": "i17474762", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Jan.-Feb. 13, 1971)" + }, + { + "type": "bf:Barcode", + "value": "33433084238967" + } + ], + "enumerationChronology": [ + "v. 46 (Jan.-Feb. 13, 1971)" + ], + "idBarcode": [ + "33433084238967" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Feb. 21-Mar. 28, 1970)", + "urn:barcode:33433084238892" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Feb. 21-Mar. 28, 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Feb. 21-Mar. 28, 1970)" + ], + "uri": "i17474755", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Feb. 21-Mar. 28, 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238892" + } + ], + "enumerationChronology": [ + "v. 46 (Feb. 21-Mar. 28, 1970)" + ], + "idBarcode": [ + "33433084238892" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Dec. 1970)", + "urn:barcode:33433084238959" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Dec. 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Dec. 1970)" + ], + "uri": "i17474761", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Dec. 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238959" + } + ], + "enumerationChronology": [ + "v. 46 (Dec. 1970)" + ], + "idBarcode": [ + "33433084238959" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Aug.-Sept. 1970)", + "urn:barcode:33433084238926" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Aug.-Sept. 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Aug.-Sept. 1970)" + ], + "uri": "i17474758", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Aug.-Sept. 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238926" + } + ], + "enumerationChronology": [ + "v. 46 (Aug.-Sept. 1970)" + ], + "idBarcode": [ + "33433084238926" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 46 (Apr. 1970)", + "urn:barcode:33433084238900" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000046 (Apr. 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 46-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 46 (Apr. 1970)" + ], + "uri": "i17474756", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 46 (Apr. 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238900" + } + ], + "enumerationChronology": [ + "v. 46 (Apr. 1970)" + ], + "idBarcode": [ + "33433084238900" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Sept. 1969)", + "urn:barcode:33433084238835" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Sept. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Sept. 1969)" + ], + "uri": "i17474750", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Sept. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238835" + } + ], + "enumerationChronology": [ + "v. 45 (Sept. 1969)" + ], + "idBarcode": [ + "33433084238835" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Oct. 1969)", + "urn:barcode:33433084238850" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Oct. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Oct. 1969)" + ], + "uri": "i17474751", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Oct. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238850" + } + ], + "enumerationChronology": [ + "v. 45 (Oct. 1969)" + ], + "idBarcode": [ + "33433084238850" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Nov. 1969)", + "urn:barcode:33433084238868" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Nov. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Nov. 1969)" + ], + "uri": "i17474752", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Nov. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238868" + } + ], + "enumerationChronology": [ + "v. 45 (Nov. 1969)" + ], + "idBarcode": [ + "33433084238868" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (May 1969)", + "urn:barcode:33433084238801" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (May 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (May 1969)" + ], + "uri": "i17474746", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (May 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238801" + } + ], + "enumerationChronology": [ + "v. 45 (May 1969)" + ], + "idBarcode": [ + "33433084238801" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (June 1969)", + "urn:barcode:33433084238819" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (June 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (June 1969)" + ], + "uri": "i17474747", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (June 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238819" + } + ], + "enumerationChronology": [ + "v. 45 (June 1969)" + ], + "idBarcode": [ + "33433084238819" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (July 1969)", + "urn:barcode:33433084238827" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (July 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (July 1969)" + ], + "uri": "i17474748", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (July 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238827" + } + ], + "enumerationChronology": [ + "v. 45 (July 1969)" + ], + "idBarcode": [ + "33433084238827" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Jan. 3-Feb. 14, 1970)", + "urn:barcode:33433084238884" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Jan. 3-Feb. 14, 1970)", + "dateRange": [ + { + "gte": "1970", + "lte": "1970" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1970" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Jan. 3-Feb. 14, 1970)" + ], + "uri": "i17474754", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Jan. 3-Feb. 14, 1970)" + }, + { + "type": "bf:Barcode", + "value": "33433084238884" + } + ], + "enumerationChronology": [ + "v. 45 (Jan. 3-Feb. 14, 1970)" + ], + "idBarcode": [ + "33433084238884" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Feb. 22-Mar. 29, 1969)", + "urn:barcode:33433084238785" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Feb. 22-Mar. 29, 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Feb. 22-Mar. 29, 1969)" + ], + "uri": "i17474744", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Feb. 22-Mar. 29, 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238785" + } + ], + "enumerationChronology": [ + "v. 45 (Feb. 22-Mar. 29, 1969)" + ], + "idBarcode": [ + "33433084238785" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Dec. 1969)", + "urn:barcode:33433084238876" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Dec. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Dec. 1969)" + ], + "uri": "i17474753", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Dec. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238876" + } + ], + "enumerationChronology": [ + "v. 45 (Dec. 1969)" + ], + "idBarcode": [ + "33433084238876" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Aug. 1969)", + "urn:barcode:33433084238843" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Aug. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Aug. 1969)" + ], + "uri": "i17474749", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Aug. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238843" + } + ], + "enumerationChronology": [ + "v. 45 (Aug. 1969)" + ], + "idBarcode": [ + "33433084238843" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 45 (Apr. 1969)", + "urn:barcode:33433084238793" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000045 (Apr. 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 45-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 45 (Apr. 1969)" + ], + "uri": "i17474745", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 45 (Apr. 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238793" + } + ], + "enumerationChronology": [ + "v. 45 (Apr. 1969)" + ], + "idBarcode": [ + "33433084238793" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Sept. 1968)", + "urn:barcode:33433084238736" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Sept. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Sept. 1968)" + ], + "uri": "i17474739", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Sept. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238736" + } + ], + "enumerationChronology": [ + "v. 44 (Sept. 1968)" + ], + "idBarcode": [ + "33433084238736" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Oct. 1968)", + "urn:barcode:33433084238744" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Oct. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Oct. 1968)" + ], + "uri": "i17474740", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Oct. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238744" + } + ], + "enumerationChronology": [ + "v. 44 (Oct. 1968)" + ], + "idBarcode": [ + "33433084238744" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Nov. 1968)", + "urn:barcode:33433084238751" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Nov. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Nov. 1968)" + ], + "uri": "i17474741", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Nov. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238751" + } + ], + "enumerationChronology": [ + "v. 44 (Nov. 1968)" + ], + "idBarcode": [ + "33433084238751" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (May 1968)", + "urn:barcode:33433084238694" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (May 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (May 1968)" + ], + "uri": "i17474735", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (May 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238694" + } + ], + "enumerationChronology": [ + "v. 44 (May 1968)" + ], + "idBarcode": [ + "33433084238694" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (June 1968)", + "urn:barcode:33433084238702" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (June 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (June 1968)" + ], + "uri": "i17474736", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (June 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238702" + } + ], + "enumerationChronology": [ + "v. 44 (June 1968)" + ], + "idBarcode": [ + "33433084238702" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (July 1968)", + "urn:barcode:33433084238710" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (July 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (July 1968)" + ], + "uri": "i17474737", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (July 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238710" + } + ], + "enumerationChronology": [ + "v. 44 (July 1968)" + ], + "idBarcode": [ + "33433084238710" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Jan.4-Feb. 15, 1969)", + "urn:barcode:33433084238777" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Jan.4-Feb. 15, 1969)", + "dateRange": [ + { + "gte": "1969", + "lte": "1969" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1969" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Jan.4-Feb. 15, 1969)" + ], + "uri": "i17474743", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Jan.4-Feb. 15, 1969)" + }, + { + "type": "bf:Barcode", + "value": "33433084238777" + } + ], + "enumerationChronology": [ + "v. 44 (Jan.4-Feb. 15, 1969)" + ], + "idBarcode": [ + "33433084238777" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Feb. 24-Mar. 30, 1968)", + "urn:barcode:33433084238678" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Feb. 24-Mar. 30, 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Feb. 24-Mar. 30, 1968)" + ], + "uri": "i17474733", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Feb. 24-Mar. 30, 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238678" + } + ], + "enumerationChronology": [ + "v. 44 (Feb. 24-Mar. 30, 1968)" + ], + "idBarcode": [ + "33433084238678" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Dec. 1968)", + "urn:barcode:33433084238769" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Dec. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Dec. 1968)" + ], + "uri": "i17474742", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Dec. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238769" + } + ], + "enumerationChronology": [ + "v. 44 (Dec. 1968)" + ], + "idBarcode": [ + "33433084238769" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Aug. 1968)", + "urn:barcode:33433084238728" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Aug. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Aug. 1968)" + ], + "uri": "i17474738", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Aug. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238728" + } + ], + "enumerationChronology": [ + "v. 44 (Aug. 1968)" + ], + "idBarcode": [ + "33433084238728" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 44 (Apr. 1968)", + "urn:barcode:33433084238686" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000044 (Apr. 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 44-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 44 (Apr. 1968)" + ], + "uri": "i17474734", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 44 (Apr. 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238686" + } + ], + "enumerationChronology": [ + "v. 44 (Apr. 1968)" + ], + "idBarcode": [ + "33433084238686" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Sept. 1967)", + "urn:barcode:33433084238629" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Sept. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Sept. 1967)" + ], + "uri": "i17474728", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Sept. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084238629" + } + ], + "enumerationChronology": [ + "v. 43 (Sept. 1967)" + ], + "idBarcode": [ + "33433084238629" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Oct. 1967)", + "urn:barcode:33433084238637" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Oct. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Oct. 1967)" + ], + "uri": "i17474729", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Oct. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084238637" + } + ], + "enumerationChronology": [ + "v. 43 (Oct. 1967)" + ], + "idBarcode": [ + "33433084238637" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Nov. 1967)", + "urn:barcode:33433084238645" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Nov. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Nov. 1967)" + ], + "uri": "i17474730", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Nov. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084238645" + } + ], + "enumerationChronology": [ + "v. 43 (Nov. 1967)" + ], + "idBarcode": [ + "33433084238645" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (May 1967)", + "urn:barcode:33433084159981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (May 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (May 1967)" + ], + "uri": "i17474724", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (May 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084159981" + } + ], + "enumerationChronology": [ + "v. 43 (May 1967)" + ], + "idBarcode": [ + "33433084159981" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (June 1967)", + "urn:barcode:33433084159999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (June 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (June 1967)" + ], + "uri": "i17474725", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (June 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084159999" + } + ], + "enumerationChronology": [ + "v. 43 (June 1967)" + ], + "idBarcode": [ + "33433084159999" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (July 1967)", + "urn:barcode:33433084160005" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (July 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (July 1967)" + ], + "uri": "i17474726", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (July 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084160005" + } + ], + "enumerationChronology": [ + "v. 43 (July 1967)" + ], + "idBarcode": [ + "33433084160005" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Jan. 6-Feb. 17, 1968)", + "urn:barcode:33433084238660" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Jan. 6-Feb. 17, 1968)", + "dateRange": [ + { + "gte": "1968", + "lte": "1968" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1968" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Jan. 6-Feb. 17, 1968)" + ], + "uri": "i17474732", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Jan. 6-Feb. 17, 1968)" + }, + { + "type": "bf:Barcode", + "value": "33433084238660" + } + ], + "enumerationChronology": [ + "v. 43 (Jan. 6-Feb. 17, 1968)" + ], + "idBarcode": [ + "33433084238660" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Feb. 25-Mar. 25, 1967)", + "urn:barcode:33433084159965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Feb. 25-Mar. 25, 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Feb. 25-Mar. 25, 1967)" + ], + "uri": "i17474722", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Feb. 25-Mar. 25, 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084159965" + } + ], + "enumerationChronology": [ + "v. 43 (Feb. 25-Mar. 25, 1967)" + ], + "idBarcode": [ + "33433084159965" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Dec. 1967)", + "urn:barcode:33433084238652" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Dec. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Dec. 1967)" + ], + "uri": "i17474731", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Dec. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084238652" + } + ], + "enumerationChronology": [ + "v. 43 (Dec. 1967)" + ], + "idBarcode": [ + "33433084238652" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Aug. 1967)", + "urn:barcode:33433084238611" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Aug. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Aug. 1967)" + ], + "uri": "i17474727", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Aug. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084238611" + } + ], + "enumerationChronology": [ + "v. 43 (Aug. 1967)" + ], + "idBarcode": [ + "33433084238611" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 43 (Apr. 1967)", + "urn:barcode:33433084159973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000043 (Apr. 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 43-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 43 (Apr. 1967)" + ], + "uri": "i17474723", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 43 (Apr. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084159973" + } + ], + "enumerationChronology": [ + "v. 43 (Apr. 1967)" + ], + "idBarcode": [ + "33433084159973" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Oct. 1966)", + "urn:barcode:33433084159932" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Oct. 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Oct. 1966)" + ], + "uri": "i17474719", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Oct. 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159932" + } + ], + "enumerationChronology": [ + "v. 42 (Oct. 1966)" + ], + "idBarcode": [ + "33433084159932" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Nov. 1966)", + "urn:barcode:33433079128975" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Nov. 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Nov. 1966)" + ], + "uri": "i17474438", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Nov. 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433079128975" + } + ], + "enumerationChronology": [ + "v. 42 (Nov. 1966)" + ], + "idBarcode": [ + "33433079128975" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (May 1966)", + "urn:barcode:33433084159882" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (May 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (May 1966)" + ], + "uri": "i17474714", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (May 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159882" + } + ], + "enumerationChronology": [ + "v. 42 (May 1966)" + ], + "idBarcode": [ + "33433084159882" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (June 1966)", + "urn:barcode:33433084159890" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (June 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (June 1966)" + ], + "uri": "i17474715", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (June 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159890" + } + ], + "enumerationChronology": [ + "v. 42 (June 1966)" + ], + "idBarcode": [ + "33433084159890" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (July 1966)", + "urn:barcode:33433084159908" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (July 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (July 1966)" + ], + "uri": "i17474716", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (July 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159908" + } + ], + "enumerationChronology": [ + "v. 42 (July 1966)" + ], + "idBarcode": [ + "33433084159908" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Jan. 7-Feb. 18, 1967)", + "urn:barcode:33433084159957" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Jan. 7-Feb. 18, 1967)", + "dateRange": [ + { + "gte": "1967", + "lte": "1967" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1967" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Jan. 7-Feb. 18, 1967)" + ], + "uri": "i17474721", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Jan. 7-Feb. 18, 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433084159957" + } + ], + "enumerationChronology": [ + "v. 42 (Jan. 7-Feb. 18, 1967)" + ], + "idBarcode": [ + "33433084159957" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Feb. 26-Mar. 26, 1966)", + "urn:barcode:33433084159866" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Feb. 26-Mar. 26, 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Feb. 26-Mar. 26, 1966)" + ], + "uri": "i17474712", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Feb. 26-Mar. 26, 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159866" + } + ], + "enumerationChronology": [ + "v. 42 (Feb. 26-Mar. 26, 1966)" + ], + "idBarcode": [ + "33433084159866" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Dec. 1966)", + "urn:barcode:33433084159940" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Dec. 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Dec. 1966)" + ], + "uri": "i17474720", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Dec. 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159940" + } + ], + "enumerationChronology": [ + "v. 42 (Dec. 1966)" + ], + "idBarcode": [ + "33433084159940" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Aug. 1966)", + "urn:barcode:33433084159916" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Aug. 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Aug. 1966)" + ], + "uri": "i17474717", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Aug. 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159916" + } + ], + "enumerationChronology": [ + "v. 42 (Aug. 1966)" + ], + "idBarcode": [ + "33433084159916" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (Aug. 1966)", + "urn:barcode:33433084159924" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (Aug. 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (Aug. 1966)" + ], + "uri": "i17474718", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (Aug. 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159924" + } + ], + "enumerationChronology": [ + "v. 42 (Aug. 1966)" + ], + "idBarcode": [ + "33433084159924" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 42 (April 1966)", + "urn:barcode:33433084159874" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000042 (April 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 42-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 42 (April 1966)" + ], + "uri": "i17474713", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 42 (April 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084159874" + } + ], + "enumerationChronology": [ + "v. 42 (April 1966)" + ], + "idBarcode": [ + "33433084159874" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 Dec. 1965)", + "urn:barcode:33433084159858" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 Dec. 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 Dec. 1965)" + ], + "uri": "i17474710", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 Dec. 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159858" + } + ], + "enumerationChronology": [ + "v. 41 Dec. 1965)" + ], + "idBarcode": [ + "33433084159858" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (may 1965)", + "urn:barcode:33433084159817" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (may 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (may 1965)" + ], + "uri": "i17474705", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (may 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159817" + } + ], + "enumerationChronology": [ + "v. 41 (may 1965)" + ], + "idBarcode": [ + "33433084159817" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Sept 1965)", + "urn:barcode:33433079575118" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Sept 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Sept 1965)" + ], + "uri": "i17474456", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Sept 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433079575118" + } + ], + "enumerationChronology": [ + "v. 41 (Sept 1965)" + ], + "idBarcode": [ + "33433079575118" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Oct 1965)", + "urn:barcode:33433079575126" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Oct 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Oct 1965)" + ], + "uri": "i17474457", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Oct 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433079575126" + } + ], + "enumerationChronology": [ + "v. 41 (Oct 1965)" + ], + "idBarcode": [ + "33433079575126" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Nov. 1965)", + "urn:barcode:33433084159841" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Nov. 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Nov. 1965)" + ], + "uri": "i17474709", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Nov. 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159841" + } + ], + "enumerationChronology": [ + "v. 41 (Nov. 1965)" + ], + "idBarcode": [ + "33433084159841" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (June 1965)", + "urn:barcode:33433084240609" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (June 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (June 1965)" + ], + "uri": "i17474706", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (June 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084240609" + } + ], + "enumerationChronology": [ + "v. 41 (June 1965)" + ], + "idBarcode": [ + "33433084240609" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (July 1965)", + "urn:barcode:33433084159825" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (July 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (July 1965)" + ], + "uri": "i17474707", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (July 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159825" + } + ], + "enumerationChronology": [ + "v. 41 (July 1965)" + ], + "idBarcode": [ + "33433084159825" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Jan.-Feb. 19 1972)", + "urn:barcode:33433078698390" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Jan.-Feb. 19 1972)", + "dateRange": [ + { + "gte": "1972", + "lte": "1972" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1972" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Jan.-Feb. 19 1972)" + ], + "uri": "i16700896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Jan.-Feb. 19 1972)" + }, + { + "type": "bf:Barcode", + "value": "33433078698390" + } + ], + "enumerationChronology": [ + "v. 41 (Jan.-Feb. 19 1972)" + ], + "idBarcode": [ + "33433078698390" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Jan. 1-Feb. 19, 1966)", + "urn:barcode:33433084240591" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Jan. 1-Feb. 19, 1966)", + "dateRange": [ + { + "gte": "1966", + "lte": "1966" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1966" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Jan. 1-Feb. 19, 1966)" + ], + "uri": "i17474711", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Jan. 1-Feb. 19, 1966)" + }, + { + "type": "bf:Barcode", + "value": "33433084240591" + } + ], + "enumerationChronology": [ + "v. 41 (Jan. 1-Feb. 19, 1966)" + ], + "idBarcode": [ + "33433084240591" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Feb. 20-Mar. 27, 1965)", + "urn:barcode:33433084240617" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Feb. 20-Mar. 27, 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Feb. 20-Mar. 27, 1965)" + ], + "uri": "i17474703", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Feb. 20-Mar. 27, 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084240617" + } + ], + "enumerationChronology": [ + "v. 41 (Feb. 20-Mar. 27, 1965)" + ], + "idBarcode": [ + "33433084240617" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Aug. 1965)", + "urn:barcode:33433084159833" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Aug. 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Aug. 1965)" + ], + "uri": "i17474708", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Aug. 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159833" + } + ], + "enumerationChronology": [ + "v. 41 (Aug. 1965)" + ], + "idBarcode": [ + "33433084159833" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 41 (Apr. 1965)", + "urn:barcode:33433084159809" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000041 (Apr. 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 41-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 41 (Apr. 1965)" + ], + "uri": "i17474704", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 41 (Apr. 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159809" + } + ], + "enumerationChronology": [ + "v. 41 (Apr. 1965)" + ], + "idBarcode": [ + "33433084159809" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Sept. 1964)", + "urn:barcode:33433084159759" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Sept. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Sept. 1964)" + ], + "uri": "i17474698", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Sept. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159759" + } + ], + "enumerationChronology": [ + "v. 40 (Sept. 1964)" + ], + "idBarcode": [ + "33433084159759" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Oct. 1964)", + "urn:barcode:33433084159767" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Oct. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Oct. 1964)" + ], + "uri": "i17474699", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Oct. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159767" + } + ], + "enumerationChronology": [ + "v. 40 (Oct. 1964)" + ], + "idBarcode": [ + "33433084159767" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Nov. 1964)", + "urn:barcode:33433084159775" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Nov. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Nov. 1964)" + ], + "uri": "i17474700", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Nov. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159775" + } + ], + "enumerationChronology": [ + "v. 40 (Nov. 1964)" + ], + "idBarcode": [ + "33433084159775" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (May 1964)", + "urn:barcode:33433084159718" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (May 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (May 1964)" + ], + "uri": "i17474694", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (May 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159718" + } + ], + "enumerationChronology": [ + "v. 40 (May 1964)" + ], + "idBarcode": [ + "33433084159718" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (June 1964)", + "urn:barcode:33433084159726" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (June 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (June 1964)" + ], + "uri": "i17474695", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (June 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159726" + } + ], + "enumerationChronology": [ + "v. 40 (June 1964)" + ], + "idBarcode": [ + "33433084159726" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (July 1964)", + "urn:barcode:33433084159734" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (July 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (July 1964)" + ], + "uri": "i17474696", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (July 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159734" + } + ], + "enumerationChronology": [ + "v. 40 (July 1964)" + ], + "idBarcode": [ + "33433084159734" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Jan.2-Feb. 13, 1965)", + "urn:barcode:33433084159791" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Jan.2-Feb. 13, 1965)", + "dateRange": [ + { + "gte": "1965", + "lte": "1965" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1965" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Jan.2-Feb. 13, 1965)" + ], + "uri": "i17474702", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Jan.2-Feb. 13, 1965)" + }, + { + "type": "bf:Barcode", + "value": "33433084159791" + } + ], + "enumerationChronology": [ + "v. 40 (Jan.2-Feb. 13, 1965)" + ], + "idBarcode": [ + "33433084159791" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Feb. 22-mar. 28, 1964)", + "urn:barcode:33433084159692" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Feb. 22-mar. 28, 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Feb. 22-mar. 28, 1964)" + ], + "uri": "i17474692", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Feb. 22-mar. 28, 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159692" + } + ], + "enumerationChronology": [ + "v. 40 (Feb. 22-mar. 28, 1964)" + ], + "idBarcode": [ + "33433084159692" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Dec. 1964)", + "urn:barcode:33433084159783" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Dec. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Dec. 1964)" + ], + "uri": "i17474701", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Dec. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159783" + } + ], + "enumerationChronology": [ + "v. 40 (Dec. 1964)" + ], + "idBarcode": [ + "33433084159783" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Aug. 1964)", + "urn:barcode:33433084159742" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Aug. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Aug. 1964)" + ], + "uri": "i17474697", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Aug. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159742" + } + ], + "enumerationChronology": [ + "v. 40 (Aug. 1964)" + ], + "idBarcode": [ + "33433084159742" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 40 (Apr. 1964)", + "urn:barcode:33433084159700" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000040 (Apr. 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 40-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 40 (Apr. 1964)" + ], + "uri": "i17474693", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 40 (Apr. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159700" + } + ], + "enumerationChronology": [ + "v. 40 (Apr. 1964)" + ], + "idBarcode": [ + "33433084159700" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Sept. 1963)", + "urn:barcode:33433084159643" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Sept. 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Sept. 1963)" + ], + "uri": "i17474687", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Sept. 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159643" + } + ], + "enumerationChronology": [ + "v. 39 (Sept. 1963)" + ], + "idBarcode": [ + "33433084159643" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Oct. 1963)", + "urn:barcode:33433084159650" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Oct. 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Oct. 1963)" + ], + "uri": "i17474688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Oct. 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159650" + } + ], + "enumerationChronology": [ + "v. 39 (Oct. 1963)" + ], + "idBarcode": [ + "33433084159650" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Nov. 1963)", + "urn:barcode:33433084159668" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Nov. 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Nov. 1963)" + ], + "uri": "i17474689", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Nov. 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159668" + } + ], + "enumerationChronology": [ + "v. 39 (Nov. 1963)" + ], + "idBarcode": [ + "33433084159668" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (May 1963)", + "urn:barcode:33433084159601" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (May 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (May 1963)" + ], + "uri": "i17474683", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (May 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159601" + } + ], + "enumerationChronology": [ + "v. 39 (May 1963)" + ], + "idBarcode": [ + "33433084159601" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Mar. 23-Apr. 27, 1963)", + "urn:barcode:33433084159593" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Mar. 23-Apr. 27, 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Mar. 23-Apr. 27, 1963)" + ], + "uri": "i17474682", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Mar. 23-Apr. 27, 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159593" + } + ], + "enumerationChronology": [ + "v. 39 (Mar. 23-Apr. 27, 1963)" + ], + "idBarcode": [ + "33433084159593" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (June 1963)", + "urn:barcode:33433084159619" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (June 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (June 1963)" + ], + "uri": "i17474684", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (June 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159619" + } + ], + "enumerationChronology": [ + "v. 39 (June 1963)" + ], + "idBarcode": [ + "33433084159619" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (July 1963)", + "urn:barcode:33433084159627" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (July 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (July 1963)" + ], + "uri": "i17474685", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (July 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159627" + } + ], + "enumerationChronology": [ + "v. 39 (July 1963)" + ], + "idBarcode": [ + "33433084159627" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Jan. 4-Feb. 15, 1964)", + "urn:barcode:33433084159684" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Jan. 4-Feb. 15, 1964)", + "dateRange": [ + { + "gte": "1964", + "lte": "1964" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1964" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Jan. 4-Feb. 15, 1964)" + ], + "uri": "i17474691", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Jan. 4-Feb. 15, 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433084159684" + } + ], + "enumerationChronology": [ + "v. 39 (Jan. 4-Feb. 15, 1964)" + ], + "idBarcode": [ + "33433084159684" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Feb. 23-Mar. 16, 1963)", + "urn:barcode:33433084159585" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Feb. 23-Mar. 16, 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Feb. 23-Mar. 16, 1963)" + ], + "uri": "i17474681", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Feb. 23-Mar. 16, 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159585" + } + ], + "enumerationChronology": [ + "v. 39 (Feb. 23-Mar. 16, 1963)" + ], + "idBarcode": [ + "33433084159585" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Dec. 1963)", + "urn:barcode:33433084159676" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Dec. 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Dec. 1963)" + ], + "uri": "i17474690", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Dec. 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159676" + } + ], + "enumerationChronology": [ + "v. 39 (Dec. 1963)" + ], + "idBarcode": [ + "33433084159676" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 39 (Aug. 1963)", + "urn:barcode:33433084159635" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000039 (Aug. 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 39-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 39 (Aug. 1963)" + ], + "uri": "i17474686", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 39 (Aug. 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159635" + } + ], + "enumerationChronology": [ + "v. 39 (Aug. 1963)" + ], + "idBarcode": [ + "33433084159635" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (May 26-July 7, 1962)", + "urn:barcode:33433084159536" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000038 (May 26-July 7, 1962)", + "dateRange": [ + { + "gte": "1962", + "lte": "1962" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 38-1962" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 38 (May 26-July 7, 1962)" + ], + "uri": "i17474676", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 38 (May 26-July 7, 1962)" + }, + { + "type": "bf:Barcode", + "value": "33433084159536" + } + ], + "enumerationChronology": [ + "v. 38 (May 26-July 7, 1962)" + ], + "idBarcode": [ + "33433084159536" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (July 14-Aug.18, 1962)", + "urn:barcode:33433084159544" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000038 (July 14-Aug.18, 1962)", + "dateRange": [ + { + "gte": "1962", + "lte": "1962" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 38-1962" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 38 (July 14-Aug.18, 1962)" + ], + "uri": "i17474677", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 38 (July 14-Aug.18, 1962)" + }, + { + "type": "bf:Barcode", + "value": "33433084159544" + } + ], + "enumerationChronology": [ + "v. 38 (July 14-Aug.18, 1962)" + ], + "idBarcode": [ + "33433084159544" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38 (Jan. 5-Feb. 16, 1963)", + "urn:barcode:33433084159577" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000038 (Jan. 5-Feb. 16, 1963)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 38-1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 38 (Jan. 5-Feb. 16, 1963)" + ], + "uri": "i17474680", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 38 (Jan. 5-Feb. 16, 1963)" + }, + { + "type": "bf:Barcode", + "value": "33433084159577" + } + ], + "enumerationChronology": [ + "v. 38 (Jan. 5-Feb. 16, 1963)" + ], + "idBarcode": [ + "33433084159577" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 38", + "urn:barcode:33433080065141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000038", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 38-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 38" + ], + "uri": "i17586833", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 38" + }, + { + "type": "bf:Barcode", + "value": "33433080065141" + } + ], + "enumerationChronology": [ + "v. 38" + ], + "idBarcode": [ + "33433080065141" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Oct. 14-28, 1961)", + "urn:barcode:33433084159478" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Oct. 14-28, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Oct. 14-28, 1961)" + ], + "uri": "i17474670", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Oct. 14-28, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159478" + } + ], + "enumerationChronology": [ + "v. 37 (Oct. 14-28, 1961)" + ], + "idBarcode": [ + "33433084159478" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Nov. 4-18, 1961)", + "urn:barcode:33433084159486" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Nov. 4-18, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Nov. 4-18, 1961)" + ], + "uri": "i17474671", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Nov. 4-18, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159486" + } + ], + "enumerationChronology": [ + "v. 37 (Nov. 4-18, 1961)" + ], + "idBarcode": [ + "33433084159486" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Nov. 25-Dec. 30, 1961)", + "urn:barcode:33433084159494" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Nov. 25-Dec. 30, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Nov. 25-Dec. 30, 1961)" + ], + "uri": "i17474672", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Nov. 25-Dec. 30, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159494" + } + ], + "enumerationChronology": [ + "v. 37 (Nov. 25-Dec. 30, 1961)" + ], + "idBarcode": [ + "33433084159494" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (May 27-July 1, 1961)", + "urn:barcode:33433084159445" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (May 27-July 1, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (May 27-July 1, 1961)" + ], + "uri": "i17474667", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (May 27-July 1, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159445" + } + ], + "enumerationChronology": [ + "v. 37 (May 27-July 1, 1961)" + ], + "idBarcode": [ + "33433084159445" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (July 8-Aug. 19, 1961)", + "urn:barcode:33433084159452" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (July 8-Aug. 19, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (July 8-Aug. 19, 1961)" + ], + "uri": "i17474668", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (July 8-Aug. 19, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159452" + } + ], + "enumerationChronology": [ + "v. 37 (July 8-Aug. 19, 1961)" + ], + "idBarcode": [ + "33433084159452" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Jan.7-Feb. 11, 1961)", + "urn:barcode:33433084159411" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Jan.7-Feb. 11, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Jan.7-Feb. 11, 1961)" + ], + "uri": "i17474664", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Jan.7-Feb. 11, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159411" + } + ], + "enumerationChronology": [ + "v. 37 (Jan.7-Feb. 11, 1961)" + ], + "idBarcode": [ + "33433084159411" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Feb. 18-Apr. 1, 1961)", + "urn:barcode:33433084159429" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Feb. 18-Apr. 1, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Feb. 18-Apr. 1, 1961)" + ], + "uri": "i17474665", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Feb. 18-Apr. 1, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159429" + } + ], + "enumerationChronology": [ + "v. 37 (Feb. 18-Apr. 1, 1961)" + ], + "idBarcode": [ + "33433084159429" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Aug. 26-Oct. 7, 1961)", + "urn:barcode:33433084159460" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Aug. 26-Oct. 7, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Aug. 26-Oct. 7, 1961)" + ], + "uri": "i17474669", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Aug. 26-Oct. 7, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159460" + } + ], + "enumerationChronology": [ + "v. 37 (Aug. 26-Oct. 7, 1961)" + ], + "idBarcode": [ + "33433084159460" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 37 (Apr. 8-May 20, 1961)", + "urn:barcode:33433084159437" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000037 (Apr. 8-May 20, 1961)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 37-1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 37 (Apr. 8-May 20, 1961)" + ], + "uri": "i17474666", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 37 (Apr. 8-May 20, 1961)" + }, + { + "type": "bf:Barcode", + "value": "33433084159437" + } + ], + "enumerationChronology": [ + "v. 37 (Apr. 8-May 20, 1961)" + ], + "idBarcode": [ + "33433084159437" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Oct.-Nov. 1960)", + "urn:barcode:33433071556728" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (Oct.-Nov. 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (Oct.-Nov. 1960)" + ], + "uri": "i17474432", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (Oct.-Nov. 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433071556728" + } + ], + "enumerationChronology": [ + "v. 36 (Oct.-Nov. 1960)" + ], + "idBarcode": [ + "33433071556728" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Nov. 19-Dec. 31, 1960)", + "urn:barcode:33433071556736" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (Nov. 19-Dec. 31, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (Nov. 19-Dec. 31, 1960)" + ], + "uri": "i17474433", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (Nov. 19-Dec. 31, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433071556736" + } + ], + "enumerationChronology": [ + "v. 36 (Nov. 19-Dec. 31, 1960)" + ], + "idBarcode": [ + "33433071556736" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (May 21-June 25, 1960)", + "urn:barcode:33433084149784" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (May 21-June 25, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (May 21-June 25, 1960)" + ], + "uri": "i17474661", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (May 21-June 25, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149784" + } + ], + "enumerationChronology": [ + "v. 36 (May 21-June 25, 1960)" + ], + "idBarcode": [ + "33433084149784" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (July 2-Aug 13, 1960)", + "urn:barcode:33433084149792" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (July 2-Aug 13, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (July 2-Aug 13, 1960)" + ], + "uri": "i17474662", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (July 2-Aug 13, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149792" + } + ], + "enumerationChronology": [ + "v. 36 (July 2-Aug 13, 1960)" + ], + "idBarcode": [ + "33433084149792" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Feb. 20-Mar. 26, 1960)", + "urn:barcode:33433084149768" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (Feb. 20-Mar. 26, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (Feb. 20-Mar. 26, 1960)" + ], + "uri": "i17474659", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (Feb. 20-Mar. 26, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149768" + } + ], + "enumerationChronology": [ + "v. 36 (Feb. 20-Mar. 26, 1960)" + ], + "idBarcode": [ + "33433084149768" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Aug. 20-Oct. 1, 1960)", + "urn:barcode:33433084149800" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (Aug. 20-Oct. 1, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (Aug. 20-Oct. 1, 1960)" + ], + "uri": "i17474663", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (Aug. 20-Oct. 1, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149800" + } + ], + "enumerationChronology": [ + "v. 36 (Aug. 20-Oct. 1, 1960)" + ], + "idBarcode": [ + "33433084149800" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 36 (Apr. 2-May 14, 1960)", + "urn:barcode:33433084149776" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000036 (Apr. 2-May 14, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 36-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 36 (Apr. 2-May 14, 1960)" + ], + "uri": "i17474660", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 36 (Apr. 2-May 14, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149776" + } + ], + "enumerationChronology": [ + "v. 36 (Apr. 2-May 14, 1960)" + ], + "idBarcode": [ + "33433084149776" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Oct 3-Nov 14 1959)", + "urn:barcode:33433078506999" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Oct 3-Nov 14 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Oct 3-Nov 14 1959)" + ], + "uri": "i16700908", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Oct 3-Nov 14 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078506999" + } + ], + "enumerationChronology": [ + "v. 35 (Oct 3-Nov 14 1959)" + ], + "idBarcode": [ + "33433078506999" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Nov. 21-Dec. 26, 1959)", + "urn:barcode:33433078804303" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Nov. 21-Dec. 26, 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Nov. 21-Dec. 26, 1959)" + ], + "uri": "i16700901", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Nov. 21-Dec. 26, 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078804303" + } + ], + "enumerationChronology": [ + "v. 35 (Nov. 21-Dec. 26, 1959)" + ], + "idBarcode": [ + "33433078804303" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (May-June 1959)", + "urn:barcode:33433078264508" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (May-June 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (May-June 1959)" + ], + "uri": "i16700905", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (May-June 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078264508" + } + ], + "enumerationChronology": [ + "v. 35 (May-June 1959)" + ], + "idBarcode": [ + "33433078264508" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (July 4-Aug 15 1959)", + "urn:barcode:33433078506973" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (July 4-Aug 15 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (July 4-Aug 15 1959)" + ], + "uri": "i16700906", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (July 4-Aug 15 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078506973" + } + ], + "enumerationChronology": [ + "v. 35 (July 4-Aug 15 1959)" + ], + "idBarcode": [ + "33433078506973" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Jan. 2-Feb. 13, 1960)", + "urn:barcode:33433084149750" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Jan. 2-Feb. 13, 1960)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Jan. 2-Feb. 13, 1960)" + ], + "uri": "i17474658", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Jan. 2-Feb. 13, 1960)" + }, + { + "type": "bf:Barcode", + "value": "33433084149750" + } + ], + "enumerationChronology": [ + "v. 35 (Jan. 2-Feb. 13, 1960)" + ], + "idBarcode": [ + "33433084149750" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Feb 21-Mar 28 1959)", + "urn:barcode:33433078264490" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Feb 21-Mar 28 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Feb 21-Mar 28 1959)" + ], + "uri": "i16700903", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Feb 21-Mar 28 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078264490" + } + ], + "enumerationChronology": [ + "v. 35 (Feb 21-Mar 28 1959)" + ], + "idBarcode": [ + "33433078264490" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Aug 22-Sept 26 1959)", + "urn:barcode:33433078506981" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Aug 22-Sept 26 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Aug 22-Sept 26 1959)" + ], + "uri": "i16700907", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Aug 22-Sept 26 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078506981" + } + ], + "enumerationChronology": [ + "v. 35 (Aug 22-Sept 26 1959)" + ], + "idBarcode": [ + "33433078506981" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 35 (Apr 4-May 16 1959)", + "urn:barcode:33433078506965" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000035 (Apr 4-May 16 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 35-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 35 (Apr 4-May 16 1959)" + ], + "uri": "i16700904", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 35 (Apr 4-May 16 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433078506965" + } + ], + "enumerationChronology": [ + "v. 35 (Apr 4-May 16 1959)" + ], + "idBarcode": [ + "33433078506965" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Oct. 11-Nov. 15, 1958)", + "urn:barcode:33433084149727" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Oct. 11-Nov. 15, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Oct. 11-Nov. 15, 1958)" + ], + "uri": "i17474655", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Oct. 11-Nov. 15, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149727" + } + ], + "enumerationChronology": [ + "v. 34 (Oct. 11-Nov. 15, 1958)" + ], + "idBarcode": [ + "33433084149727" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Nov. 22-Dec. 27, 1958)", + "urn:barcode:33433084149735" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Nov. 22-Dec. 27, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Nov. 22-Dec. 27, 1958)" + ], + "uri": "i17474656", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Nov. 22-Dec. 27, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149735" + } + ], + "enumerationChronology": [ + "v. 34 (Nov. 22-Dec. 27, 1958)" + ], + "idBarcode": [ + "33433084149735" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (May 24-July 5, 1958)", + "urn:barcode:33433084149693" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (May 24-July 5, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (May 24-July 5, 1958)" + ], + "uri": "i17474652", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (May 24-July 5, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149693" + } + ], + "enumerationChronology": [ + "v. 34 (May 24-July 5, 1958)" + ], + "idBarcode": [ + "33433084149693" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (July 13-Aug. 16, 1958)", + "urn:barcode:33433084149701" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (July 13-Aug. 16, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (July 13-Aug. 16, 1958)" + ], + "uri": "i17474653", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (July 13-Aug. 16, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149701" + } + ], + "enumerationChronology": [ + "v. 34 (July 13-Aug. 16, 1958)" + ], + "idBarcode": [ + "33433084149701" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Jan. 3-Feb. 14, 1959)", + "urn:barcode:33433084149743" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Jan. 3-Feb. 14, 1959)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Jan. 3-Feb. 14, 1959)" + ], + "uri": "i17474657", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Jan. 3-Feb. 14, 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433084149743" + } + ], + "enumerationChronology": [ + "v. 34 (Jan. 3-Feb. 14, 1959)" + ], + "idBarcode": [ + "33433084149743" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Feb. 22-Apr. 5, 1958)", + "urn:barcode:33433084149677" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Feb. 22-Apr. 5, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Feb. 22-Apr. 5, 1958)" + ], + "uri": "i17474650", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Feb. 22-Apr. 5, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149677" + } + ], + "enumerationChronology": [ + "v. 34 (Feb. 22-Apr. 5, 1958)" + ], + "idBarcode": [ + "33433084149677" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Aug. 23-Oct. 4, 1958)", + "urn:barcode:33433084149719" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Aug. 23-Oct. 4, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Aug. 23-Oct. 4, 1958)" + ], + "uri": "i17474654", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Aug. 23-Oct. 4, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149719" + } + ], + "enumerationChronology": [ + "v. 34 (Aug. 23-Oct. 4, 1958)" + ], + "idBarcode": [ + "33433084149719" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 34 (Apr. 12-May 17, 1958)", + "urn:barcode:33433084149685" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000034 (Apr. 12-May 17, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 34-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 34 (Apr. 12-May 17, 1958)" + ], + "uri": "i17474651", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 34 (Apr. 12-May 17, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149685" + } + ], + "enumerationChronology": [ + "v. 34 (Apr. 12-May 17, 1958)" + ], + "idBarcode": [ + "33433084149685" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (aug. 24-Sept. 28, 1957)", + "urn:barcode:33433084149628" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (aug. 24-Sept. 28, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (aug. 24-Sept. 28, 1957)" + ], + "uri": "i17474645", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (aug. 24-Sept. 28, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149628" + } + ], + "enumerationChronology": [ + "v. 33 (aug. 24-Sept. 28, 1957)" + ], + "idBarcode": [ + "33433084149628" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Oct. 1957)", + "urn:barcode:33433084149636" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Oct. 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Oct. 1957)" + ], + "uri": "i17474646", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Oct. 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149636" + } + ], + "enumerationChronology": [ + "v. 33 (Oct. 1957)" + ], + "idBarcode": [ + "33433084149636" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Nov. 30, 1957-Jan. 4, 1958)", + "urn:barcode:33433084149651" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Nov. 30, 1957-Jan. 4, 1958)", + "dateRange": [ + { + "gte": "1957", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Nov. 30, 1957-Jan. 4, 1958)" + ], + "uri": "i17474648", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Nov. 30, 1957-Jan. 4, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149651" + } + ], + "enumerationChronology": [ + "v. 33 (Nov. 30, 1957-Jan. 4, 1958)" + ], + "idBarcode": [ + "33433084149651" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Nov. 2-Nov. 23, 1957)", + "urn:barcode:33433084149644" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Nov. 2-Nov. 23, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Nov. 2-Nov. 23, 1957)" + ], + "uri": "i17474647", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Nov. 2-Nov. 23, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149644" + } + ], + "enumerationChronology": [ + "v. 33 (Nov. 2-Nov. 23, 1957)" + ], + "idBarcode": [ + "33433084149644" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (May 25-June 29, 1957)", + "urn:barcode:33433084149602" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (May 25-June 29, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (May 25-June 29, 1957)" + ], + "uri": "i17474643", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (May 25-June 29, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149602" + } + ], + "enumerationChronology": [ + "v. 33 (May 25-June 29, 1957)" + ], + "idBarcode": [ + "33433084149602" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (July 6-Aug. 17, 1957)", + "urn:barcode:33433084149610" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (July 6-Aug. 17, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (July 6-Aug. 17, 1957)" + ], + "uri": "i17474644", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (July 6-Aug. 17, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149610" + } + ], + "enumerationChronology": [ + "v. 33 (July 6-Aug. 17, 1957)" + ], + "idBarcode": [ + "33433084149610" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Jan. 11-Feb. 15, 1958)", + "urn:barcode:33433084149669" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Jan. 11-Feb. 15, 1958)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Jan. 11-Feb. 15, 1958)" + ], + "uri": "i17474649", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Jan. 11-Feb. 15, 1958)" + }, + { + "type": "bf:Barcode", + "value": "33433084149669" + } + ], + "enumerationChronology": [ + "v. 33 (Jan. 11-Feb. 15, 1958)" + ], + "idBarcode": [ + "33433084149669" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Feb. 23-Mar. 30, 1957)", + "urn:barcode:33433084149594" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Feb. 23-Mar. 30, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Feb. 23-Mar. 30, 1957)" + ], + "uri": "i17474642", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Feb. 23-Mar. 30, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149594" + } + ], + "enumerationChronology": [ + "v. 33 (Feb. 23-Mar. 30, 1957)" + ], + "idBarcode": [ + "33433084149594" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 33 (Apr. 6- May 18, 1957)", + "urn:barcode:33433104098797" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000033 (Apr. 6- May 18, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 33-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 33 (Apr. 6- May 18, 1957)" + ], + "uri": "i29250588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 33 (Apr. 6- May 18, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433104098797" + } + ], + "enumerationChronology": [ + "v. 33 (Apr. 6- May 18, 1957)" + ], + "idBarcode": [ + "33433104098797" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Oct. 6-Nov. 10, 1956)", + "urn:barcode:33433084149560" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Oct. 6-Nov. 10, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Oct. 6-Nov. 10, 1956)" + ], + "uri": "i17474639", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Oct. 6-Nov. 10, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149560" + } + ], + "enumerationChronology": [ + "v. 32 (Oct. 6-Nov. 10, 1956)" + ], + "idBarcode": [ + "33433084149560" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Nov. 17-Dec. 29, 1956)", + "urn:barcode:33433084149578" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Nov. 17-Dec. 29, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Nov. 17-Dec. 29, 1956)" + ], + "uri": "i17474640", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Nov. 17-Dec. 29, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149578" + } + ], + "enumerationChronology": [ + "v. 32 (Nov. 17-Dec. 29, 1956)" + ], + "idBarcode": [ + "33433084149578" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (May 26-June 30, 1956)", + "urn:barcode:33433084149537" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (May 26-June 30, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (May 26-June 30, 1956)" + ], + "uri": "i17474636", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (May 26-June 30, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149537" + } + ], + "enumerationChronology": [ + "v. 32 (May 26-June 30, 1956)" + ], + "idBarcode": [ + "33433084149537" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (July 7-Aug. 18, 1956)", + "urn:barcode:33433084149545" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (July 7-Aug. 18, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (July 7-Aug. 18, 1956)" + ], + "uri": "i17474637", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (July 7-Aug. 18, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149545" + } + ], + "enumerationChronology": [ + "v. 32 (July 7-Aug. 18, 1956)" + ], + "idBarcode": [ + "33433084149545" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Jan. 5-Feb. 16, 1957)", + "urn:barcode:33433084149586" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Jan. 5-Feb. 16, 1957)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Jan. 5-Feb. 16, 1957)" + ], + "uri": "i17474641", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Jan. 5-Feb. 16, 1957)" + }, + { + "type": "bf:Barcode", + "value": "33433084149586" + } + ], + "enumerationChronology": [ + "v. 32 (Jan. 5-Feb. 16, 1957)" + ], + "idBarcode": [ + "33433084149586" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Feb. 18-Mar. 31, 1956)", + "urn:barcode:33433084149511" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Feb. 18-Mar. 31, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Feb. 18-Mar. 31, 1956)" + ], + "uri": "i17474634", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Feb. 18-Mar. 31, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149511" + } + ], + "enumerationChronology": [ + "v. 32 (Feb. 18-Mar. 31, 1956)" + ], + "idBarcode": [ + "33433084149511" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Aug. 25-Sept. 29, 1956)", + "urn:barcode:33433084149552" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Aug. 25-Sept. 29, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Aug. 25-Sept. 29, 1956)" + ], + "uri": "i17474638", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Aug. 25-Sept. 29, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149552" + } + ], + "enumerationChronology": [ + "v. 32 (Aug. 25-Sept. 29, 1956)" + ], + "idBarcode": [ + "33433084149552" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 32 (Apr. 7-May 19, 1956)", + "urn:barcode:33433084149529" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000032 (Apr. 7-May 19, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 32-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 32 (Apr. 7-May 19, 1956)" + ], + "uri": "i17474635", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 32 (Apr. 7-May 19, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149529" + } + ], + "enumerationChronology": [ + "v. 32 (Apr. 7-May 19, 1956)" + ], + "idBarcode": [ + "33433084149529" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Oct. 1-Nov. 12 1955)", + "urn:barcode:33433076830482" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (Oct. 1-Nov. 12 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (Oct. 1-Nov. 12 1955)" + ], + "uri": "i17474444", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (Oct. 1-Nov. 12 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433076830482" + } + ], + "enumerationChronology": [ + "v. 31 (Oct. 1-Nov. 12 1955)" + ], + "idBarcode": [ + "33433076830482" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (May 21-June 25, 1955)", + "urn:barcode:33433084149461" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (May 21-June 25, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (May 21-June 25, 1955)" + ], + "uri": "i17474629", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (May 21-June 25, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149461" + } + ], + "enumerationChronology": [ + "v. 31 (May 21-June 25, 1955)" + ], + "idBarcode": [ + "33433084149461" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (July 12-Aug. 13, 1955)", + "urn:barcode:33433084149479" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (July 12-Aug. 13, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (July 12-Aug. 13, 1955)" + ], + "uri": "i17474630", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (July 12-Aug. 13, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149479" + } + ], + "enumerationChronology": [ + "v. 31 (July 12-Aug. 13, 1955)" + ], + "idBarcode": [ + "33433084149479" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Jan.7-Feb. 11, 1956)", + "urn:barcode:33433084149495" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (Jan.7-Feb. 11, 1956)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (Jan.7-Feb. 11, 1956)" + ], + "uri": "i17474633", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (Jan.7-Feb. 11, 1956)" + }, + { + "type": "bf:Barcode", + "value": "33433084149495" + } + ], + "enumerationChronology": [ + "v. 31 (Jan.7-Feb. 11, 1956)" + ], + "idBarcode": [ + "33433084149495" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Feb. 19-Mar. 26, 1955)", + "urn:barcode:33433084149453" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (Feb. 19-Mar. 26, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (Feb. 19-Mar. 26, 1955)" + ], + "uri": "i17474628", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (Feb. 19-Mar. 26, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149453" + } + ], + "enumerationChronology": [ + "v. 31 (Feb. 19-Mar. 26, 1955)" + ], + "idBarcode": [ + "33433084149453" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 (Aug. 20-Sept. 24, 1955)", + "urn:barcode:33433084149487" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 (Aug. 20-Sept. 24, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 (Aug. 20-Sept. 24, 1955)" + ], + "uri": "i17474631", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 (Aug. 20-Sept. 24, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149487" + } + ], + "enumerationChronology": [ + "v. 31 (Aug. 20-Sept. 24, 1955)" + ], + "idBarcode": [ + "33433084149487" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31 ((Apr. 2-May 14, 1955)", + "urn:barcode:33433084149503" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031 ((Apr. 2-May 14, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31 ((Apr. 2-May 14, 1955)" + ], + "uri": "i17474632", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31 ((Apr. 2-May 14, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149503" + } + ], + "enumerationChronology": [ + "v. 31 ((Apr. 2-May 14, 1955)" + ], + "idBarcode": [ + "33433084149503" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 31", + "urn:barcode:33433080030624" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000031", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 31-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 31" + ], + "uri": "i17474452", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 31" + }, + { + "type": "bf:Barcode", + "value": "33433080030624" + } + ], + "enumerationChronology": [ + "v. 31" + ], + "idBarcode": [ + "33433080030624" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Oct. 2-Nov. 13, 1954)", + "urn:barcode:33433084149438" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Oct. 2-Nov. 13, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Oct. 2-Nov. 13, 1954)" + ], + "uri": "i17474626", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Oct. 2-Nov. 13, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149438" + } + ], + "enumerationChronology": [ + "v. 30 (Oct. 2-Nov. 13, 1954)" + ], + "idBarcode": [ + "33433084149438" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Nov. 20-Dec. 25, 1954)", + "urn:barcode:33433084149420" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Nov. 20-Dec. 25, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Nov. 20-Dec. 25, 1954)" + ], + "uri": "i17474625", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Nov. 20-Dec. 25, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149420" + } + ], + "enumerationChronology": [ + "v. 30 (Nov. 20-Dec. 25, 1954)" + ], + "idBarcode": [ + "33433084149420" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (May 22-June 26, 1954)", + "urn:barcode:33433084149396" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (May 22-June 26, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (May 22-June 26, 1954)" + ], + "uri": "i17474622", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (May 22-June 26, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149396" + } + ], + "enumerationChronology": [ + "v. 30 (May 22-June 26, 1954)" + ], + "idBarcode": [ + "33433084149396" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (July 3-Aug. 14, 1954)", + "urn:barcode:33433084149404" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (July 3-Aug. 14, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (July 3-Aug. 14, 1954)" + ], + "uri": "i17474623", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (July 3-Aug. 14, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149404" + } + ], + "enumerationChronology": [ + "v. 30 (July 3-Aug. 14, 1954)" + ], + "idBarcode": [ + "33433084149404" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Jan. 1-Feb. 12, 1955)", + "urn:barcode:33433084149446" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Jan. 1-Feb. 12, 1955)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Jan. 1-Feb. 12, 1955)" + ], + "uri": "i17474627", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Jan. 1-Feb. 12, 1955)" + }, + { + "type": "bf:Barcode", + "value": "33433084149446" + } + ], + "enumerationChronology": [ + "v. 30 (Jan. 1-Feb. 12, 1955)" + ], + "idBarcode": [ + "33433084149446" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Feb. 20-Mar. 27, 1954)", + "urn:barcode:33433084149388" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Feb. 20-Mar. 27, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Feb. 20-Mar. 27, 1954)" + ], + "uri": "i17474621", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Feb. 20-Mar. 27, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149388" + } + ], + "enumerationChronology": [ + "v. 30 (Feb. 20-Mar. 27, 1954)" + ], + "idBarcode": [ + "33433084149388" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Aug. 21-Sept. 25, 1954)", + "urn:barcode:33433084149412" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Aug. 21-Sept. 25, 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Aug. 21-Sept. 25, 1954)" + ], + "uri": "i17474624", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Aug. 21-Sept. 25, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433084149412" + } + ], + "enumerationChronology": [ + "v. 30 (Aug. 21-Sept. 25, 1954)" + ], + "idBarcode": [ + "33433084149412" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 30 (Apr. 3-May 15 1954)", + "urn:barcode:33433078258260" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000030 (Apr. 3-May 15 1954)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 30-1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 30 (Apr. 3-May 15 1954)" + ], + "uri": "i16700890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 30 (Apr. 3-May 15 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433078258260" + } + ], + "enumerationChronology": [ + "v. 30 (Apr. 3-May 15 1954)" + ], + "idBarcode": [ + "33433078258260" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Oct. 17-Nov. 28, 1953)", + "urn:barcode:33433084149370" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (Oct. 17-Nov. 28, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (Oct. 17-Nov. 28, 1953)" + ], + "uri": "i17474620", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (Oct. 17-Nov. 28, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149370" + } + ], + "enumerationChronology": [ + "v. 29 (Oct. 17-Nov. 28, 1953)" + ], + "idBarcode": [ + "33433084149370" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (May 23-July 4, 1953)", + "urn:barcode:33433084149347" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (May 23-July 4, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (May 23-July 4, 1953)" + ], + "uri": "i17474617", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (May 23-July 4, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149347" + } + ], + "enumerationChronology": [ + "v. 29 (May 23-July 4, 1953)" + ], + "idBarcode": [ + "33433084149347" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (July 11-Aug. 22, 1953)", + "urn:barcode:33433084149354" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (July 11-Aug. 22, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (July 11-Aug. 22, 1953)" + ], + "uri": "i17474618", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (July 11-Aug. 22, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149354" + } + ], + "enumerationChronology": [ + "v. 29 (July 11-Aug. 22, 1953)" + ], + "idBarcode": [ + "33433084149354" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Feb. 21-Mar. 28, 1953)", + "urn:barcode:33433084149321" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (Feb. 21-Mar. 28, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (Feb. 21-Mar. 28, 1953)" + ], + "uri": "i17474615", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (Feb. 21-Mar. 28, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149321" + } + ], + "enumerationChronology": [ + "v. 29 (Feb. 21-Mar. 28, 1953)" + ], + "idBarcode": [ + "33433084149321" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Dec. 5, 1953-Feb. 13, 1954)", + "urn:barcode:33433077598997" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (Dec. 5, 1953-Feb. 13, 1954)", + "dateRange": [ + { + "gte": "1953", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (Dec. 5, 1953-Feb. 13, 1954)" + ], + "uri": "i17474448", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (Dec. 5, 1953-Feb. 13, 1954)" + }, + { + "type": "bf:Barcode", + "value": "33433077598997" + } + ], + "enumerationChronology": [ + "v. 29 (Dec. 5, 1953-Feb. 13, 1954)" + ], + "idBarcode": [ + "33433077598997" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Aug. 27-Oct. 10, 1953)", + "urn:barcode:33433084149362" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (Aug. 27-Oct. 10, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (Aug. 27-Oct. 10, 1953)" + ], + "uri": "i17474619", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (Aug. 27-Oct. 10, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149362" + } + ], + "enumerationChronology": [ + "v. 29 (Aug. 27-Oct. 10, 1953)" + ], + "idBarcode": [ + "33433084149362" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 29 (Apr. 4-May 16, 1953)", + "urn:barcode:33433084149339" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000029 (Apr. 4-May 16, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 29-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 29 (Apr. 4-May 16, 1953)" + ], + "uri": "i17474616", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 29 (Apr. 4-May 16, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149339" + } + ], + "enumerationChronology": [ + "v. 29 (Apr. 4-May 16, 1953)" + ], + "idBarcode": [ + "33433084149339" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (may 24-July 12, 1952)", + "urn:barcode:33433084149263" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (may 24-July 12, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (may 24-July 12, 1952)" + ], + "uri": "i17474609", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (may 24-July 12, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149263" + } + ], + "enumerationChronology": [ + "v. 28 (may 24-July 12, 1952)" + ], + "idBarcode": [ + "33433084149263" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Oct. 18-Nov. 22, 1952)", + "urn:barcode:33433084149297" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Oct. 18-Nov. 22, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Oct. 18-Nov. 22, 1952)" + ], + "uri": "i17474612", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Oct. 18-Nov. 22, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149297" + } + ], + "enumerationChronology": [ + "v. 28 (Oct. 18-Nov. 22, 1952)" + ], + "idBarcode": [ + "33433084149297" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Nov. 29-Dec. 27, 1952)", + "urn:barcode:33433084149305" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Nov. 29-Dec. 27, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Nov. 29-Dec. 27, 1952)" + ], + "uri": "i17474613", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Nov. 29-Dec. 27, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149305" + } + ], + "enumerationChronology": [ + "v. 28 (Nov. 29-Dec. 27, 1952)" + ], + "idBarcode": [ + "33433084149305" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (July 19-Aug. 23, 1952)", + "urn:barcode:33433084149271" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (July 19-Aug. 23, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (July 19-Aug. 23, 1952)" + ], + "uri": "i17474610", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (July 19-Aug. 23, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149271" + } + ], + "enumerationChronology": [ + "v. 28 (July 19-Aug. 23, 1952)" + ], + "idBarcode": [ + "33433084149271" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Jan. 3-Feb. 14, 1953)", + "urn:barcode:33433084149313" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Jan. 3-Feb. 14, 1953)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Jan. 3-Feb. 14, 1953)" + ], + "uri": "i17474614", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Jan. 3-Feb. 14, 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433084149313" + } + ], + "enumerationChronology": [ + "v. 28 (Jan. 3-Feb. 14, 1953)" + ], + "idBarcode": [ + "33433084149313" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Feb. 23-Mar. 29, 1952)", + "urn:barcode:33433084149248" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Feb. 23-Mar. 29, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Feb. 23-Mar. 29, 1952)" + ], + "uri": "i17474607", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Feb. 23-Mar. 29, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149248" + } + ], + "enumerationChronology": [ + "v. 28 (Feb. 23-Mar. 29, 1952)" + ], + "idBarcode": [ + "33433084149248" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Aug. 30-oCT. 11, 1952)", + "urn:barcode:33433084149289" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Aug. 30-oCT. 11, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Aug. 30-oCT. 11, 1952)" + ], + "uri": "i17474611", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Aug. 30-oCT. 11, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149289" + } + ], + "enumerationChronology": [ + "v. 28 (Aug. 30-oCT. 11, 1952)" + ], + "idBarcode": [ + "33433084149289" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 28 (Apr.5-May 17, 1952)", + "urn:barcode:33433084149255" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000028 (Apr.5-May 17, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 28-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 28 (Apr.5-May 17, 1952)" + ], + "uri": "i17474608", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 28 (Apr.5-May 17, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149255" + } + ], + "enumerationChronology": [ + "v. 28 (Apr.5-May 17, 1952)" + ], + "idBarcode": [ + "33433084149255" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Sept. 1-Oct. 6, 1951)", + "urn:barcode:33433078744574" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Sept. 1-Oct. 6, 1951)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Sept. 1-Oct. 6, 1951)" + ], + "uri": "i16700898", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Sept. 1-Oct. 6, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433078744574" + } + ], + "enumerationChronology": [ + "v. 27 (Sept. 1-Oct. 6, 1951)" + ], + "idBarcode": [ + "33433078744574" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Oct. 13-Nov. 24, 1951)", + "urn:barcode:33433084149214" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Oct. 13-Nov. 24, 1951)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Oct. 13-Nov. 24, 1951)" + ], + "uri": "i17474604", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Oct. 13-Nov. 24, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433084149214" + } + ], + "enumerationChronology": [ + "v. 27 (Oct. 13-Nov. 24, 1951)" + ], + "idBarcode": [ + "33433084149214" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (May 19-June 30, 1951)", + "urn:barcode:33433084149198" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (May 19-June 30, 1951)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (May 19-June 30, 1951)" + ], + "uri": "i17474602", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (May 19-June 30, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433084149198" + } + ], + "enumerationChronology": [ + "v. 27 (May 19-June 30, 1951)" + ], + "idBarcode": [ + "33433084149198" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Jan. 12-Feb. 16, 1952)", + "urn:barcode:33433084149230" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Jan. 12-Feb. 16, 1952)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Jan. 12-Feb. 16, 1952)" + ], + "uri": "i17474606", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Jan. 12-Feb. 16, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149230" + } + ], + "enumerationChronology": [ + "v. 27 (Jan. 12-Feb. 16, 1952)" + ], + "idBarcode": [ + "33433084149230" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Feb. 17-Mar, 31, 1951)", + "urn:barcode:33433084149172" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Feb. 17-Mar, 31, 1951)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Feb. 17-Mar, 31, 1951)" + ], + "uri": "i17474600", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Feb. 17-Mar, 31, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433084149172" + } + ], + "enumerationChronology": [ + "v. 27 (Feb. 17-Mar, 31, 1951)" + ], + "idBarcode": [ + "33433084149172" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Dec. 1, 1951-Jan. 5, 1952)", + "urn:barcode:33433084149222" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Dec. 1, 1951-Jan. 5, 1952)", + "dateRange": [ + { + "gte": "1951", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Dec. 1, 1951-Jan. 5, 1952)" + ], + "uri": "i17474605", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Dec. 1, 1951-Jan. 5, 1952)" + }, + { + "type": "bf:Barcode", + "value": "33433084149222" + } + ], + "enumerationChronology": [ + "v. 27 (Dec. 1, 1951-Jan. 5, 1952)" + ], + "idBarcode": [ + "33433084149222" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 27 (Apr.5-May 12, 1951)", + "urn:barcode:33433084149180" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000027 (Apr.5-May 12, 1951)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 27-1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 27 (Apr.5-May 12, 1951)" + ], + "uri": "i17474601", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 27 (Apr.5-May 12, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433084149180" + } + ], + "enumerationChronology": [ + "v. 27 (Apr.5-May 12, 1951)" + ], + "idBarcode": [ + "33433084149180" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Sept. 2-Oct. 7, 1950)", + "urn:barcode:33433084149156" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (Sept. 2-Oct. 7, 1950)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (Sept. 2-Oct. 7, 1950)" + ], + "uri": "i17474598", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (Sept. 2-Oct. 7, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149156" + } + ], + "enumerationChronology": [ + "v. 26 (Sept. 2-Oct. 7, 1950)" + ], + "idBarcode": [ + "33433084149156" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (May 27-July 8, 1950)", + "urn:barcode:33433084149131" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (May 27-July 8, 1950)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (May 27-July 8, 1950)" + ], + "uri": "i17474596", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (May 27-July 8, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149131" + } + ], + "enumerationChronology": [ + "v. 26 (May 27-July 8, 1950)" + ], + "idBarcode": [ + "33433084149131" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (July 15-Aug. 26, 1950)", + "urn:barcode:33433084149149" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (July 15-Aug. 26, 1950)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (July 15-Aug. 26, 1950)" + ], + "uri": "i17474597", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (July 15-Aug. 26, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149149" + } + ], + "enumerationChronology": [ + "v. 26 (July 15-Aug. 26, 1950)" + ], + "idBarcode": [ + "33433084149149" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Feb. 25-Apr. 8, 1950)", + "urn:barcode:33433084149115" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (Feb. 25-Apr. 8, 1950)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (Feb. 25-Apr. 8, 1950)" + ], + "uri": "i17474594", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (Feb. 25-Apr. 8, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149115" + } + ], + "enumerationChronology": [ + "v. 26 (Feb. 25-Apr. 8, 1950)" + ], + "idBarcode": [ + "33433084149115" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Dec. 9, 1950-Feb. 10, 1951)", + "urn:barcode:33433084149164" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (Dec. 9, 1950-Feb. 10, 1951)", + "dateRange": [ + { + "gte": "1950", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (Dec. 9, 1950-Feb. 10, 1951)" + ], + "uri": "i17474599", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (Dec. 9, 1950-Feb. 10, 1951)" + }, + { + "type": "bf:Barcode", + "value": "33433084149164" + } + ], + "enumerationChronology": [ + "v. 26 (Dec. 9, 1950-Feb. 10, 1951)" + ], + "idBarcode": [ + "33433084149164" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 26 (Apr. 15-May 20, 1950)", + "urn:barcode:33433084149123" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000026 (Apr. 15-May 20, 1950)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 26-1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 26 (Apr. 15-May 20, 1950)" + ], + "uri": "i17474595", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 26 (Apr. 15-May 20, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149123" + } + ], + "enumerationChronology": [ + "v. 26 (Apr. 15-May 20, 1950)" + ], + "idBarcode": [ + "33433084149123" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Sept. 17-Oct. 22, 1949)", + "urn:barcode:33433084149081" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (Sept. 17-Oct. 22, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (Sept. 17-Oct. 22, 1949)" + ], + "uri": "i17474591", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (Sept. 17-Oct. 22, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149081" + } + ], + "enumerationChronology": [ + "v. 25 (Sept. 17-Oct. 22, 1949)" + ], + "idBarcode": [ + "33433084149081" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Oct. 29-Dec. 10, 1949)", + "urn:barcode:33433084149099" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (Oct. 29-Dec. 10, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (Oct. 29-Dec. 10, 1949)" + ], + "uri": "i17474592", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (Oct. 29-Dec. 10, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149099" + } + ], + "enumerationChronology": [ + "v. 25 (Oct. 29-Dec. 10, 1949)" + ], + "idBarcode": [ + "33433084149099" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (June 11-July 16, 1949)", + "urn:barcode:33433084149065" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (June 11-July 16, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (June 11-July 16, 1949)" + ], + "uri": "i17474589", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (June 11-July 16, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149065" + } + ], + "enumerationChronology": [ + "v. 25 (June 11-July 16, 1949)" + ], + "idBarcode": [ + "33433084149065" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (July 23-Sept. 10, 1949)", + "urn:barcode:33433084149073" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (July 23-Sept. 10, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (July 23-Sept. 10, 1949)" + ], + "uri": "i17474590", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (July 23-Sept. 10, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149073" + } + ], + "enumerationChronology": [ + "v. 25 (July 23-Sept. 10, 1949)" + ], + "idBarcode": [ + "33433084149073" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Feb. 26-Apr. 16, 1949)", + "urn:barcode:33433084149040" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (Feb. 26-Apr. 16, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (Feb. 26-Apr. 16, 1949)" + ], + "uri": "i17474587", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (Feb. 26-Apr. 16, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149040" + } + ], + "enumerationChronology": [ + "v. 25 (Feb. 26-Apr. 16, 1949)" + ], + "idBarcode": [ + "33433084149040" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Dec. 17, 1949-Feb. 18, 1950)", + "urn:barcode:33433084149107" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (Dec. 17, 1949-Feb. 18, 1950)", + "dateRange": [ + { + "gte": "1949", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (Dec. 17, 1949-Feb. 18, 1950)" + ], + "uri": "i17474593", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (Dec. 17, 1949-Feb. 18, 1950)" + }, + { + "type": "bf:Barcode", + "value": "33433084149107" + } + ], + "enumerationChronology": [ + "v. 25 (Dec. 17, 1949-Feb. 18, 1950)" + ], + "idBarcode": [ + "33433084149107" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 25 (Apr. 23-June 4, 1949)", + "urn:barcode:33433084149057" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000025 (Apr. 23-June 4, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 25-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 25 (Apr. 23-June 4, 1949)" + ], + "uri": "i17474588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 25 (Apr. 23-June 4, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149057" + } + ], + "enumerationChronology": [ + "v. 25 (Apr. 23-June 4, 1949)" + ], + "idBarcode": [ + "33433084149057" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (sept. 4-Oct. 16, 1948)", + "urn:barcode:33433084149008" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (sept. 4-Oct. 16, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (sept. 4-Oct. 16, 1948)" + ], + "uri": "i17474583", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (sept. 4-Oct. 16, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084149008" + } + ], + "enumerationChronology": [ + "v. 24 (sept. 4-Oct. 16, 1948)" + ], + "idBarcode": [ + "33433084149008" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Oct. 23-Nov. 27, 1948)", + "urn:barcode:33433084149016" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (Oct. 23-Nov. 27, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (Oct. 23-Nov. 27, 1948)" + ], + "uri": "i17474584", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (Oct. 23-Nov. 27, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084149016" + } + ], + "enumerationChronology": [ + "v. 24 (Oct. 23-Nov. 27, 1948)" + ], + "idBarcode": [ + "33433084149016" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (May 29-July 17, 1948)", + "urn:barcode:33433084148984" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (May 29-July 17, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (May 29-July 17, 1948)" + ], + "uri": "i17474581", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (May 29-July 17, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148984" + } + ], + "enumerationChronology": [ + "v. 24 (May 29-July 17, 1948)" + ], + "idBarcode": [ + "33433084148984" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (July 24-Aug. 28, 1948)", + "urn:barcode:33433084148992" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (July 24-Aug. 28, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (July 24-Aug. 28, 1948)" + ], + "uri": "i17474582", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (July 24-Aug. 28, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148992" + } + ], + "enumerationChronology": [ + "v. 24 (July 24-Aug. 28, 1948)" + ], + "idBarcode": [ + "33433084148992" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Jan.22-Feb. 19, 1949)", + "urn:barcode:33433084149032" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (Jan.22-Feb. 19, 1949)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (Jan.22-Feb. 19, 1949)" + ], + "uri": "i17474586", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (Jan.22-Feb. 19, 1949)" + }, + { + "type": "bf:Barcode", + "value": "33433084149032" + } + ], + "enumerationChronology": [ + "v. 24 (Jan.22-Feb. 19, 1949)" + ], + "idBarcode": [ + "33433084149032" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Dec. 4, 1948-Jan. 15, 1949", + "urn:barcode:33433084149024" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (Dec. 4, 1948-Jan. 15, 1949", + "dateRange": [ + { + "gte": "1948", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (Dec. 4, 1948-Jan. 15, 1949" + ], + "uri": "i17474585", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (Dec. 4, 1948-Jan. 15, 1949" + }, + { + "type": "bf:Barcode", + "value": "33433084149024" + } + ], + "enumerationChronology": [ + "v. 24 (Dec. 4, 1948-Jan. 15, 1949" + ], + "idBarcode": [ + "33433084149024" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 24 (Apr. 10-May 22, 1948)", + "urn:barcode:33433084148976" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000024 (Apr. 10-May 22, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 24-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 24 (Apr. 10-May 22, 1948)" + ], + "uri": "i17474580", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 24 (Apr. 10-May 22, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148976" + } + ], + "enumerationChronology": [ + "v. 24 (Apr. 10-May 22, 1948)" + ], + "idBarcode": [ + "33433084148976" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Oct. 11-Nov. 15, 1947)", + "urn:barcode:33433084148935" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Oct. 11-Nov. 15, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Oct. 11-Nov. 15, 1947)" + ], + "uri": "i17474576", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Oct. 11-Nov. 15, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148935" + } + ], + "enumerationChronology": [ + "v. 23 (Oct. 11-Nov. 15, 1947)" + ], + "idBarcode": [ + "33433084148935" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Nov. 22, 1947-Jan.3, 1948)", + "urn:barcode:33433084148943" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Nov. 22, 1947-Jan.3, 1948)", + "dateRange": [ + { + "gte": "1947", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Nov. 22, 1947-Jan.3, 1948)" + ], + "uri": "i17474577", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Nov. 22, 1947-Jan.3, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148943" + } + ], + "enumerationChronology": [ + "v. 23 (Nov. 22, 1947-Jan.3, 1948)" + ], + "idBarcode": [ + "33433084148943" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (May 24-July 5, 1947)", + "urn:barcode:33433084148901" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (May 24-July 5, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (May 24-July 5, 1947)" + ], + "uri": "i17474573", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (May 24-July 5, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148901" + } + ], + "enumerationChronology": [ + "v. 23 (May 24-July 5, 1947)" + ], + "idBarcode": [ + "33433084148901" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (July 12-Aug. 16, 1947)", + "urn:barcode:33433084148919" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (July 12-Aug. 16, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (July 12-Aug. 16, 1947)" + ], + "uri": "i17474574", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (July 12-Aug. 16, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148919" + } + ], + "enumerationChronology": [ + "v. 23 (July 12-Aug. 16, 1947)" + ], + "idBarcode": [ + "33433084148919" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Jan. 10-Feb. 21, 1948)", + "urn:barcode:33433084148950" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Jan. 10-Feb. 21, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Jan. 10-Feb. 21, 1948)" + ], + "uri": "i17474578", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Jan. 10-Feb. 21, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148950" + } + ], + "enumerationChronology": [ + "v. 23 (Jan. 10-Feb. 21, 1948)" + ], + "idBarcode": [ + "33433084148950" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Feb. 28-Apr. 3, 1948)", + "urn:barcode:33433084148968" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Feb. 28-Apr. 3, 1948)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Feb. 28-Apr. 3, 1948)" + ], + "uri": "i17474579", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Feb. 28-Apr. 3, 1948)" + }, + { + "type": "bf:Barcode", + "value": "33433084148968" + } + ], + "enumerationChronology": [ + "v. 23 (Feb. 28-Apr. 3, 1948)" + ], + "idBarcode": [ + "33433084148968" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Feb. 22-Apr. 5, 1947)", + "urn:barcode:33433084148885" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Feb. 22-Apr. 5, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Feb. 22-Apr. 5, 1947)" + ], + "uri": "i17474571", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Feb. 22-Apr. 5, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148885" + } + ], + "enumerationChronology": [ + "v. 23 (Feb. 22-Apr. 5, 1947)" + ], + "idBarcode": [ + "33433084148885" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Aug. 23-Oct. 4, 1947)", + "urn:barcode:33433084148927" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Aug. 23-Oct. 4, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Aug. 23-Oct. 4, 1947)" + ], + "uri": "i17474575", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Aug. 23-Oct. 4, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148927" + } + ], + "enumerationChronology": [ + "v. 23 (Aug. 23-Oct. 4, 1947)" + ], + "idBarcode": [ + "33433084148927" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 23 (Apr. 12-May 17, 1947)", + "urn:barcode:33433084148893" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000023 (Apr. 12-May 17, 1947)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 23-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 23 (Apr. 12-May 17, 1947)" + ], + "uri": "i17474572", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 23 (Apr. 12-May 17, 1947)" + }, + { + "type": "bf:Barcode", + "value": "33433084148893" + } + ], + "enumerationChronology": [ + "v. 23 (Apr. 12-May 17, 1947)" + ], + "idBarcode": [ + "33433084148893" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Oct. 5-Nov. 9, 1946)", + "urn:barcode:33433084148851" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Oct. 5-Nov. 9, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Oct. 5-Nov. 9, 1946)" + ], + "uri": "i17474568", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Oct. 5-Nov. 9, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148851" + } + ], + "enumerationChronology": [ + "v. 22 (Oct. 5-Nov. 9, 1946)" + ], + "idBarcode": [ + "33433084148851" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Nov. 16-Dec. 28, 1946)", + "urn:barcode:33433084148869" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Nov. 16-Dec. 28, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Nov. 16-Dec. 28, 1946)" + ], + "uri": "i17474569", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Nov. 16-Dec. 28, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148869" + } + ], + "enumerationChronology": [ + "v. 22 (Nov. 16-Dec. 28, 1946)" + ], + "idBarcode": [ + "33433084148869" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (May 18-June 29, 1946)", + "urn:barcode:33433084148828" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (May 18-June 29, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (May 18-June 29, 1946)" + ], + "uri": "i17474565", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (May 18-June 29, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148828" + } + ], + "enumerationChronology": [ + "v. 22 (May 18-June 29, 1946)" + ], + "idBarcode": [ + "33433084148828" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (July 6-Aug. 10, 1946)", + "urn:barcode:33433084148836" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (July 6-Aug. 10, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (July 6-Aug. 10, 1946)" + ], + "uri": "i17474566", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (July 6-Aug. 10, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148836" + } + ], + "enumerationChronology": [ + "v. 22 (July 6-Aug. 10, 1946)" + ], + "idBarcode": [ + "33433084148836" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Jan. 4-Feb. 15, 1947", + "urn:barcode:33433084148877" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Jan. 4-Feb. 15, 1947", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Jan. 4-Feb. 15, 1947" + ], + "uri": "i17474570", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Jan. 4-Feb. 15, 1947" + }, + { + "type": "bf:Barcode", + "value": "33433084148877" + } + ], + "enumerationChronology": [ + "v. 22 (Jan. 4-Feb. 15, 1947" + ], + "idBarcode": [ + "33433084148877" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Feb. 16-Mar. 30, 1946)", + "urn:barcode:33433084148802" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Feb. 16-Mar. 30, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Feb. 16-Mar. 30, 1946)" + ], + "uri": "i17474563", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Feb. 16-Mar. 30, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148802" + } + ], + "enumerationChronology": [ + "v. 22 (Feb. 16-Mar. 30, 1946)" + ], + "idBarcode": [ + "33433084148802" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Aug. 17-Sept. 28, 1946)", + "urn:barcode:33433084148844" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Aug. 17-Sept. 28, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Aug. 17-Sept. 28, 1946)" + ], + "uri": "i17474567", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Aug. 17-Sept. 28, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148844" + } + ], + "enumerationChronology": [ + "v. 22 (Aug. 17-Sept. 28, 1946)" + ], + "idBarcode": [ + "33433084148844" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 22 (Apr. 6-May 11, 1946)", + "urn:barcode:33433084148810" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000022 (Apr. 6-May 11, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 22-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 22 (Apr. 6-May 11, 1946)" + ], + "uri": "i17474564", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 22 (Apr. 6-May 11, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148810" + } + ], + "enumerationChronology": [ + "v. 22 (Apr. 6-May 11, 1946)" + ], + "idBarcode": [ + "33433084148810" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (aUG. 18-sEPT. 29, 1945)", + "urn:barcode:33433084148760" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (aUG. 18-sEPT. 29, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (aUG. 18-sEPT. 29, 1945)" + ], + "uri": "i17474559", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (aUG. 18-sEPT. 29, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148760" + } + ], + "enumerationChronology": [ + "v. 21 (aUG. 18-sEPT. 29, 1945)" + ], + "idBarcode": [ + "33433084148760" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Oct. 6-Nov.17, 1945)", + "urn:barcode:33433084148778" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (Oct. 6-Nov.17, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (Oct. 6-Nov.17, 1945)" + ], + "uri": "i17474560", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (Oct. 6-Nov.17, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148778" + } + ], + "enumerationChronology": [ + "v. 21 (Oct. 6-Nov.17, 1945)" + ], + "idBarcode": [ + "33433084148778" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Nov. 24-Dec. 29, 1945)", + "urn:barcode:33433084148786" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (Nov. 24-Dec. 29, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (Nov. 24-Dec. 29, 1945)" + ], + "uri": "i17474561", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (Nov. 24-Dec. 29, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148786" + } + ], + "enumerationChronology": [ + "v. 21 (Nov. 24-Dec. 29, 1945)" + ], + "idBarcode": [ + "33433084148786" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (May 19-June 30, 1945)", + "urn:barcode:33433084148745" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (May 19-June 30, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (May 19-June 30, 1945)" + ], + "uri": "i17474557", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (May 19-June 30, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148745" + } + ], + "enumerationChronology": [ + "v. 21 (May 19-June 30, 1945)" + ], + "idBarcode": [ + "33433084148745" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (July 7-Aug. 11, 1945)", + "urn:barcode:33433084148752" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (July 7-Aug. 11, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (July 7-Aug. 11, 1945)" + ], + "uri": "i17474558", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (July 7-Aug. 11, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148752" + } + ], + "enumerationChronology": [ + "v. 21 (July 7-Aug. 11, 1945)" + ], + "idBarcode": [ + "33433084148752" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Jan. 5-Feb. 9, 1946)", + "urn:barcode:33433084148794" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (Jan. 5-Feb. 9, 1946)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (Jan. 5-Feb. 9, 1946)" + ], + "uri": "i17474562", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (Jan. 5-Feb. 9, 1946)" + }, + { + "type": "bf:Barcode", + "value": "33433084148794" + } + ], + "enumerationChronology": [ + "v. 21 (Jan. 5-Feb. 9, 1946)" + ], + "idBarcode": [ + "33433084148794" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Feb, 17-Mar. 31, 1945)", + "urn:barcode:33433084148729" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (Feb, 17-Mar. 31, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (Feb, 17-Mar. 31, 1945)" + ], + "uri": "i17474555", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (Feb, 17-Mar. 31, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148729" + } + ], + "enumerationChronology": [ + "v. 21 (Feb, 17-Mar. 31, 1945)" + ], + "idBarcode": [ + "33433084148729" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 21 (Apr. 7-May 12, 1945)", + "urn:barcode:33433084148737" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000021 (Apr. 7-May 12, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 21-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 21 (Apr. 7-May 12, 1945)" + ], + "uri": "i17474556", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 21 (Apr. 7-May 12, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148737" + } + ], + "enumerationChronology": [ + "v. 21 (Apr. 7-May 12, 1945)" + ], + "idBarcode": [ + "33433084148737" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Oct. 7-Nov. 11, 1944)", + "urn:barcode:33433084148695" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (Oct. 7-Nov. 11, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (Oct. 7-Nov. 11, 1944)" + ], + "uri": "i17474552", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (Oct. 7-Nov. 11, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148695" + } + ], + "enumerationChronology": [ + "v. 20 (Oct. 7-Nov. 11, 1944)" + ], + "idBarcode": [ + "33433084148695" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Nov. 18-Dec. 30, 1944)", + "urn:barcode:33433084148703" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (Nov. 18-Dec. 30, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (Nov. 18-Dec. 30, 1944)" + ], + "uri": "i17474553", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (Nov. 18-Dec. 30, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148703" + } + ], + "enumerationChronology": [ + "v. 20 (Nov. 18-Dec. 30, 1944)" + ], + "idBarcode": [ + "33433084148703" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (May 20-July 1, 1944)", + "urn:barcode:33433084148661" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (May 20-July 1, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (May 20-July 1, 1944)" + ], + "uri": "i17474549", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (May 20-July 1, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148661" + } + ], + "enumerationChronology": [ + "v. 20 (May 20-July 1, 1944)" + ], + "idBarcode": [ + "33433084148661" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (July 8, -Aug 12,1944)", + "urn:barcode:33433084148679" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (July 8, -Aug 12,1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (July 8, -Aug 12,1944)" + ], + "uri": "i17474550", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (July 8, -Aug 12,1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148679" + } + ], + "enumerationChronology": [ + "v. 20 (July 8, -Aug 12,1944)" + ], + "idBarcode": [ + "33433084148679" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Jan, 6-Feb. 10, 1945)", + "urn:barcode:33433084148711" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (Jan, 6-Feb. 10, 1945)", + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1945" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (Jan, 6-Feb. 10, 1945)" + ], + "uri": "i17474554", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (Jan, 6-Feb. 10, 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433084148711" + } + ], + "enumerationChronology": [ + "v. 20 (Jan, 6-Feb. 10, 1945)" + ], + "idBarcode": [ + "33433084148711" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Aug 19-Sept. 30, 1944)", + "urn:barcode:33433084148687" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (Aug 19-Sept. 30, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (Aug 19-Sept. 30, 1944)" + ], + "uri": "i17474551", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (Aug 19-Sept. 30, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148687" + } + ], + "enumerationChronology": [ + "v. 20 (Aug 19-Sept. 30, 1944)" + ], + "idBarcode": [ + "33433084148687" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 (Apr. 8-May 13, 1944)", + "urn:barcode:33433084148653" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 (Apr. 8-May 13, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 (Apr. 8-May 13, 1944)" + ], + "uri": "i17474548", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 (Apr. 8-May 13, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148653" + } + ], + "enumerationChronology": [ + "v. 20 (Apr. 8-May 13, 1944)" + ], + "idBarcode": [ + "33433084148653" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 20 ( Feb. 19-Apr.1, 1944)", + "urn:barcode:33433084148646" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000020 ( Feb. 19-Apr.1, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 20-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 20 ( Feb. 19-Apr.1, 1944)" + ], + "uri": "i17474547", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 20 ( Feb. 19-Apr.1, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148646" + } + ], + "enumerationChronology": [ + "v. 20 ( Feb. 19-Apr.1, 1944)" + ], + "idBarcode": [ + "33433084148646" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Oct.9-Nov. 13, 1943)", + "urn:barcode:33433084148612" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Oct.9-Nov. 13, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Oct.9-Nov. 13, 1943)" + ], + "uri": "i17474544", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Oct.9-Nov. 13, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148612" + } + ], + "enumerationChronology": [ + "v. 19 (Oct.9-Nov. 13, 1943)" + ], + "idBarcode": [ + "33433084148612" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Nov. 20-Dec. 25, 1943)", + "urn:barcode:33433084148620" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Nov. 20-Dec. 25, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Nov. 20-Dec. 25, 1943)" + ], + "uri": "i17474545", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Nov. 20-Dec. 25, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148620" + } + ], + "enumerationChronology": [ + "v. 19 (Nov. 20-Dec. 25, 1943)" + ], + "idBarcode": [ + "33433084148620" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (May 22-July 3, 1943)", + "urn:barcode:33433084148588" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (May 22-July 3, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (May 22-July 3, 1943)" + ], + "uri": "i17474541", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (May 22-July 3, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148588" + } + ], + "enumerationChronology": [ + "v. 19 (May 22-July 3, 1943)" + ], + "idBarcode": [ + "33433084148588" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (July 10-Aug. 14, 1943)", + "urn:barcode:33433084148596" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (July 10-Aug. 14, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (July 10-Aug. 14, 1943)" + ], + "uri": "i17474542", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (July 10-Aug. 14, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148596" + } + ], + "enumerationChronology": [ + "v. 19 (July 10-Aug. 14, 1943)" + ], + "idBarcode": [ + "33433084148596" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Jan. 1-Feb. 12, 1944)", + "urn:barcode:33433084148638" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Jan. 1-Feb. 12, 1944)", + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1944" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Jan. 1-Feb. 12, 1944)" + ], + "uri": "i17474546", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Jan. 1-Feb. 12, 1944)" + }, + { + "type": "bf:Barcode", + "value": "33433084148638" + } + ], + "enumerationChronology": [ + "v. 19 (Jan. 1-Feb. 12, 1944)" + ], + "idBarcode": [ + "33433084148638" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Feb. 20-Apr. 3, 1943)", + "urn:barcode:33433084148562" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Feb. 20-Apr. 3, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Feb. 20-Apr. 3, 1943)" + ], + "uri": "i17474539", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Feb. 20-Apr. 3, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148562" + } + ], + "enumerationChronology": [ + "v. 19 (Feb. 20-Apr. 3, 1943)" + ], + "idBarcode": [ + "33433084148562" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Aug. 21-Oct. 2, 1943)", + "urn:barcode:33433084148604" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Aug. 21-Oct. 2, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Aug. 21-Oct. 2, 1943)" + ], + "uri": "i17474543", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Aug. 21-Oct. 2, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148604" + } + ], + "enumerationChronology": [ + "v. 19 (Aug. 21-Oct. 2, 1943)" + ], + "idBarcode": [ + "33433084148604" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 19 (Apr. 10-May 15, 1943)", + "urn:barcode:33433084148570" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000019 (Apr. 10-May 15, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 19-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 19 (Apr. 10-May 15, 1943)" + ], + "uri": "i17474540", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 19 (Apr. 10-May 15, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148570" + } + ], + "enumerationChronology": [ + "v. 19 (Apr. 10-May 15, 1943)" + ], + "idBarcode": [ + "33433084148570" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Oct. 10-Nov. 14, 1942)", + "urn:barcode:33433080068053" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (Oct. 10-Nov. 14, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (Oct. 10-Nov. 14, 1942)" + ], + "uri": "i17474454", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (Oct. 10-Nov. 14, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433080068053" + } + ], + "enumerationChronology": [ + "v. 18 (Oct. 10-Nov. 14, 1942)" + ], + "idBarcode": [ + "33433080068053" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Nov. 21, 1942-Jan. 2, 1943)", + "urn:barcode:33433078796426" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (Nov. 21, 1942-Jan. 2, 1943)", + "dateRange": [ + { + "gte": "1942", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (Nov. 21, 1942-Jan. 2, 1943)" + ], + "uri": "i16700900", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (Nov. 21, 1942-Jan. 2, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433078796426" + } + ], + "enumerationChronology": [ + "v. 18 (Nov. 21, 1942-Jan. 2, 1943)" + ], + "idBarcode": [ + "33433078796426" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (May 23-June 27, 1942)", + "urn:barcode:33433084148521" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (May 23-June 27, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (May 23-June 27, 1942)" + ], + "uri": "i17474535", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (May 23-June 27, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433084148521" + } + ], + "enumerationChronology": [ + "v. 18 (May 23-June 27, 1942)" + ], + "idBarcode": [ + "33433084148521" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (July 4-Aug. 15, 1942)", + "urn:barcode:33433084148539" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (July 4-Aug. 15, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (July 4-Aug. 15, 1942)" + ], + "uri": "i17474536", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (July 4-Aug. 15, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433084148539" + } + ], + "enumerationChronology": [ + "v. 18 (July 4-Aug. 15, 1942)" + ], + "idBarcode": [ + "33433084148539" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Jan. 9-Feb. 13, 1943)", + "urn:barcode:33433084148554" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (Jan. 9-Feb. 13, 1943)", + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (Jan. 9-Feb. 13, 1943)" + ], + "uri": "i17474538", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (Jan. 9-Feb. 13, 1943)" + }, + { + "type": "bf:Barcode", + "value": "33433084148554" + } + ], + "enumerationChronology": [ + "v. 18 (Jan. 9-Feb. 13, 1943)" + ], + "idBarcode": [ + "33433084148554" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Feb.21-May 16, 1942)", + "urn:barcode:33433084148513" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (Feb.21-May 16, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (Feb.21-May 16, 1942)" + ], + "uri": "i17474534", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (Feb.21-May 16, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433084148513" + } + ], + "enumerationChronology": [ + "v. 18 (Feb.21-May 16, 1942)" + ], + "idBarcode": [ + "33433084148513" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 18 (Aug. 22-Oct. 3, 1942)", + "urn:barcode:33433084148547" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000018 (Aug. 22-Oct. 3, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 18-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 18 (Aug. 22-Oct. 3, 1942)" + ], + "uri": "i17474537", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 18 (Aug. 22-Oct. 3, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433084148547" + } + ], + "enumerationChronology": [ + "v. 18 (Aug. 22-Oct. 3, 1942)" + ], + "idBarcode": [ + "33433084148547" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Oct. 4-Nov. 8, 1941)", + "urn:barcode:33433084148489" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Oct. 4-Nov. 8, 1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Oct. 4-Nov. 8, 1941)" + ], + "uri": "i17474531", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Oct. 4-Nov. 8, 1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148489" + } + ], + "enumerationChronology": [ + "v. 17 (Oct. 4-Nov. 8, 1941)" + ], + "idBarcode": [ + "33433084148489" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Nov. 15-Dec. 27, 1941)", + "urn:barcode:33433084148497" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Nov. 15-Dec. 27, 1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Nov. 15-Dec. 27, 1941)" + ], + "uri": "i17474532", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Nov. 15-Dec. 27, 1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148497" + } + ], + "enumerationChronology": [ + "v. 17 (Nov. 15-Dec. 27, 1941)" + ], + "idBarcode": [ + "33433084148497" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (June 7-Aug. 9, 1941)", + "urn:barcode:33433084148463" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (June 7-Aug. 9, 1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (June 7-Aug. 9, 1941)" + ], + "uri": "i17474529", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (June 7-Aug. 9, 1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148463" + } + ], + "enumerationChronology": [ + "v. 17 (June 7-Aug. 9, 1941)" + ], + "idBarcode": [ + "33433084148463" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Jan.3-Feb. 14, 1942)", + "urn:barcode:33433084148505" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Jan.3-Feb. 14, 1942)", + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1942" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Jan.3-Feb. 14, 1942)" + ], + "uri": "i17474533", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Jan.3-Feb. 14, 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433084148505" + } + ], + "enumerationChronology": [ + "v. 17 (Jan.3-Feb. 14, 1942)" + ], + "idBarcode": [ + "33433084148505" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Feb. 15-Mar. 29, 1941)", + "urn:barcode:33433084148448" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Feb. 15-Mar. 29, 1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Feb. 15-Mar. 29, 1941)" + ], + "uri": "i17474527", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Feb. 15-Mar. 29, 1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148448" + } + ], + "enumerationChronology": [ + "v. 17 (Feb. 15-Mar. 29, 1941)" + ], + "idBarcode": [ + "33433084148448" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Aug. 16-Sept. 27, 1941)", + "urn:barcode:33433084148471" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Aug. 16-Sept. 27, 1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Aug. 16-Sept. 27, 1941)" + ], + "uri": "i17474530", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Aug. 16-Sept. 27, 1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148471" + } + ], + "enumerationChronology": [ + "v. 17 (Aug. 16-Sept. 27, 1941)" + ], + "idBarcode": [ + "33433084148471" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 17 (Apr.5-May 10,1941)", + "urn:barcode:33433084148455" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000017 (Apr.5-May 10,1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 17-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 17 (Apr.5-May 10,1941)" + ], + "uri": "i17474528", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 17 (Apr.5-May 10,1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148455" + } + ], + "enumerationChronology": [ + "v. 17 (Apr.5-May 10,1941)" + ], + "idBarcode": [ + "33433084148455" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (aug. 17-Sept. 28, 1940)", + "urn:barcode:33433084148406" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (aug. 17-Sept. 28, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (aug. 17-Sept. 28, 1940)" + ], + "uri": "i17474523", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (aug. 17-Sept. 28, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148406" + } + ], + "enumerationChronology": [ + "v. 16 (aug. 17-Sept. 28, 1940)" + ], + "idBarcode": [ + "33433084148406" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Oct. 5-Nov. 9, 1940)", + "urn:barcode:33433084148414" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (Oct. 5-Nov. 9, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (Oct. 5-Nov. 9, 1940)" + ], + "uri": "i17474524", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (Oct. 5-Nov. 9, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148414" + } + ], + "enumerationChronology": [ + "v. 16 (Oct. 5-Nov. 9, 1940)" + ], + "idBarcode": [ + "33433084148414" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Nov. 16-Dec. 28, 1940)", + "urn:barcode:33433084148422" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (Nov. 16-Dec. 28, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (Nov. 16-Dec. 28, 1940)" + ], + "uri": "i17474525", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (Nov. 16-Dec. 28, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148422" + } + ], + "enumerationChronology": [ + "v. 16 (Nov. 16-Dec. 28, 1940)" + ], + "idBarcode": [ + "33433084148422" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (May 13-June 22, 1940)", + "urn:barcode:33433084148380" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (May 13-June 22, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (May 13-June 22, 1940)" + ], + "uri": "i17474521", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (May 13-June 22, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148380" + } + ], + "enumerationChronology": [ + "v. 16 (May 13-June 22, 1940)" + ], + "idBarcode": [ + "33433084148380" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Mar. 30-May 11,1940)", + "urn:barcode:33433084148372" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (Mar. 30-May 11,1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (Mar. 30-May 11,1940)" + ], + "uri": "i17474520", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (Mar. 30-May 11,1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148372" + } + ], + "enumerationChronology": [ + "v. 16 (Mar. 30-May 11,1940)" + ], + "idBarcode": [ + "33433084148372" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (June 29-Aug. 10, 1940)", + "urn:barcode:33433084148398" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (June 29-Aug. 10, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (June 29-Aug. 10, 1940)" + ], + "uri": "i17474522", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (June 29-Aug. 10, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148398" + } + ], + "enumerationChronology": [ + "v. 16 (June 29-Aug. 10, 1940)" + ], + "idBarcode": [ + "33433084148398" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Jan.4-Feb. 8,1941)", + "urn:barcode:33433084148430" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (Jan.4-Feb. 8,1941)", + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1941" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (Jan.4-Feb. 8,1941)" + ], + "uri": "i17474526", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (Jan.4-Feb. 8,1941)" + }, + { + "type": "bf:Barcode", + "value": "33433084148430" + } + ], + "enumerationChronology": [ + "v. 16 (Jan.4-Feb. 8,1941)" + ], + "idBarcode": [ + "33433084148430" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 16 (Feb. 17-Mar.23, 1940)", + "urn:barcode:33433084148364" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000016 (Feb. 17-Mar.23, 1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 16-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 16 (Feb. 17-Mar.23, 1940)" + ], + "uri": "i17474519", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 16 (Feb. 17-Mar.23, 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148364" + } + ], + "enumerationChronology": [ + "v. 16 (Feb. 17-Mar.23, 1940)" + ], + "idBarcode": [ + "33433084148364" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Oct. 7-Nov. 11, 1939)", + "urn:barcode:33433084148240" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (Oct. 7-Nov. 11, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (Oct. 7-Nov. 11, 1939)" + ], + "uri": "i17474516", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (Oct. 7-Nov. 11, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148240" + } + ], + "enumerationChronology": [ + "v. 15 (Oct. 7-Nov. 11, 1939)" + ], + "idBarcode": [ + "33433084148240" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (July 1-Aug. 12, 1939)", + "urn:barcode:33433080035797" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (July 1-Aug. 12, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (July 1-Aug. 12, 1939)" + ], + "uri": "i17474450", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (July 1-Aug. 12, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433080035797" + } + ], + "enumerationChronology": [ + "v. 15 (July 1-Aug. 12, 1939)" + ], + "idBarcode": [ + "33433080035797" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Jan. 6-Feb 10,1940)", + "urn:barcode:33433084148356" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (Jan. 6-Feb 10,1940)", + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1940" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (Jan. 6-Feb 10,1940)" + ], + "uri": "i17474518", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (Jan. 6-Feb 10,1940)" + }, + { + "type": "bf:Barcode", + "value": "33433084148356" + } + ], + "enumerationChronology": [ + "v. 15 (Jan. 6-Feb 10,1940)" + ], + "idBarcode": [ + "33433084148356" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Feb.18-Apr. 1, 1939)", + "urn:barcode:33433084148216" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (Feb.18-Apr. 1, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (Feb.18-Apr. 1, 1939)" + ], + "uri": "i17474512", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (Feb.18-Apr. 1, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148216" + } + ], + "enumerationChronology": [ + "v. 15 (Feb.18-Apr. 1, 1939)" + ], + "idBarcode": [ + "33433084148216" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Aug. 19-Sept. 30, 1939)", + "urn:barcode:33433084148232" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (Aug. 19-Sept. 30, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (Aug. 19-Sept. 30, 1939)" + ], + "uri": "i17474515", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (Aug. 19-Sept. 30, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148232" + } + ], + "enumerationChronology": [ + "v. 15 (Aug. 19-Sept. 30, 1939)" + ], + "idBarcode": [ + "33433084148232" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 (Apr. 29-June 24, 1939)", + "urn:barcode:33433084148224" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 (Apr. 29-June 24, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 (Apr. 29-June 24, 1939)" + ], + "uri": "i17474513", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 (Apr. 29-June 24, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148224" + } + ], + "enumerationChronology": [ + "v. 15 (Apr. 29-June 24, 1939)" + ], + "idBarcode": [ + "33433084148224" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 15 ((Nov. 18-Dec. 30, 1939)", + "urn:barcode:33433084148257" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000015 ((Nov. 18-Dec. 30, 1939)", + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 15-1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 15 ((Nov. 18-Dec. 30, 1939)" + ], + "uri": "i17474517", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 15 ((Nov. 18-Dec. 30, 1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148257" + } + ], + "enumerationChronology": [ + "v. 15 ((Nov. 18-Dec. 30, 1939)" + ], + "idBarcode": [ + "33433084148257" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 Sept 10 - Nov 12 1938)", + "urn:barcode:33433078585167" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 Sept 10 - Nov 12 1938)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-1938" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 Sept 10 - Nov 12 1938)" + ], + "uri": "i17474441", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 Sept 10 - Nov 12 1938)" + }, + { + "type": "bf:Barcode", + "value": "33433078585167" + } + ], + "enumerationChronology": [ + "v. 14 Sept 10 - Nov 12 1938)" + ], + "idBarcode": [ + "33433078585167" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 April-July 2 1938)", + "urn:barcode:33433078585175" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 April-July 2 1938)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-1938" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 April-July 2 1938)" + ], + "uri": "i17474442", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 April-July 2 1938)" + }, + { + "type": "bf:Barcode", + "value": "33433078585175" + } + ], + "enumerationChronology": [ + "v. 14 April-July 2 1938)" + ], + "idBarcode": [ + "33433078585175" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Nov 19-Dec 24 1938)", + "urn:barcode:33433078585142" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 (Nov 19-Dec 24 1938)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-1938" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 (Nov 19-Dec 24 1938)" + ], + "uri": "i17474439", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 (Nov 19-Dec 24 1938)" + }, + { + "type": "bf:Barcode", + "value": "33433078585142" + } + ], + "enumerationChronology": [ + "v. 14 (Nov 19-Dec 24 1938)" + ], + "idBarcode": [ + "33433078585142" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (July 9-Sept. 3)", + "urn:barcode:33433078585159" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 (July 9-Sept. 3)", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 (July 9-Sept. 3)" + ], + "uri": "i17474440", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 (July 9-Sept. 3)" + }, + { + "type": "bf:Barcode", + "value": "33433078585159" + } + ], + "enumerationChronology": [ + "v. 14 (July 9-Sept. 3)" + ], + "idBarcode": [ + "33433078585159" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Feb. 19- Apr.23 1938)", + "urn:barcode:33433078585183" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 (Feb. 19- Apr.23 1938)", + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-1938" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 (Feb. 19- Apr.23 1938)" + ], + "uri": "i17474443", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 (Feb. 19- Apr.23 1938)" + }, + { + "type": "bf:Barcode", + "value": "33433078585183" + } + ], + "enumerationChronology": [ + "v. 14 (Feb. 19- Apr.23 1938)" + ], + "idBarcode": [ + "33433078585183" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 14 (Dec. 31, 1938-Feb. 11,1939)", + "urn:barcode:33433084148208" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000014 (Dec. 31, 1938-Feb. 11,1939)", + "dateRange": [ + { + "gte": "1938", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 14-1938" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 14 (Dec. 31, 1938-Feb. 11,1939)" + ], + "uri": "i17474511", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 14 (Dec. 31, 1938-Feb. 11,1939)" + }, + { + "type": "bf:Barcode", + "value": "33433084148208" + } + ], + "enumerationChronology": [ + "v. 14 (Dec. 31, 1938-Feb. 11,1939)" + ], + "idBarcode": [ + "33433084148208" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (dec. 11, 1937-Feb. 12, 1938)", + "urn:barcode:33433084148190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000013 (dec. 11, 1937-Feb. 12, 1938)", + "dateRange": [ + { + "gte": "1937", + "lte": "1938" + } + ], + "dueDate": [ + "2024-01-26" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 13-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 13 (dec. 11, 1937-Feb. 12, 1938)" + ], + "uri": "i17474510", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 13 (dec. 11, 1937-Feb. 12, 1938)" + }, + { + "type": "bf:Barcode", + "value": "33433084148190" + } + ], + "enumerationChronology": [ + "v. 13 (dec. 11, 1937-Feb. 12, 1938)" + ], + "idBarcode": [ + "33433084148190" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (Oct. 9-Dec. 4, 1937)", + "urn:barcode:33433084148182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000013 (Oct. 9-Dec. 4, 1937)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 13-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 13 (Oct. 9-Dec. 4, 1937)" + ], + "uri": "i17474509", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 13 (Oct. 9-Dec. 4, 1937)" + }, + { + "type": "bf:Barcode", + "value": "33433084148182" + } + ], + "enumerationChronology": [ + "v. 13 (Oct. 9-Dec. 4, 1937)" + ], + "idBarcode": [ + "33433084148182" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (May 1-July 3, 1937)", + "urn:barcode:33433084148166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000013 (May 1-July 3, 1937)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 13-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 13 (May 1-July 3, 1937)" + ], + "uri": "i17474507", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 13 (May 1-July 3, 1937)" + }, + { + "type": "bf:Barcode", + "value": "33433084148166" + } + ], + "enumerationChronology": [ + "v. 13 (May 1-July 3, 1937)" + ], + "idBarcode": [ + "33433084148166" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (July 10-Oct.2, 1937)", + "urn:barcode:33433084148174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000013 (July 10-Oct.2, 1937)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 13-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 13 (July 10-Oct.2, 1937)" + ], + "uri": "i17474508", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 13 (July 10-Oct.2, 1937)" + }, + { + "type": "bf:Barcode", + "value": "33433084148174" + } + ], + "enumerationChronology": [ + "v. 13 (July 10-Oct.2, 1937)" + ], + "idBarcode": [ + "33433084148174" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 13 (Feb. 20-Apr.24, 1937)", + "urn:barcode:33433084148158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000013 (Feb. 20-Apr.24, 1937)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 13-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 13 (Feb. 20-Apr.24, 1937)" + ], + "uri": "i17474506", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 13 (Feb. 20-Apr.24, 1937)" + }, + { + "type": "bf:Barcode", + "value": "33433084148158" + } + ], + "enumerationChronology": [ + "v. 13 (Feb. 20-Apr.24, 1937)" + ], + "idBarcode": [ + "33433084148158" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Nov. 21-Dec. 26, 1936)", + "urn:barcode:33433084148133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (Nov. 21-Dec. 26, 1936)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1936" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (Nov. 21-Dec. 26, 1936)" + ], + "uri": "i17474504", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (Nov. 21-Dec. 26, 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148133" + } + ], + "enumerationChronology": [ + "v. 12 (Nov. 21-Dec. 26, 1936)" + ], + "idBarcode": [ + "33433084148133" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (May 23-Aug.15, 1936)", + "urn:barcode:33433084148117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (May 23-Aug.15, 1936)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1936" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (May 23-Aug.15, 1936)" + ], + "uri": "i17474502", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (May 23-Aug.15, 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148117" + } + ], + "enumerationChronology": [ + "v. 12 (May 23-Aug.15, 1936)" + ], + "idBarcode": [ + "33433084148117" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Jan. 2-Feb. 13, 1937)", + "urn:barcode:33433084148141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (Jan. 2-Feb. 13, 1937)", + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1937" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (Jan. 2-Feb. 13, 1937)" + ], + "uri": "i17474505", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (Jan. 2-Feb. 13, 1937)" + }, + { + "type": "bf:Barcode", + "value": "33433084148141" + } + ], + "enumerationChronology": [ + "v. 12 (Jan. 2-Feb. 13, 1937)" + ], + "idBarcode": [ + "33433084148141" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Feb. 22-Mar. 28, 1936)", + "urn:barcode:33433084148091" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (Feb. 22-Mar. 28, 1936)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1936" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (Feb. 22-Mar. 28, 1936)" + ], + "uri": "i17474500", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (Feb. 22-Mar. 28, 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148091" + } + ], + "enumerationChronology": [ + "v. 12 (Feb. 22-Mar. 28, 1936)" + ], + "idBarcode": [ + "33433084148091" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Aug. 22-Nov. 14, 1936)", + "urn:barcode:33433084148125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (Aug. 22-Nov. 14, 1936)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1936" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (Aug. 22-Nov. 14, 1936)" + ], + "uri": "i17474503", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (Aug. 22-Nov. 14, 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148125" + } + ], + "enumerationChronology": [ + "v. 12 (Aug. 22-Nov. 14, 1936)" + ], + "idBarcode": [ + "33433084148125" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 12 (Apr.4-May 16. 1936)", + "urn:barcode:33433084148109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000012 (Apr.4-May 16. 1936)", + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 12-1936" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 12 (Apr.4-May 16. 1936)" + ], + "uri": "i17474501", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 12 (Apr.4-May 16. 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148109" + } + ], + "enumerationChronology": [ + "v. 12 (Apr.4-May 16. 1936)" + ], + "idBarcode": [ + "33433084148109" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Oct. 5-Nov. 9, 1935)", + "urn:barcode:33433084148067" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (Oct. 5-Nov. 9, 1935)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (Oct. 5-Nov. 9, 1935)" + ], + "uri": "i17474497", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (Oct. 5-Nov. 9, 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433084148067" + } + ], + "enumerationChronology": [ + "v. 11 (Oct. 5-Nov. 9, 1935)" + ], + "idBarcode": [ + "33433084148067" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Nov. 11-Dec. 21, 1935)", + "urn:barcode:33433084148075" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (Nov. 11-Dec. 21, 1935)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (Nov. 11-Dec. 21, 1935)" + ], + "uri": "i17474498", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (Nov. 11-Dec. 21, 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433084148075" + } + ], + "enumerationChronology": [ + "v. 11 (Nov. 11-Dec. 21, 1935)" + ], + "idBarcode": [ + "33433084148075" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (May 18-Aug. 10, 1935)", + "urn:barcode:33433084148042" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (May 18-Aug. 10, 1935)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (May 18-Aug. 10, 1935)" + ], + "uri": "i17474495", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (May 18-Aug. 10, 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433084148042" + } + ], + "enumerationChronology": [ + "v. 11 (May 18-Aug. 10, 1935)" + ], + "idBarcode": [ + "33433084148042" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Feb 16-May 11 1935)", + "urn:barcode:33433078264482" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (Feb 16-May 11 1935)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (Feb 16-May 11 1935)" + ], + "uri": "i16700902", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (Feb 16-May 11 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433078264482" + } + ], + "enumerationChronology": [ + "v. 11 (Feb 16-May 11 1935)" + ], + "idBarcode": [ + "33433078264482" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Dec. 28, 1935-Feb. 15, 1936)", + "urn:barcode:33433084148083" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (Dec. 28, 1935-Feb. 15, 1936)", + "dateRange": [ + { + "gte": "1935", + "lte": "1936" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (Dec. 28, 1935-Feb. 15, 1936)" + ], + "uri": "i17474499", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (Dec. 28, 1935-Feb. 15, 1936)" + }, + { + "type": "bf:Barcode", + "value": "33433084148083" + } + ], + "enumerationChronology": [ + "v. 11 (Dec. 28, 1935-Feb. 15, 1936)" + ], + "idBarcode": [ + "33433084148083" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 11 (Aug. 17-Sept. 28, 1935)", + "urn:barcode:33433084148059" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000011 (Aug. 17-Sept. 28, 1935)", + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 11-1935" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 11 (Aug. 17-Sept. 28, 1935)" + ], + "uri": "i17474496", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 11 (Aug. 17-Sept. 28, 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433084148059" + } + ], + "enumerationChronology": [ + "v. 11 (Aug. 17-Sept. 28, 1935)" + ], + "idBarcode": [ + "33433084148059" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Oct. 13-Dec.1, 1934)", + "urn:barcode:33433084148026" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (Oct. 13-Dec.1, 1934)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (Oct. 13-Dec.1, 1934)" + ], + "uri": "i17474493", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (Oct. 13-Dec.1, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084148026" + } + ], + "enumerationChronology": [ + "v. 10 (Oct. 13-Dec.1, 1934)" + ], + "idBarcode": [ + "33433084148026" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (May 19-Aug. 11, 1934)", + "urn:barcode:33433084148000" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (May 19-Aug. 11, 1934)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (May 19-Aug. 11, 1934)" + ], + "uri": "i17474491", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (May 19-Aug. 11, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084148000" + } + ], + "enumerationChronology": [ + "v. 10 (May 19-Aug. 11, 1934)" + ], + "idBarcode": [ + "33433084148000" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Feb. 17-Mar. 31, 1934)", + "urn:barcode:33433084147986" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (Feb. 17-Mar. 31, 1934)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (Feb. 17-Mar. 31, 1934)" + ], + "uri": "i17474489", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (Feb. 17-Mar. 31, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084147986" + } + ], + "enumerationChronology": [ + "v. 10 (Feb. 17-Mar. 31, 1934)" + ], + "idBarcode": [ + "33433084147986" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Dec.8, 1934-Feb.9, 1935)", + "urn:barcode:33433084148034" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (Dec.8, 1934-Feb.9, 1935)", + "dateRange": [ + { + "gte": "1934", + "lte": "1935" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (Dec.8, 1934-Feb.9, 1935)" + ], + "uri": "i17474494", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (Dec.8, 1934-Feb.9, 1935)" + }, + { + "type": "bf:Barcode", + "value": "33433084148034" + } + ], + "enumerationChronology": [ + "v. 10 (Dec.8, 1934-Feb.9, 1935)" + ], + "idBarcode": [ + "33433084148034" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Aug. 10-Oct. 6, 1934)", + "urn:barcode:33433084148018" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (Aug. 10-Oct. 6, 1934)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (Aug. 10-Oct. 6, 1934)" + ], + "uri": "i17474492", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (Aug. 10-Oct. 6, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084148018" + } + ], + "enumerationChronology": [ + "v. 10 (Aug. 10-Oct. 6, 1934)" + ], + "idBarcode": [ + "33433084148018" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 10 (Apr. 7-May 12, 1934)", + "urn:barcode:33433084147994" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000010 (Apr. 7-May 12, 1934)", + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 10-1934" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 10 (Apr. 7-May 12, 1934)" + ], + "uri": "i17474490", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 10 (Apr. 7-May 12, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084147994" + } + ], + "enumerationChronology": [ + "v. 10 (Apr. 7-May 12, 1934)" + ], + "idBarcode": [ + "33433084147994" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (may 20-Aug. 12, 1933)", + "urn:barcode:33433084147952" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000009 (may 20-Aug. 12, 1933)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 9-1933" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 9 (may 20-Aug. 12, 1933)" + ], + "uri": "i17474486", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 9 (may 20-Aug. 12, 1933)" + }, + { + "type": "bf:Barcode", + "value": "33433084147952" + } + ], + "enumerationChronology": [ + "v. 9 (may 20-Aug. 12, 1933)" + ], + "idBarcode": [ + "33433084147952" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Nov. 18, 1933-Feb. 10, 1934)", + "urn:barcode:33433084147978" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000009 (Nov. 18, 1933-Feb. 10, 1934)", + "dateRange": [ + { + "gte": "1933", + "lte": "1934" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 9-1933" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 9 (Nov. 18, 1933-Feb. 10, 1934)" + ], + "uri": "i17474488", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 9 (Nov. 18, 1933-Feb. 10, 1934)" + }, + { + "type": "bf:Barcode", + "value": "33433084147978" + } + ], + "enumerationChronology": [ + "v. 9 (Nov. 18, 1933-Feb. 10, 1934)" + ], + "idBarcode": [ + "33433084147978" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Feb. 18-May 13, 1933)", + "urn:barcode:33433084147945" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000009 (Feb. 18-May 13, 1933)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 9-1933" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 9 (Feb. 18-May 13, 1933)" + ], + "uri": "i17474485", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 9 (Feb. 18-May 13, 1933)" + }, + { + "type": "bf:Barcode", + "value": "33433084147945" + } + ], + "enumerationChronology": [ + "v. 9 (Feb. 18-May 13, 1933)" + ], + "idBarcode": [ + "33433084147945" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 9 (Aug. 19-Nov. 11, 1933)", + "urn:barcode:33433084147960" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000009 (Aug. 19-Nov. 11, 1933)", + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 9-1933" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 9 (Aug. 19-Nov. 11, 1933)" + ], + "uri": "i17474487", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 9 (Aug. 19-Nov. 11, 1933)" + }, + { + "type": "bf:Barcode", + "value": "33433084147960" + } + ], + "enumerationChronology": [ + "v. 9 (Aug. 19-Nov. 11, 1933)" + ], + "idBarcode": [ + "33433084147960" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Nov. 19, 1932-Feb. 11, 1933)", + "urn:barcode:33433084147937" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000008 (Nov. 19, 1932-Feb. 11, 1933)", + "dateRange": [ + { + "gte": "1932", + "lte": "1933" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 8-1932" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 8 (Nov. 19, 1932-Feb. 11, 1933)" + ], + "uri": "i17474484", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 8 (Nov. 19, 1932-Feb. 11, 1933)" + }, + { + "type": "bf:Barcode", + "value": "33433084147937" + } + ], + "enumerationChronology": [ + "v. 8 (Nov. 19, 1932-Feb. 11, 1933)" + ], + "idBarcode": [ + "33433084147937" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (May 21-Aug. 13, 1932)", + "urn:barcode:33433084147911" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000008 (May 21-Aug. 13, 1932)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 8-1932" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 8 (May 21-Aug. 13, 1932)" + ], + "uri": "i17474482", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 8 (May 21-Aug. 13, 1932)" + }, + { + "type": "bf:Barcode", + "value": "33433084147911" + } + ], + "enumerationChronology": [ + "v. 8 (May 21-Aug. 13, 1932)" + ], + "idBarcode": [ + "33433084147911" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Feb. 20-May 12, 1932)", + "urn:barcode:33433084147903" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000008 (Feb. 20-May 12, 1932)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 8-1932" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 8 (Feb. 20-May 12, 1932)" + ], + "uri": "i17474481", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 8 (Feb. 20-May 12, 1932)" + }, + { + "type": "bf:Barcode", + "value": "33433084147903" + } + ], + "enumerationChronology": [ + "v. 8 (Feb. 20-May 12, 1932)" + ], + "idBarcode": [ + "33433084147903" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 8 (Aug. 20-Nov. 12, 1932)", + "urn:barcode:33433084147929" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000008 (Aug. 20-Nov. 12, 1932)", + "dateRange": [ + { + "gte": "1932", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 8-1932" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 8 (Aug. 20-Nov. 12, 1932)" + ], + "uri": "i17474483", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 8 (Aug. 20-Nov. 12, 1932)" + }, + { + "type": "bf:Barcode", + "value": "33433084147929" + } + ], + "enumerationChronology": [ + "v. 8 (Aug. 20-Nov. 12, 1932)" + ], + "idBarcode": [ + "33433084147929" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Nov. 21, 1931-Feb. 13, 1932)", + "urn:barcode:33433079523332" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000007 (Nov. 21, 1931-Feb. 13, 1932)", + "dateRange": [ + { + "gte": "1931", + "lte": "1932" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 7-1931" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 7 (Nov. 21, 1931-Feb. 13, 1932)" + ], + "uri": "i17474455", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 7 (Nov. 21, 1931-Feb. 13, 1932)" + }, + { + "type": "bf:Barcode", + "value": "33433079523332" + } + ], + "enumerationChronology": [ + "v. 7 (Nov. 21, 1931-Feb. 13, 1932)" + ], + "idBarcode": [ + "33433079523332" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (June 13-Aug. 15, 1931)", + "urn:barcode:33433084147887" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000007 (June 13-Aug. 15, 1931)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 7-1931" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 7 (June 13-Aug. 15, 1931)" + ], + "uri": "i17474479", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 7 (June 13-Aug. 15, 1931)" + }, + { + "type": "bf:Barcode", + "value": "33433084147887" + } + ], + "enumerationChronology": [ + "v. 7 (June 13-Aug. 15, 1931)" + ], + "idBarcode": [ + "33433084147887" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Feb 21-Apr. 11, 1931)", + "urn:barcode:33433084147861" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000007 (Feb 21-Apr. 11, 1931)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 7-1931" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 7 (Feb 21-Apr. 11, 1931)" + ], + "uri": "i17474477", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 7 (Feb 21-Apr. 11, 1931)" + }, + { + "type": "bf:Barcode", + "value": "33433084147861" + } + ], + "enumerationChronology": [ + "v. 7 (Feb 21-Apr. 11, 1931)" + ], + "idBarcode": [ + "33433084147861" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Aug. 22-Nov. 14, 1931)", + "urn:barcode:33433084147895" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000007 (Aug. 22-Nov. 14, 1931)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 7-1931" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 7 (Aug. 22-Nov. 14, 1931)" + ], + "uri": "i17474480", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 7 (Aug. 22-Nov. 14, 1931)" + }, + { + "type": "bf:Barcode", + "value": "33433084147895" + } + ], + "enumerationChronology": [ + "v. 7 (Aug. 22-Nov. 14, 1931)" + ], + "idBarcode": [ + "33433084147895" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 7 (Apr. 18-June 6, 1931)", + "urn:barcode:33433084147879" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000007 (Apr. 18-June 6, 1931)", + "dateRange": [ + { + "gte": "1931", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 7-1931" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 7 (Apr. 18-June 6, 1931)" + ], + "uri": "i17474478", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 7 (Apr. 18-June 6, 1931)" + }, + { + "type": "bf:Barcode", + "value": "33433084147879" + } + ], + "enumerationChronology": [ + "v. 7 (Apr. 18-June 6, 1931)" + ], + "idBarcode": [ + "33433084147879" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Nov.1-Dec. 27, 1930)", + "urn:barcode:33433084147846" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000006 (Nov.1-Dec. 27, 1930)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 6-1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 6 (Nov.1-Dec. 27, 1930)" + ], + "uri": "i17474475", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 6 (Nov.1-Dec. 27, 1930)" + }, + { + "type": "bf:Barcode", + "value": "33433084147846" + } + ], + "enumerationChronology": [ + "v. 6 (Nov.1-Dec. 27, 1930)" + ], + "idBarcode": [ + "33433084147846" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Mar. 15-May 10, 1930)", + "urn:barcode:33433084147838" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000006 (Mar. 15-May 10, 1930)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 6-1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 6 (Mar. 15-May 10, 1930)" + ], + "uri": "i17474474", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 6 (Mar. 15-May 10, 1930)" + }, + { + "type": "bf:Barcode", + "value": "33433084147838" + } + ], + "enumerationChronology": [ + "v. 6 (Mar. 15-May 10, 1930)" + ], + "idBarcode": [ + "33433084147838" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Jan.4-Mar. 8, 1930)", + "urn:barcode:33433084147820" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000006 (Jan.4-Mar. 8, 1930)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 6-1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 6 (Jan.4-Mar. 8, 1930)" + ], + "uri": "i17474473", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 6 (Jan.4-Mar. 8, 1930)" + }, + { + "type": "bf:Barcode", + "value": "33433084147820" + } + ], + "enumerationChronology": [ + "v. 6 (Jan.4-Mar. 8, 1930)" + ], + "idBarcode": [ + "33433084147820" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 6 (Dec. 27, 1930-Feb. 14, 1931)", + "urn:barcode:33433084147853" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000006 (Dec. 27, 1930-Feb. 14, 1931)", + "dateRange": [ + { + "gte": "1930", + "lte": "1931" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 6-1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 6 (Dec. 27, 1930-Feb. 14, 1931)" + ], + "uri": "i17474476", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 6 (Dec. 27, 1930-Feb. 14, 1931)" + }, + { + "type": "bf:Barcode", + "value": "33433084147853" + } + ], + "enumerationChronology": [ + "v. 6 (Dec. 27, 1930-Feb. 14, 1931)" + ], + "idBarcode": [ + "33433084147853" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Sept. 7-Nov. 2, 1929)", + "urn:barcode:33433084147804" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000005 (Sept. 7-Nov. 2, 1929)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 5-1929" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 5 (Sept. 7-Nov. 2, 1929)" + ], + "uri": "i17474471", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 5 (Sept. 7-Nov. 2, 1929)" + }, + { + "type": "bf:Barcode", + "value": "33433084147804" + } + ], + "enumerationChronology": [ + "v. 5 (Sept. 7-Nov. 2, 1929)" + ], + "idBarcode": [ + "33433084147804" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Nov. 9-Dec. 28, 1929)", + "urn:barcode:33433084147812" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000005 (Nov. 9-Dec. 28, 1929)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 5-1929" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 5 (Nov. 9-Dec. 28, 1929)" + ], + "uri": "i17474472", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 5 (Nov. 9-Dec. 28, 1929)" + }, + { + "type": "bf:Barcode", + "value": "33433084147812" + } + ], + "enumerationChronology": [ + "v. 5 (Nov. 9-Dec. 28, 1929)" + ], + "idBarcode": [ + "33433084147812" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Mar. 30-June 1, 1929)", + "urn:barcode:33433084147788" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000005 (Mar. 30-June 1, 1929)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 5-1929" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 5 (Mar. 30-June 1, 1929)" + ], + "uri": "i17474469", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 5 (Mar. 30-June 1, 1929)" + }, + { + "type": "bf:Barcode", + "value": "33433084147788" + } + ], + "enumerationChronology": [ + "v. 5 (Mar. 30-June 1, 1929)" + ], + "idBarcode": [ + "33433084147788" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (June 8-Aug. 31, 1929)", + "urn:barcode:33433084147796" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000005 (June 8-Aug. 31, 1929)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 5-1929" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 5 (June 8-Aug. 31, 1929)" + ], + "uri": "i17474470", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 5 (June 8-Aug. 31, 1929)" + }, + { + "type": "bf:Barcode", + "value": "33433084147796" + } + ], + "enumerationChronology": [ + "v. 5 (June 8-Aug. 31, 1929)" + ], + "idBarcode": [ + "33433084147796" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 5 (Jan. 5-Mar. 23, 1929)", + "urn:barcode:33433084147770" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000005 (Jan. 5-Mar. 23, 1929)", + "dateRange": [ + { + "gte": "1929", + "lte": "1929" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 5-1929" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 5 (Jan. 5-Mar. 23, 1929)" + ], + "uri": "i17474468", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 5 (Jan. 5-Mar. 23, 1929)" + }, + { + "type": "bf:Barcode", + "value": "33433084147770" + } + ], + "enumerationChronology": [ + "v. 5 (Jan. 5-Mar. 23, 1929)" + ], + "idBarcode": [ + "33433084147770" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 4 (Sept. 15-Dec. 29, 1928)", + "urn:barcode:33433084147754" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000004 (Sept. 15-Dec. 29, 1928)", + "dateRange": [ + { + "gte": "1928", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 4-1928" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 4 (Sept. 15-Dec. 29, 1928)" + ], + "uri": "i17474467", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 4 (Sept. 15-Dec. 29, 1928)" + }, + { + "type": "bf:Barcode", + "value": "33433084147754" + } + ], + "enumerationChronology": [ + "v. 4 (Sept. 15-Dec. 29, 1928)" + ], + "idBarcode": [ + "33433084147754" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 4 (May 26-Sept. 8, 1928)", + "urn:barcode:33433084147747" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000004 (May 26-Sept. 8, 1928)", + "dateRange": [ + { + "gte": "1928", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 4-1928" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 4 (May 26-Sept. 8, 1928)" + ], + "uri": "i17474466", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 4 (May 26-Sept. 8, 1928)" + }, + { + "type": "bf:Barcode", + "value": "33433084147747" + } + ], + "enumerationChronology": [ + "v. 4 (May 26-Sept. 8, 1928)" + ], + "idBarcode": [ + "33433084147747" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (May 21-Aug 13, 1927)", + "urn:barcode:33433084147721" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003 (May 21-Aug 13, 1927)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-1927" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3 (May 21-Aug 13, 1927)" + ], + "uri": "i17474464", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3 (May 21-Aug 13, 1927)" + }, + { + "type": "bf:Barcode", + "value": "33433084147721" + } + ], + "enumerationChronology": [ + "v. 3 (May 21-Aug 13, 1927)" + ], + "idBarcode": [ + "33433084147721" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Feb. 19-Apr. 2, 1927)", + "urn:barcode:33433084147705" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003 (Feb. 19-Apr. 2, 1927)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-1927" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3 (Feb. 19-Apr. 2, 1927)" + ], + "uri": "i17474462", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3 (Feb. 19-Apr. 2, 1927)" + }, + { + "type": "bf:Barcode", + "value": "33433084147705" + } + ], + "enumerationChronology": [ + "v. 3 (Feb. 19-Apr. 2, 1927)" + ], + "idBarcode": [ + "33433084147705" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Dec. 31, 1927-Feb. 18, 1928)", + "urn:barcode:33433080034691" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003 (Dec. 31, 1927-Feb. 18, 1928)", + "dateRange": [ + { + "gte": "1927", + "lte": "1928" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-1927" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3 (Dec. 31, 1927-Feb. 18, 1928)" + ], + "uri": "i17474449", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3 (Dec. 31, 1927-Feb. 18, 1928)" + }, + { + "type": "bf:Barcode", + "value": "33433080034691" + } + ], + "enumerationChronology": [ + "v. 3 (Dec. 31, 1927-Feb. 18, 1928)" + ], + "idBarcode": [ + "33433080034691" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Aug. 20-Nov. 12, 1927)", + "urn:barcode:33433084147739" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003 (Aug. 20-Nov. 12, 1927)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-1927" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3 (Aug. 20-Nov. 12, 1927)" + ], + "uri": "i17474465", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3 (Aug. 20-Nov. 12, 1927)" + }, + { + "type": "bf:Barcode", + "value": "33433084147739" + } + ], + "enumerationChronology": [ + "v. 3 (Aug. 20-Nov. 12, 1927)" + ], + "idBarcode": [ + "33433084147739" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3 (Apr.9-May 14, 1927)", + "urn:barcode:33433084147713" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003 (Apr.9-May 14, 1927)", + "dateRange": [ + { + "gte": "1927", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-1927" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3 (Apr.9-May 14, 1927)" + ], + "uri": "i17474463", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3 (Apr.9-May 14, 1927)" + }, + { + "type": "bf:Barcode", + "value": "33433084147713" + } + ], + "enumerationChronology": [ + "v. 3 (Apr.9-May 14, 1927)" + ], + "idBarcode": [ + "33433084147713" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 3", + "urn:barcode:33433080030632" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000003", + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 3" + ], + "uri": "i17474451", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433080030632" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433080030632" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Nov. 20, 1926-Feb. 12, 1927)", + "urn:barcode:33433084147697" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000002 (Nov. 20, 1926-Feb. 12, 1927)", + "dateRange": [ + { + "gte": "1926", + "lte": "1927" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 2-1926" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 2 (Nov. 20, 1926-Feb. 12, 1927)" + ], + "uri": "i17474461", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 2 (Nov. 20, 1926-Feb. 12, 1927)" + }, + { + "type": "bf:Barcode", + "value": "33433084147697" + } + ], + "enumerationChronology": [ + "v. 2 (Nov. 20, 1926-Feb. 12, 1927)" + ], + "idBarcode": [ + "33433084147697" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (May 22, 1926-Aug. 14, 1926)", + "urn:barcode:33433084147689" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000002 (May 22, 1926-Aug. 14, 1926)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 2-1926" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 2 (May 22, 1926-Aug. 14, 1926)" + ], + "uri": "i17474459", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 2 (May 22, 1926-Aug. 14, 1926)" + }, + { + "type": "bf:Barcode", + "value": "33433084147689" + } + ], + "enumerationChronology": [ + "v. 2 (May 22, 1926-Aug. 14, 1926)" + ], + "idBarcode": [ + "33433084147689" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Feb. 20, 1926-May 22, 1926)", + "urn:barcode:33433084147671" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000002 (Feb. 20, 1926-May 22, 1926)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 2-1926" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 2 (Feb. 20, 1926-May 22, 1926)" + ], + "uri": "i17474458", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 2 (Feb. 20, 1926-May 22, 1926)" + }, + { + "type": "bf:Barcode", + "value": "33433084147671" + } + ], + "enumerationChronology": [ + "v. 2 (Feb. 20, 1926-May 22, 1926)" + ], + "idBarcode": [ + "33433084147671" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 2 (Aug. 21, 1926-Nov. 13, 1926)", + "urn:barcode:33433084147663" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000002 (Aug. 21, 1926-Nov. 13, 1926)", + "dateRange": [ + { + "gte": "1926", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 2-1926" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 2 (Aug. 21, 1926-Nov. 13, 1926)" + ], + "uri": "i17474460", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 2 (Aug. 21, 1926-Nov. 13, 1926)" + }, + { + "type": "bf:Barcode", + "value": "33433084147663" + } + ], + "enumerationChronology": [ + "v. 2 (Aug. 21, 1926-Nov. 13, 1926)" + ], + "idBarcode": [ + "33433084147663" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 1 (Aug. 1925-Feb. 1926) (inc.)", + "urn:barcode:33433077539629" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000001 (Aug. 1925-Feb. 1926) (inc.)", + "dateRange": [ + { + "gte": "1925", + "lte": "1926" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " 1-1925" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 1 (Aug. 1925-Feb. 1926) (inc.)" + ], + "uri": "i17474445", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) v. 1 (Aug. 1925-Feb. 1926) (inc.)" + }, + { + "type": "bf:Barcode", + "value": "33433077539629" + } + ], + "enumerationChronology": [ + "v. 1 (Aug. 1925-Feb. 1926) (inc.)" + ], + "idBarcode": [ + "33433077539629" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Sept.-Oct. 1960 (second copy)", + "urn:barcode:33433085022402" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Sept.-Oct. 1960 (second copy)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Sept.-Oct. 1960 (second copy)" + ], + "uri": "i17474956", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Sept.-Oct. 1960 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022402" + } + ], + "enumerationChronology": [ + "Sept.-Oct. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022402" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1963 (second copy)", + "urn:barcode:33433085022428" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1963 (second copy)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1963 (second copy)" + ], + "uri": "i17474954", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1963 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022428" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022428" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1961 (second copy)", + "urn:barcode:33433085022386" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1961 (second copy)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1961 (second copy)" + ], + "uri": "i17474958", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1961 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022386" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022386" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1959 (second copy)", + "urn:barcode:33433085022501" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1959 (second copy)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1959 (second copy)" + ], + "uri": "i17474946", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1959 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022501" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022501" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1958 (second copy)", + "urn:barcode:33433085022493" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1958 (second copy)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1958 (second copy)" + ], + "uri": "i17474947", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1958 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022493" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022493" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1957 (second copy)", + "urn:barcode:33433085022063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1957 (second copy)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1957 (second copy)" + ], + "uri": "i17474940", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1957 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022063" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022063" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1956 (second copy)", + "urn:barcode:33433085022071" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1956 (second copy)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1956 (second copy)" + ], + "uri": "i17474939", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1956 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022071" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1956 (second copy)" + ], + "idBarcode": [ + "33433085022071" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1954 (second copy)", + "urn:barcode:33433085022162" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1954 (second copy)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1954 (second copy)" + ], + "uri": "i17474930", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1954 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022162" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022162" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1953 (second copy)", + "urn:barcode:33433085022170" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1953 (second copy)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1953 (second copy)" + ], + "uri": "i17474929", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1953 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022170" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1953 (second copy)" + ], + "idBarcode": [ + "33433085022170" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1952 (second copy)", + "urn:barcode:33433079509158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1952 (second copy)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1952 (second copy)" + ], + "uri": "i17474984", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1952 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509158" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509158" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1951 (second copy)", + "urn:barcode:33433079509190" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1951 (second copy)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1951 (second copy)" + ], + "uri": "i17474980", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1951 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509190" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1951 (second copy)" + ], + "idBarcode": [ + "33433079509190" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1950 (second copy)", + "urn:barcode:33433079509232" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1950 (second copy)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1950 (second copy)" + ], + "uri": "i17474976", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1950 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509232" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509232" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1949 (second copy)", + "urn:barcode:33433079509117" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1949 (second copy)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1949 (second copy)" + ], + "uri": "i17474988", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1949 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509117" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1949 (second copy)" + ], + "idBarcode": [ + "33433079509117" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1948 (second copy)", + "urn:barcode:33433085022295" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1948 (second copy)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1948 (second copy)" + ], + "uri": "i17474967", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1948 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022295" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1948 (second copy)" + ], + "idBarcode": [ + "33433085022295" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1947 (second copy)", + "urn:barcode:33433085022758" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1947 (second copy)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1947 (second copy)" + ], + "uri": "i17474971", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1947 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022758" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022758" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Oct.-Dec. 1946 (second copy)", + "urn:barcode:33433085022410" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Oct.-Dec. 1946 (second copy)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Oct.-Dec. 1946 (second copy)" + ], + "uri": "i17474955", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Oct.-Dec. 1946 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022410" + } + ], + "enumerationChronology": [ + "Oct.-Dec. 1946 (second copy)" + ], + "idBarcode": [ + "33433085022410" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Nov.-Dec. 1960 (second copy)", + "urn:barcode:33433085022436" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Nov.-Dec. 1960 (second copy)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Nov.-Dec. 1960 (second copy)" + ], + "uri": "i17474953", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Nov.-Dec. 1960 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022436" + } + ], + "enumerationChronology": [ + "Nov.-Dec. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022436" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) May-June 1953 (second copy)", + "urn:barcode:33433085021792" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) May-June 1953 (second copy)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) May-June 1953 (second copy)" + ], + "uri": "i17474925", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) May-June 1953 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085021792" + } + ], + "enumerationChronology": [ + "May-June 1953 (second copy)" + ], + "idBarcode": [ + "33433085021792" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) May 17-Aug. 2 (1930)", + "urn:barcode:33433080388212" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) May 17-Aug. 2 (1930)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " -1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) May 17-Aug. 2 (1930)" + ], + "uri": "i17586831", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) May 17-Aug. 2 (1930)" + }, + { + "type": "bf:Barcode", + "value": "33433080388212" + } + ], + "enumerationChronology": [ + "May 17-Aug. 2 (1930)" + ], + "idBarcode": [ + "33433080388212" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Mar.-Apr. 1953 (second copy)", + "urn:barcode:33433079509174" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Mar.-Apr. 1953 (second copy)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Mar.-Apr. 1953 (second copy)" + ], + "uri": "i17474982", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Mar.-Apr. 1953 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509174" + } + ], + "enumerationChronology": [ + "Mar.-Apr. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509174" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1963 (second copy)", + "urn:barcode:33433085022329" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1963 (second copy)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1963 (second copy)" + ], + "uri": "i17474964", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1963 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022329" + } + ], + "enumerationChronology": [ + "July-Sept. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022329" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1961 (second copy)", + "urn:barcode:33433085022378" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1961 (second copy)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1961 (second copy)" + ], + "uri": "i17474959", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1961 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022378" + } + ], + "enumerationChronology": [ + "July-Sept. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022378" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1959 (second copy)", + "urn:barcode:33433085022485" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1959 (second copy)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1959 (second copy)" + ], + "uri": "i17474948", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1959 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022485" + } + ], + "enumerationChronology": [ + "July-Sept. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022485" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1958 (second copy)", + "urn:barcode:33433085022022" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1958 (second copy)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1958 (second copy)" + ], + "uri": "i17474944", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1958 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022022" + } + ], + "enumerationChronology": [ + "July-Sept. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022022" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1957 (second copy)", + "urn:barcode:33433085022089" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1957 (second copy)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1957 (second copy)" + ], + "uri": "i17474938", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1957 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022089" + } + ], + "enumerationChronology": [ + "July-Sept. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022089" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1956 (second copy)", + "urn:barcode:33433085022469" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1956 (second copy)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1956 (second copy)" + ], + "uri": "i17474950", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1956 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022469" + } + ], + "enumerationChronology": [ + "July-Sept. 1956 (second copy)" + ], + "idBarcode": [ + "33433085022469" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1955 (second copy)", + "urn:barcode:33433085022139" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1955 (second copy)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1955 (second copy)" + ], + "uri": "i17474933", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1955 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022139" + } + ], + "enumerationChronology": [ + "July-Sept. 1955 (second copy)" + ], + "idBarcode": [ + "33433085022139" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1954 (second copy)", + "urn:barcode:33433085022212" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1954 (second copy)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1954 (second copy)" + ], + "uri": "i17474924", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1954 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022212" + } + ], + "enumerationChronology": [ + "July-Sept. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022212" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1953 (second copy)", + "urn:barcode:33433079509166" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1953 (second copy)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1953 (second copy)" + ], + "uri": "i17474983", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1953 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509166" + } + ], + "enumerationChronology": [ + "July-Sept. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509166" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1952 (second copy)", + "urn:barcode:33433079509133" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1952 (second copy)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1952 (second copy)" + ], + "uri": "i17474986", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1952 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509133" + } + ], + "enumerationChronology": [ + "July-Sept. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509133" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1951 (second copy)", + "urn:barcode:33433079509208" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1951 (second copy)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1951 (second copy)" + ], + "uri": "i17474979", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1951 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509208" + } + ], + "enumerationChronology": [ + "July-Sept. 1951 (second copy)" + ], + "idBarcode": [ + "33433079509208" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1950 (second copy)", + "urn:barcode:33433079509240" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1950 (second copy)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1950 (second copy)" + ], + "uri": "i17474975", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1950 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509240" + } + ], + "enumerationChronology": [ + "July-Sept. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509240" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1949 (second copy)", + "urn:barcode:33433079509109" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1949 (second copy)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1949 (second copy)" + ], + "uri": "i17474989", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1949 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509109" + } + ], + "enumerationChronology": [ + "July-Sept. 1949 (second copy)" + ], + "idBarcode": [ + "33433079509109" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1948 (second copy)", + "urn:barcode:33433085022287" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1948 (second copy)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1948 (second copy)" + ], + "uri": "i17474968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1948 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022287" + } + ], + "enumerationChronology": [ + "July-Sept. 1948 (second copy)" + ], + "idBarcode": [ + "33433085022287" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Sept. 1947 (second copy)", + "urn:barcode:33433085022741" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Sept. 1947 (second copy)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Sept. 1947 (second copy)" + ], + "uri": "i17474972", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Sept. 1947 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022741" + } + ], + "enumerationChronology": [ + "July-Sept. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022741" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) July-Aug. 1960 (second copy)", + "urn:barcode:33433085022394" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) July-Aug. 1960 (second copy)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) July-Aug. 1960 (second copy)" + ], + "uri": "i17474957", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) July-Aug. 1960 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022394" + } + ], + "enumerationChronology": [ + "July-Aug. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022394" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1963 (second copy)", + "urn:barcode:33433085022451" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1963 (second copy)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1963 (second copy)" + ], + "uri": "i17474951", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1963 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022451" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1963 (second copy)" + ], + "idBarcode": [ + "33433085022451" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1961 (second copy)", + "urn:barcode:33433085022444" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1961 (second copy)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1961 (second copy)" + ], + "uri": "i17474952", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1961 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022444" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1961 (second copy)" + ], + "idBarcode": [ + "33433085022444" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1960 (second copy)", + "urn:barcode:33433085022055" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1960 (second copy)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1960 (second copy)" + ], + "uri": "i17474941", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1960 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022055" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1960 (second copy)" + ], + "idBarcode": [ + "33433085022055" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1959 (second copy)", + "urn:barcode:33433085022113" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1959 (second copy)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1959 (second copy)" + ], + "uri": "i17474935", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1959 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022113" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1959 (second copy)" + ], + "idBarcode": [ + "33433085022113" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1958 (second copy)", + "urn:barcode:33433085022048" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1958 (second copy)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1958 (second copy)" + ], + "uri": "i17474942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1958 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022048" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1958 (second copy)" + ], + "idBarcode": [ + "33433085022048" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1957 (second copy)", + "urn:barcode:33433085022105" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1957 (second copy)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1957 (second copy)" + ], + "uri": "i17474936", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1957 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022105" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1957 (second copy)" + ], + "idBarcode": [ + "33433085022105" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1955 (second copy)", + "urn:barcode:33433085022154" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1955 (second copy)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1955 (second copy)" + ], + "uri": "i17474931", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1955 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022154" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1955 (second copy)" + ], + "idBarcode": [ + "33433085022154" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1954 (second copy)", + "urn:barcode:33433085022188" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1954 (second copy)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1954 (second copy)" + ], + "uri": "i17474928", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1954 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022188" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1954 (second copy)" + ], + "idBarcode": [ + "33433085022188" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1952 (second copy)", + "urn:barcode:33433079509141" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1952 (second copy)", + "dateRange": [ + { + "gte": "1952", + "lte": "1952" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1952" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1952 (second copy)" + ], + "uri": "i17474985", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1952 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509141" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1952 (second copy)" + ], + "idBarcode": [ + "33433079509141" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1950 (second copy)", + "urn:barcode:33433079509125" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1950 (second copy)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1950 (second copy)" + ], + "uri": "i17474987", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1950 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509125" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1950 (second copy)" + ], + "idBarcode": [ + "33433079509125" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1949 (second copy)", + "urn:barcode:33433085022303" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1949 (second copy)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1949 (second copy)" + ], + "uri": "i17474966", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1949 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022303" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1949 (second copy)" + ], + "idBarcode": [ + "33433085022303" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1947 (second copy)", + "urn:barcode:33433085022733" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1947 (second copy)", + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1947" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1947 (second copy)" + ], + "uri": "i17474973", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1947 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022733" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1947 (second copy)" + ], + "idBarcode": [ + "33433085022733" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar. 1946 (second copy)", + "urn:barcode:33433085022352" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar. 1946 (second copy)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar. 1946 (second copy)" + ], + "uri": "i17474961", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar. 1946 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022352" + } + ], + "enumerationChronology": [ + "Jan.-Mar. 1946 (second copy)" + ], + "idBarcode": [ + "33433085022352" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar 1951 (second copy)", + "urn:barcode:33433079509224" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar 1951 (second copy)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar 1951 (second copy)" + ], + "uri": "i17474977", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar 1951 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509224" + } + ], + "enumerationChronology": [ + "Jan.-Mar 1951 (second copy)" + ], + "idBarcode": [ + "33433079509224" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Mar 1948 (second copy)", + "urn:barcode:33433085022279" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Mar 1948 (second copy)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Mar 1948 (second copy)" + ], + "uri": "i17474969", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Mar 1948 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022279" + } + ], + "enumerationChronology": [ + "Jan.-Mar 1948 (second copy)" + ], + "idBarcode": [ + "33433085022279" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Jan.-Feb. 1953 (second copy)", + "urn:barcode:33433079509182" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Jan.-Feb. 1953 (second copy)", + "dateRange": [ + { + "gte": "1953", + "lte": "1953" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1953" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Jan.-Feb. 1953 (second copy)" + ], + "uri": "i17474981", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Jan.-Feb. 1953 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509182" + } + ], + "enumerationChronology": [ + "Jan.-Feb. 1953 (second copy)" + ], + "idBarcode": [ + "33433079509182" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Dec 7, 2009-Feb. 8, 2010", + "urn:barcode:33433099611158" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Dec 7, 2009-Feb. 8, 002010", + "dateRange": [ + { + "gte": "2009", + "lte": "2010" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " -2009" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Dec 7, 2009-Feb. 8, 2010" + ], + "uri": "i28878942", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Dec 7, 2009-Feb. 8, 2010" + }, + { + "type": "bf:Barcode", + "value": "33433099611158" + } + ], + "enumerationChronology": [ + "Dec 7, 2009-Feb. 8, 2010" + ], + "idBarcode": [ + "33433099611158" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Aug. 9-Oct. 25 (1930)", + "urn:barcode:33433080388063" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Aug. 9-Oct. 25 (1930)", + "dateRange": [ + { + "gte": "1930", + "lte": "1930" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " -1930" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Aug. 9-Oct. 25 (1930)" + ], + "uri": "i17586830", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Aug. 9-Oct. 25 (1930)" + }, + { + "type": "bf:Barcode", + "value": "33433080388063" + } + ], + "enumerationChronology": [ + "Aug. 9-Oct. 25 (1930)" + ], + "idBarcode": [ + "33433080388063" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1963 (second copy)", + "urn:barcode:33433085022337" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1963 (second copy)", + "dateRange": [ + { + "gte": "1963", + "lte": "1963" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1963" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1963 (second copy)" + ], + "uri": "i17474963", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1963 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022337" + } + ], + "enumerationChronology": [ + "Apr.-June 1963 (second copy)" + ], + "idBarcode": [ + "33433085022337" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1961 (second copy)", + "urn:barcode:33433085022360" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1961 (second copy)", + "dateRange": [ + { + "gte": "1961", + "lte": "1961" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1961" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1961 (second copy)" + ], + "uri": "i17474960", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1961 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022360" + } + ], + "enumerationChronology": [ + "Apr.-June 1961 (second copy)" + ], + "idBarcode": [ + "33433085022360" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1960 (second copy)", + "urn:barcode:33433085022121" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1960 (second copy)", + "dateRange": [ + { + "gte": "1960", + "lte": "1960" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1960" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1960 (second copy)" + ], + "uri": "i17474934", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1960 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022121" + } + ], + "enumerationChronology": [ + "Apr.-June 1960 (second copy)" + ], + "idBarcode": [ + "33433085022121" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1959 (second copy)", + "urn:barcode:33433085022014" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1959 (second copy)", + "dateRange": [ + { + "gte": "1959", + "lte": "1959" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1959" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1959 (second copy)" + ], + "uri": "i17474945", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1959 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022014" + } + ], + "enumerationChronology": [ + "Apr.-June 1959 (second copy)" + ], + "idBarcode": [ + "33433085022014" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1958 (second copy)", + "urn:barcode:33433085022030" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1958 (second copy)", + "dateRange": [ + { + "gte": "1958", + "lte": "1958" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1958" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1958 (second copy)" + ], + "uri": "i17474943", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1958 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022030" + } + ], + "enumerationChronology": [ + "Apr.-June 1958 (second copy)" + ], + "idBarcode": [ + "33433085022030" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1957 (second copy)", + "urn:barcode:33433085022097" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1957 (second copy)", + "dateRange": [ + { + "gte": "1957", + "lte": "1957" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1957" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1957 (second copy)" + ], + "uri": "i17474937", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1957 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022097" + } + ], + "enumerationChronology": [ + "Apr.-June 1957 (second copy)" + ], + "idBarcode": [ + "33433085022097" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1956 (second copy)", + "urn:barcode:33433085022477" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1956 (second copy)", + "dateRange": [ + { + "gte": "1956", + "lte": "1956" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1956" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1956 (second copy)" + ], + "uri": "i17474949", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1956 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022477" + } + ], + "enumerationChronology": [ + "Apr.-June 1956 (second copy)" + ], + "idBarcode": [ + "33433085022477" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1955 (second copy)", + "urn:barcode:33433085022147" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1955 (second copy)", + "dateRange": [ + { + "gte": "1955", + "lte": "1955" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1955" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1955 (second copy)" + ], + "uri": "i17474932", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1955 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022147" + } + ], + "enumerationChronology": [ + "Apr.-June 1955 (second copy)" + ], + "idBarcode": [ + "33433085022147" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1954 (second copy)", + "urn:barcode:33433085022204" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1954 (second copy)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1954 (second copy)" + ], + "uri": "i17474926", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1954 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022204" + } + ], + "enumerationChronology": [ + "Apr.-June 1954 (second copy)" + ], + "idBarcode": [ + "33433085022204" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1951 (second copy)", + "urn:barcode:33433079509216" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1951 (second copy)", + "dateRange": [ + { + "gte": "1951", + "lte": "1951" + } + ], + "dueDate": [ + "2024-09-05" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1951" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1951 (second copy)" + ], + "uri": "i17474978", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1951 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509216" + } + ], + "enumerationChronology": [ + "Apr.-June 1951 (second copy)" + ], + "idBarcode": [ + "33433079509216" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1950 (second copy)", + "urn:barcode:33433079509257" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1950 (second copy)", + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1950" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1950 (second copy)" + ], + "uri": "i17474974", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1950 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433079509257" + } + ], + "enumerationChronology": [ + "Apr.-June 1950 (second copy)" + ], + "idBarcode": [ + "33433079509257" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1949 (second copy)", + "urn:barcode:33433085022311" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1949 (second copy)", + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1949" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1949 (second copy)" + ], + "uri": "i17474965", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1949 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022311" + } + ], + "enumerationChronology": [ + "Apr.-June 1949 (second copy)" + ], + "idBarcode": [ + "33433085022311" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1948 (second copy)", + "urn:barcode:33433085022261" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1948 (second copy)", + "dateRange": [ + { + "gte": "1948", + "lte": "1948" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1948" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1948 (second copy)" + ], + "uri": "i17474970", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1948 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022261" + } + ], + "enumerationChronology": [ + "Apr.-June 1948 (second copy)" + ], + "idBarcode": [ + "33433085022261" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr.-June 1946 (second copy)", + "urn:barcode:33433085022345" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr.-June 1946 (second copy)", + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1946" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr.-June 1946 (second copy)" + ], + "uri": "i17474962", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr.-June 1946 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022345" + } + ], + "enumerationChronology": [ + "Apr.-June 1946 (second copy)" + ], + "idBarcode": [ + "33433085022345" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr. 1994", + "urn:barcode:33433078638966" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr. 001994", + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "enumerationChronology_sort": [ + " -1994" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr. 1994" + ], + "uri": "i17474401", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr. 1994" + }, + { + "type": "bf:Barcode", + "value": "33433078638966" + } + ], + "enumerationChronology": [ + "Apr. 1994" + ], + "idBarcode": [ + "33433078638966" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) Apr. -June 1954 (second copy)", + "urn:barcode:33433085022196" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) Apr. -June 1954 (second copy)", + "dateRange": [ + { + "gte": "1954", + "lte": "1954" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " -1954" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DA+ (New Yorker) Apr. -June 1954 (second copy)" + ], + "uri": "i17474927", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker) Apr. -June 1954 (second copy)" + }, + { + "type": "bf:Barcode", + "value": "33433085022196" + } + ], + "enumerationChronology": [ + "Apr. -June 1954 (second copy)" + ], + "idBarcode": [ + "33433085022196" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 42" + ], + "enumerationChronology_sort": [ + " 97-2021-12-20" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-107", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 44" + ], + "enumerationChronology_sort": [ + " 97-2022-01-03" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-106", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 45" + ], + "enumerationChronology_sort": [ + " 97-2022-01-10" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-105", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 46" + ], + "enumerationChronology_sort": [ + " 97-2022-01-24" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-104", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 47" + ], + "enumerationChronology_sort": [ + " 97-2022-01-31" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-103", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 48" + ], + "enumerationChronology_sort": [ + " 97-2022-02-07" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-102", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 25" + ], + "enumerationChronology_sort": [ + " 97-2021-08-23" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-101", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 30" + ], + "enumerationChronology_sort": [ + " 97-2021-09-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-100", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 98 No. 1-49" + ], + "enumerationChronology_sort": [ + " 98-2022-02-14" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-99", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 1" + ], + "enumerationChronology_sort": [ + " 99-2023-02-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-98", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 2" + ], + "enumerationChronology_sort": [ + " 99-2023-02-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-97", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-06", + "lte": "2023-03-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 3" + ], + "enumerationChronology_sort": [ + " 99-2023-03-06" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-96", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 3 (Mar. 6, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 4" + ], + "enumerationChronology_sort": [ + " 99-2023-03-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-95", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 5" + ], + "enumerationChronology_sort": [ + " 99-2023-03-20" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-94", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 10" + ], + "enumerationChronology_sort": [ + " 99-2023-04-24" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-93", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 11" + ], + "enumerationChronology_sort": [ + " 99-2023-05-08" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-92", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 12" + ], + "enumerationChronology_sort": [ + " 99-2023-05-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-91", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 13" + ], + "enumerationChronology_sort": [ + " 99-2023-05-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-90", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-05-29", + "lte": "2023-05-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 14" + ], + "enumerationChronology_sort": [ + " 99-2023-05-29" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-89", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 14 (May. 29, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 15" + ], + "enumerationChronology_sort": [ + " 99-2023-06-05" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-88", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 16" + ], + "enumerationChronology_sort": [ + " 99-2023-06-12" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-87", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 18" + ], + "enumerationChronology_sort": [ + " 99-2023-06-26" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-86", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 19" + ], + "enumerationChronology_sort": [ + " 99-2023-07-03" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-85", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 23" + ], + "enumerationChronology_sort": [ + " 99-2023-08-07" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-84", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 26" + ], + "enumerationChronology_sort": [ + " 99-2023-08-28" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-83", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-02", + "lte": "2023-10-02" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 31" + ], + "enumerationChronology_sort": [ + " 99-2023-10-02" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-82", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 31 (Oct. 2, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 32" + ], + "enumerationChronology_sort": [ + " 99-2023-10-09" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-81", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 33" + ], + "enumerationChronology_sort": [ + " 99-2023-10-16" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-80", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 24" + ], + "enumerationChronology_sort": [ + " 99-2023-08-14" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-79", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 25" + ], + "enumerationChronology_sort": [ + " 99-2023-08-21" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-78", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 20" + ], + "enumerationChronology_sort": [ + " 99-2023-07-10" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-77", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 21" + ], + "enumerationChronology_sort": [ + " 99-2023-07-24" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-76", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 22" + ], + "enumerationChronology_sort": [ + " 99-2023-07-31" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-75", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 29" + ], + "enumerationChronology_sort": [ + " 99-2023-09-18" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-74", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 35" + ], + "enumerationChronology_sort": [ + " 99-2023-10-30" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-73", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 36" + ], + "enumerationChronology_sort": [ + " 99-2023-11-06" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-72", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-20", + "lte": "2023-11-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 38" + ], + "enumerationChronology_sort": [ + " 99-2023-11-20" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-71", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 38 (Nov. 20, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 34" + ], + "enumerationChronology_sort": [ + " 99-2023-10-23" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-70", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 37" + ], + "enumerationChronology_sort": [ + " 99-2023-11-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-69", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 39" + ], + "enumerationChronology_sort": [ + " 99-2023-11-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-68", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 40" + ], + "enumerationChronology_sort": [ + " 99-2023-12-04" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-67", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 41" + ], + "enumerationChronology_sort": [ + " 99-2023-12-11" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-66", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 42" + ], + "enumerationChronology_sort": [ + " 99-2023-12-18" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-65", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 43" + ], + "enumerationChronology_sort": [ + " 99-2023-12-25" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-64", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 44" + ], + "enumerationChronology_sort": [ + " 99-2024-01-01" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-63", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 45" + ], + "enumerationChronology_sort": [ + " 99-2024-01-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-62", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 46" + ], + "enumerationChronology_sort": [ + " 99-2024-01-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-61", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 47" + ], + "enumerationChronology_sort": [ + " 99-2024-01-29" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-60", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 48" + ], + "enumerationChronology_sort": [ + " 99-2024-02-05" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-59", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 6" + ], + "enumerationChronology_sort": [ + " 99-2023-03-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-58", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 7" + ], + "enumerationChronology_sort": [ + " 99-2023-04-03" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-57", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 8" + ], + "enumerationChronology_sort": [ + " 99-2023-04-10" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-56", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 9" + ], + "enumerationChronology_sort": [ + " 99-2023-04-17" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-55", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 17" + ], + "enumerationChronology_sort": [ + " 99-2023-06-19" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-54", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 27" + ], + "enumerationChronology_sort": [ + " 99-2023-09-04" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-53", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 28" + ], + "enumerationChronology_sort": [ + " 99-2023-09-11" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-52", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 99 No. 30" + ], + "enumerationChronology_sort": [ + " 99-2023-09-25" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-51", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 1" + ], + "enumerationChronology_sort": [ + " 100-2024-02-12" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-50", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-04", + "lte": "2024-03-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 3" + ], + "enumerationChronology_sort": [ + " 100-2024-03-04" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-49", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 3 (Mar. 4, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 4" + ], + "enumerationChronology_sort": [ + " 100-2024-03-11" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-48", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 26" + ], + "enumerationChronology_sort": [ + " 97-2021-08-30" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-47", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 27" + ], + "enumerationChronology_sort": [ + " 97-2021-09-06" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-46", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 28" + ], + "enumerationChronology_sort": [ + " 97-2021-09-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-45", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 29" + ], + "enumerationChronology_sort": [ + " 97-2021-09-20" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-44", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-04", + "lte": "2021-10-04" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 31" + ], + "enumerationChronology_sort": [ + " 97-2021-10-04" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-43", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 31 (Oct. 4, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 32" + ], + "enumerationChronology_sort": [ + " 97-2021-10-11" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-42", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 33" + ], + "enumerationChronology_sort": [ + " 97-2021-10-18" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-41", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 34" + ], + "enumerationChronology_sort": [ + " 97-2021-10-25" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-40", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 35" + ], + "enumerationChronology_sort": [ + " 97-2021-11-01" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-39", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 36" + ], + "enumerationChronology_sort": [ + " 97-2021-11-08" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-38", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 37" + ], + "enumerationChronology_sort": [ + " 97-2021-11-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-37", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-22", + "lte": "2021-11-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 38" + ], + "enumerationChronology_sort": [ + " 97-2021-11-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-36", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 38 (Nov. 22, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 39" + ], + "enumerationChronology_sort": [ + " 97-2021-11-29" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-35", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-06", + "lte": "2021-12-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 40" + ], + "enumerationChronology_sort": [ + " 97-2021-12-06" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-34", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 40 (Dec. 6, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-13", + "lte": "2021-12-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 41" + ], + "enumerationChronology_sort": [ + " 97-2021-12-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-33", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 41 (Dec. 13, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-12-27", + "lte": "2021-12-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 43" + ], + "enumerationChronology_sort": [ + " 97-2021-12-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-32", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 43 (Dec. 27, 2021)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-02-26", + "lte": "2024-02-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 2" + ], + "enumerationChronology_sort": [ + " 100-2024-02-26" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-31", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-18", + "lte": "2024-03-18" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 5" + ], + "enumerationChronology_sort": [ + " 100-2024-03-18" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-30", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-03-25", + "lte": "2024-03-25" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 6" + ], + "enumerationChronology_sort": [ + " 100-2024-03-25" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-29", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 7" + ], + "enumerationChronology_sort": [ + " 100-2024-04-01" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-28", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 8" + ], + "enumerationChronology_sort": [ + " 100-2024-04-08" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-27", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 9" + ], + "enumerationChronology_sort": [ + " 100-2024-04-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-26", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-04-22", + "lte": "2024-04-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 10" + ], + "enumerationChronology_sort": [ + " 100-2024-04-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-25", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 10 (Apr. 22, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-05-06", + "lte": "2024-05-06" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 11" + ], + "enumerationChronology_sort": [ + " 100-2024-05-06" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-24", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 11 (May. 6, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-05-13", + "lte": "2024-05-13" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 12" + ], + "enumerationChronology_sort": [ + " 100-2024-05-13" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-23", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 12 (May. 13, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-05-20", + "lte": "2024-05-20" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 13" + ], + "enumerationChronology_sort": [ + " 100-2024-05-20" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-22", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 13 (May. 20, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-05-27", + "lte": "2024-05-27" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 14" + ], + "enumerationChronology_sort": [ + " 100-2024-05-27" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-21", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 14 (May. 27, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-06-03", + "lte": "2024-06-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 15" + ], + "enumerationChronology_sort": [ + " 100-2024-06-03" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-20", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 15 (Jun. 3, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-06-17", + "lte": "2024-06-17" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 17" + ], + "enumerationChronology_sort": [ + " 100-2024-06-17" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-19", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 17 (Jun. 17, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-06-24", + "lte": "2024-06-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 18" + ], + "enumerationChronology_sort": [ + " 100-2024-06-24" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-18", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 18 (Jun. 24, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-07-01", + "lte": "2024-07-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 19" + ], + "enumerationChronology_sort": [ + " 100-2024-07-01" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-17", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 19 (Jul. 1, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-07-08", + "lte": "2024-07-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 20" + ], + "enumerationChronology_sort": [ + " 100-2024-07-08" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-16", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 20 (Jul. 8, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-06-10", + "lte": "2024-06-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 16" + ], + "enumerationChronology_sort": [ + " 100-2024-06-10" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-15", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 16 (Jun. 10, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-07-22", + "lte": "2024-07-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 21" + ], + "enumerationChronology_sort": [ + " 100-2024-07-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-14", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 21 (Jul. 22, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-07-29", + "lte": "2024-07-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 22" + ], + "enumerationChronology_sort": [ + " 100-2024-07-29" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-13", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 22 (Jul. 29, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-08-05", + "lte": "2024-08-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 23" + ], + "enumerationChronology_sort": [ + " 100-2024-08-05" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-12", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 23 (Aug. 5, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-08-12", + "lte": "2024-08-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 24" + ], + "enumerationChronology_sort": [ + " 100-2024-08-12" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-11", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 24 (Aug. 12, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-08-19", + "lte": "2024-08-19" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 25" + ], + "enumerationChronology_sort": [ + " 100-2024-08-19" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-10", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 25 (Aug. 19, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-08-26", + "lte": "2024-08-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 26" + ], + "enumerationChronology_sort": [ + " 100-2024-08-26" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-9", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 26 (Aug. 26, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-09-02", + "lte": "2024-09-02" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 27" + ], + "enumerationChronology_sort": [ + " 100-2024-09-02" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-8", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 27 (Sep. 2, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-09-09", + "lte": "2024-09-09" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 28" + ], + "enumerationChronology_sort": [ + " 100-2024-09-09" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-7", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 28 (Sep. 9, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-09-16", + "lte": "2024-09-16" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 29" + ], + "enumerationChronology_sort": [ + " 100-2024-09-16" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-6", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 29 (Sep. 16, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-09-23", + "lte": "2024-09-23" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 30" + ], + "enumerationChronology_sort": [ + " 100-2024-09-23" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-5", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 30 (Sep. 23, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-09-30", + "lte": "2024-09-30" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 31" + ], + "enumerationChronology_sort": [ + " 100-2024-09-30" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-4", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 31 (Sep. 30, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-10-07", + "lte": "2024-10-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 32" + ], + "enumerationChronology_sort": [ + " 100-2024-10-07" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-3", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 32 (Oct. 7, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-10-14", + "lte": "2024-10-14" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 33" + ], + "enumerationChronology_sort": [ + " 100-2024-10-14" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-2", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 33 (Oct. 14, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-10-21", + "lte": "2024-10-21" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 34" + ], + "enumerationChronology_sort": [ + " 100-2024-10-21" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-1", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 34 (Oct. 21, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2024-10-28", + "lte": "2024-10-28" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 100 No. 35" + ], + "enumerationChronology_sort": [ + " 100-2024-10-28" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1144777-0", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 35 (Oct. 28, 2024)" + ], + "formatLiteral": [ + "AUG. 23, 2021-CURRENT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-12", + "lte": "2021-04-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 8" + ], + "enumerationChronology_sort": [ + " 97-2021-04-12" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-23", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 8 (Apr. 12, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-02-15", + "lte": "2021-02-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 1" + ], + "enumerationChronology_sort": [ + " 97-2021-02-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-22", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 1 (Feb. 15, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 20" + ], + "enumerationChronology_sort": [ + " 97-2021-07-12" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-21", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-05", + "lte": "2021-04-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 7" + ], + "enumerationChronology_sort": [ + " 97-2021-04-05" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-20", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 7 (Apr. 5, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-19", + "lte": "2021-04-19" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 9" + ], + "enumerationChronology_sort": [ + " 97-2021-04-19" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-19", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 9 (Apr. 19, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 21" + ], + "enumerationChronology_sort": [ + " 97-2021-07-26" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-18", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 22" + ], + "enumerationChronology_sort": [ + " 97-2021-08-02" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-17", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 23" + ], + "enumerationChronology_sort": [ + " 97-2021-08-09" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-16", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 19" + ], + "enumerationChronology_sort": [ + " 97-2021-07-05" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-15", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 18" + ], + "enumerationChronology_sort": [ + " 97-2021-06-28" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-14", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 17" + ], + "enumerationChronology_sort": [ + " 97-2021-06-21" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-13", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 16" + ], + "enumerationChronology_sort": [ + " 97-2021-06-14" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-12", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 15" + ], + "enumerationChronology_sort": [ + " 97-2021-06-07" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-11", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-31", + "lte": "2021-05-31" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 14" + ], + "enumerationChronology_sort": [ + " 97-2021-05-31" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-10", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 14 (May. 31, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 13" + ], + "enumerationChronology_sort": [ + " 97-2021-05-24" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-9", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-17", + "lte": "2021-05-17" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 12" + ], + "enumerationChronology_sort": [ + " 97-2021-05-17" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-8", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 12 (May. 17, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-05-10", + "lte": "2021-05-10" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 11" + ], + "enumerationChronology_sort": [ + " 97-2021-05-10" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-7", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 11 (May. 10, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 24" + ], + "enumerationChronology_sort": [ + " 97-2021-08-16" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-6", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-01", + "lte": "2021-03-01" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 2" + ], + "enumerationChronology_sort": [ + " 97-2021-03-01" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-5", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 2 (Mar. 1, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-08", + "lte": "2021-03-08" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 3" + ], + "enumerationChronology_sort": [ + " 97-2021-03-08" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-4", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 3 (Mar. 8, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-15", + "lte": "2021-03-15" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 4" + ], + "enumerationChronology_sort": [ + " 97-2021-03-15" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-3", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 4 (Mar. 15, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 5" + ], + "enumerationChronology_sort": [ + " 97-2021-03-22" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-2", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 6" + ], + "enumerationChronology_sort": [ + " 97-2021-03-29" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-1", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + }, + { + "shelfMark_sort": "a*DA+ (New Yorker)", + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "volumeRaw": [ + "Vol. 97 No. 10" + ], + "enumerationChronology_sort": [ + " 97-2021-04-26" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "i-h1059671-0", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "status": [ + { + "id": "status:i", + "label": "At bindery" + } + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + } + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 834 + ], + "numItemsTotal": [ + 839 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The New Yorker." + ], + "numItemVolumesParsed": [ + 769 + ], + "createdString": [ + "1925" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "popularity": 1033, + "dateEndYear": [ + 9999 + ], + "contributor_sort": [ + "ross, harold wallace, 1892-1951" + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 11 (May. 6, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 12 (May. 13, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 13 (May. 20, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 14 (May. 27, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 15 (Jun. 3, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 16 (Jun. 10, 2024)", + "position": 89, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 17 (Jun. 17, 2024)", + "position": 90, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 18 (Jun. 24, 2024)", + "position": 91, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 19 (Jul. 1, 2024)", + "position": 92, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 20 (Jul. 8, 2024)", + "position": 93, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 21 (Jul. 22, 2024)", + "position": 94, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 22 (Jul. 29, 2024)", + "position": 95, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 23 (Aug. 5, 2024)", + "position": 96, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 24 (Aug. 12, 2024)", + "position": 97, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 25 (Aug. 19, 2024)", + "position": 98, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 26 (Aug. 26, 2024)", + "position": 99, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 27 (Sep. 2, 2024)", + "position": 100, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 28 (Sep. 9, 2024)", + "position": 101, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 29 (Sep. 16, 2024)", + "position": 102, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 30 (Sep. 23, 2024)", + "position": 103, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 31 (Sep. 30, 2024)", + "position": 104, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 32 (Oct. 7, 2024)", + "position": 105, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 33 (Oct. 14, 2024)", + "position": 106, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 34 (Oct. 21, 2024)", + "position": 107, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 35 (Oct. 28, 2024)", + "position": 108, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 132 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "title_sort": [ + "the new yorker" + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "placeOfPublication": [ + "New York", + "[New York]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 132 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 707 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 108 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 774 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:co||Loaned", + "doc_count": 11 + }, + { + "key": "status:na||Not available", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-de315cf0c23e1f4f1c5b89b1a45a31aa.json b/test/fixtures/query-de315cf0c23e1f4f1c5b89b1a45a31aa.json new file mode 100644 index 00000000..b8bd8e80 --- /dev/null +++ b/test/fixtures/query-de315cf0c23e1f4f1c5b89b1a45a31aa.json @@ -0,0 +1,1003 @@ +{ + "body": { + "took": 8, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.59108, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.59108, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 4 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1855 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "idOclc": [ + "1608345" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1711598098379, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": [ + " -1933" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646033" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-e2c334a388cc8d7430c95d30f4535974.json b/test/fixtures/query-e2c334a388cc8d7430c95d30f4535974.json new file mode 100644 index 00000000..2e860f5a --- /dev/null +++ b/test/fixtures/query-e2c334a388cc8d7430c95d30f4535974.json @@ -0,0 +1,327 @@ +{ + "body": { + "took": 11, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.515587, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14332438", + "_score": 15.515587, + "_source": { + "extent": [ + "4 v." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "America", + "America -- Discovery and exploration", + "America -- History", + "Virginia", + "Virginia -- History", + "Virginia -- History -- Colonial period, ca. 1600-1775", + "New England", + "New England -- History", + "New England -- History -- Colonial period, ca. 1600-1775" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "A. Strahan" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1800 + ], + "title": [ + "The history of America ..." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1800" + ], + "creatorLiteral": [ + "Robertson, William, 1721-1793." + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Robertson, William, 1753-1835." + ], + "dateStartYear": [ + 1800 + ], + "idOclc": [ + "7127252" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*KF 1800 (Robertson, W. History of America)" + }, + { + "type": "nypl:Bnumber", + "value": "14332438" + }, + { + "type": "nypl:Oclc", + "value": "7127252" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)R220000327" + } + ], + "updatedAt": 1712865473006, + "publicationStatement": [ + "London, A. Strahan, 1800." + ], + "identifier": [ + "urn:shelfmark:*KF 1800 (Robertson, W. History of America)", + "urn:bnum:14332438", + "urn:oclc:7127252", + "urn:identifier:(WaOLN)R220000327" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "America -- Discovery and exploration.", + "America -- History.", + "Virginia -- History -- Colonial period, ca. 1600-1775.", + "New England -- History -- Colonial period, ca. 1600-1775." + ], + "titleDisplay": [ + "The history of America ..." + ], + "uri": "b14332438", + "electronicResources": [ + { + "label": "Full text available via HathiTrust - v.1", + "url": "http://hdl.handle.net/2027/mdp.39015016750922" + }, + { + "label": "Full text available via HathiTrust - v.2", + "url": "http://hdl.handle.net/2027/mdp.39015016750930" + }, + { + "label": "Full text available via HathiTrust - v.3", + "url": "http://hdl.handle.net/2027/mdp.39015016750948" + }, + { + "label": "Full text available via HathiTrust - v.4", + "url": "http://hdl.handle.net/2027/mdp.39015016750955" + } + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8vo." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "identifier": [ + "urn:shelfmark:*KF 1800 (Robertson, W. History of America)" + ], + "identifierV2": [ + { + "value": "*KF 1800 (Robertson, W. History of America)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "physicalLocation": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16983186", + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Robertson%2C+William%2C+1721-1793.&CallNumber=*KF+1800+%28Robertson%2C+W.+History+of+America%29&Date=1800&Form=30&Genre=book+non-circ&ItemEdition=The+ninth+edition&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14332438&ItemISxN=i169831863&ItemPlace=London&ItemPublisher=A.+Strahan%2C+1800.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b14332438x&Site=SASRB&Title=The+history+of+America+...&Transaction.CustomFields.Custom651=New+England+History+Colonial+period%2C+ca.+1600-1775." + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:marr2||Schwarzman Building - Rare Book Collection Room 328", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 1 + } + ] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-ecfd8465fedc653f977407a911925f12.json b/test/fixtures/query-ecfd8465fedc653f977407a911925f12.json new file mode 100644 index 00000000..74e1eef8 --- /dev/null +++ b/test/fixtures/query-ecfd8465fedc653f977407a911925f12.json @@ -0,0 +1,1311 @@ +{ + "body": { + "took": 6, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.565778, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.565778, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 4 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1855 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "idOclc": [ + "1608345" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1711598098379, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1933", + "lte": "1933" + } + ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "enumerationChronology_sort": [ + " -1933" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646033" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646033", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666" + }, + "sort": [ + " -1933" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + }, + "sort": [ + " -1855" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-ed65f4870c16baa957aef8cb9445f5dc.json b/test/fixtures/query-ed65f4870c16baa957aef8cb9445f5dc.json new file mode 100644 index 00000000..714ee143 --- /dev/null +++ b/test/fixtures/query-ed65f4870c16baa957aef8cb9445f5dc.json @@ -0,0 +1,993 @@ +{ + "body": { + "took": 7, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.565778, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.565778, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 4 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1855 + ], + "dateEndString": [ + "1uuu" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "idOclc": [ + "1608345" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1711598098379, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser)", + "urn:bnum:14937001", + "urn:oclc:1608345", + "urn:lccn:cau08001961", + "urn:identifier:0494254", + "urn:identifier:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "electronicResources": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + } + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1861", + "lte": "1861" + } + ], + "enumerationChronology": [ + "Jahrg. 1861" + ], + "enumerationChronology_sort": [ + " -1861" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433088646041" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "type": "bf:ShelfMark" + }, + { + "value": "33433088646041", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668" + } + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1855", + "lte": "1855" + } + ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], + "enumerationChronology_sort": [ + " -1855" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433096425198" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "type": "bf:ShelfMark" + }, + { + "value": "33433096425198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1860", + "lte": "1860" + } + ], + "enumerationChronology": [ + "Jahrg. 1860" + ], + "enumerationChronology_sort": [ + " -1860" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433097964930" + ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "identifierV2": [ + { + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "type": "bf:ShelfMark" + }, + { + "value": "33433097964930", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 4 + } + ] + } + }, + "item_status": { + "doc_count": 4, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-f0e73a149fb5c8609f8218574210ecb5.json b/test/fixtures/query-f0e73a149fb5c8609f8218574210ecb5.json new file mode 100644 index 00000000..60ec56c2 --- /dev/null +++ b/test/fixtures/query-f0e73a149fb5c8609f8218574210ecb5.json @@ -0,0 +1,12622 @@ +{ + "body": { + "took": 971, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.261211, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 14.261211, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 834 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 839 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "contributorLiteralNormalized": [ + "Harold Ross", + "Harold Wallace Ross", + "William Shawn", + "Tina Brown", + "David Remnick", + "Katharine White", + "Katharine Sergeant White", + "Katharine Sergeant Angell White", + "E. White", + "E. B. White", + "Rea Irvin", + "Roger Angell" + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 769 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "popularity": 1033, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 11 (May. 6, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 12 (May. 13, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 13 (May. 20, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 14 (May. 27, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 15 (Jun. 3, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 16 (Jun. 10, 2024)", + "position": 89, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 17 (Jun. 17, 2024)", + "position": 90, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 18 (Jun. 24, 2024)", + "position": 91, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 19 (Jul. 1, 2024)", + "position": 92, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 20 (Jul. 8, 2024)", + "position": 93, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 21 (Jul. 22, 2024)", + "position": 94, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 22 (Jul. 29, 2024)", + "position": 95, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 23 (Aug. 5, 2024)", + "position": 96, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 24 (Aug. 12, 2024)", + "position": 97, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 25 (Aug. 19, 2024)", + "position": 98, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 26 (Aug. 26, 2024)", + "position": 99, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 27 (Sep. 2, 2024)", + "position": 100, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 28 (Sep. 9, 2024)", + "position": 101, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 29 (Sep. 16, 2024)", + "position": 102, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 30 (Sep. 23, 2024)", + "position": 103, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 31 (Sep. 30, 2024)", + "position": 104, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 32 (Oct. 7, 2024)", + "position": 105, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 33 (Oct. 14, 2024)", + "position": 106, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 34 (Oct. 21, 2024)", + "position": 107, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 35 (Oct. 28, 2024)", + "position": 108, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1725650390151, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 132 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "contributorLiteralWithoutDates": [ + "Ross, Harold Wallace", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks)", + "Irvin, Rea", + "Angell, Roger" + ], + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 707, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Aug. 2-Oct 25, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780362" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780362", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904679" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Feb 15-May 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780347" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780347", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904674" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (May 10-July 26, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780354" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780354", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "uri": "i40904678" + }, + "sort": [ + " 97-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742412" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269794" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742438" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269804" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742420" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (May-July 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269798" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742404" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269792" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033313" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232401" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033339" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232406" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033297" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232353" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033305" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (May-July 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232398" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033321" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232403" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128200973" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "urn:barcode:33433128200973" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200973", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Dec. 3, 2018-Feb. 11, 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37529513" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128200965" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "urn:barcode:33433128200965" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200965", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Feb. 12-Apr. 30, 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37529511" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (July-Sept. 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "urn:barcode:33433128201302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201302", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (July-Sept. 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (July-Sept. 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37539308" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (May-June 2018)", + "urn:barcode:33433128201310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (May-June 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201310", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (May-June 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (May-June 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37539307" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201161" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "urn:barcode:33433128201161" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201161", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Oct.-Nov. 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37530724" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911097" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "urn:barcode:33433121911097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911097", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Aug-Oct 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790462" + }, + "sort": [ + " 93-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911246" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "urn:barcode:33433121911246" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911246", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Feb. 13-Apr. 24, 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790455" + }, + "sort": [ + " 93-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (May-July 2017)", + "urn:barcode:33433121911105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (May-July 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911105", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (May-July 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (May-July 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790460" + }, + "sort": [ + " 93-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911253" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "urn:barcode:33433121911253" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911253", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Nov. 6, 2017-Feb. 5, 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790458" + }, + "sort": [ + " 93-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892333" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "urn:barcode:33433119892333" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Dec. 5, 2016-Feb. 6, 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36118763" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119872103" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "urn:barcode:33433119872103" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872103", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Feb. 8-April 25, 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060543" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872095" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060542" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119855561" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (May-June 2016)", + "urn:barcode:33433119855561" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (May-June 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855561", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (May-June 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (May-June 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36058799" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892341" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "urn:barcode:33433119892341" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892341", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. " + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Oct. -Nov. 2016) Inc. ", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36118780" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892317" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "urn:barcode:33433119892317" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892317", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Mar. 23-Aug. 31, 2015) Inc. ", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36118736" + }, + "sort": [ + " 91-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119855579" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "urn:barcode:33433119855579" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855579", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Nov. 2, 2015- Feb. 1, 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36058800" + }, + "sort": [ + " 91-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872087" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36060538" + }, + "sort": [ + " 91-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102084" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327829" + }, + "sort": [ + " 90-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114101987" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (May-June 2014)", + "urn:barcode:33433114101987" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (May-June 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114101987", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (May-June 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (May-June 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34325260" + }, + "sort": [ + " 90-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102134" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "urn:barcode:33433114102134" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102134", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (Oct. 6-Dec. 1 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327846" + }, + "sort": [ + " 90-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762741" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "urn:barcode:33433110762741" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762741", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Jan. 6-Feb. 3, 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414227" + }, + "sort": [ + " 89-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102043" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "urn:barcode:33433114102043" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102043", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089-90 (Feb. 10-Apr. 28 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ], + "uri": "i34327008" + }, + "sort": [ + " 89-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762733" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "urn:barcode:33433110762733" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762733", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Feb. 11-Apr. 29 , 2013)", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414245" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762717" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "urn:barcode:33433110762717" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762717", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (July-Aug 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (July-Aug 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414252" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762725" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (May-June 2013)", + "urn:barcode:33433110762725" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (May-June 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762725", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (May-June 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (May-June 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414248" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762691" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "urn:barcode:33433110762691" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762691", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Nov-Dec 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414254" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762709" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "urn:barcode:33433110762709" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762709", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Sept-Oct 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414253" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "urn:barcode:33433108528377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528377", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc." + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Apr.-May 2012) Inc.", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482930" + }, + "sort": [ + " 88-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "urn:barcode:33433108528401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528401", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Dec. 10, 2012-Feb. 4, 2013)", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482938" + }, + "sort": [ + " 88-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "urn:barcode:33433108528385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528385", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Feb. 13-Mar. 26, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482935" + }, + "sort": [ + " 88-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "urn:barcode:33433108528393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528393", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (June 4-July 16, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482936" + }, + "sort": [ + " 88-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611091" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878981" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611075" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611075", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878989" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610945" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28879000" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611109" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611109", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878974" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611083" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611083", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (June-July 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878983" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610952" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878991" + }, + "sort": [ + " 87-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611133" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611133", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878953" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611117", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878970" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611141" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611141", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878948" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611125" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611125", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878958" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099612925" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099612925", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28974701" + }, + "sort": [ + " 86-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611174" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611174", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878925" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611190" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611190", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878911" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611182" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611182", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (May-June 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878920" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611166" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611166", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878932" + }, + "sort": [ + " 85-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064214" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064214", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589205" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064172" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064172", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589287" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063976" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063976", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589242" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063950" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063950", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589272" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064008" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064008", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (June-July 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589214" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063992" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063992", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589223" + }, + "sort": [ + " 84-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064198" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064198", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589269" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063968" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063968", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589251" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064206" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064206", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589263" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064180" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064180", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589278" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063943" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063943", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589274" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063984" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063984", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589229" + }, + "sort": [ + " 83-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240583" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240583", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474923" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240542" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240542", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474919" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240567" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240567", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474921" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240559" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240559", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (May-June 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474920" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240575" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240575", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474922" + }, + "sort": [ + " 82-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240500" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240500", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474915" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240534" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240534", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474918" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240492" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240492", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474914" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240518" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240518", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474916" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240526" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240526", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474917" + }, + "sort": [ + " 81-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240484" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240484", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474913" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080028222" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433080028222", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474447" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078508037" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078508037", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474399" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240468" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240468", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (May-June 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474911" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240476" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240476", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474912" + }, + "sort": [ + " 80-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240419" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240419", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474906" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240435" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240435", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474908" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240450" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240450", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474910" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240401", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474905" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240427" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240427", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (June-July 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474907" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240443" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240443", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474909" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240351" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240351", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474900" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240377", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474902" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240393", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474904" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240344" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240344", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474899" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240369" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240369", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (June-July 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474901" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240385", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474903" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240310", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474896" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240336" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240336", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474898" + }, + "sort": [ + " 77-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240302", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474895" + }, + "sort": [ + " 77-2001" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 132 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 707 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 108 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 839, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 774 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:co||Loaned", + "doc_count": 11 + }, + { + "key": "status:na||Not available", + "doc_count": 8 + }, + { + "key": "status:t||In transit", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-f40128c466efeec2e030e53a6cc5e267.json b/test/fixtures/query-f40128c466efeec2e030e53a6cc5e267.json new file mode 100644 index 00000000..3eb976c5 --- /dev/null +++ b/test/fixtures/query-f40128c466efeec2e030e53a6cc5e267.json @@ -0,0 +1,701 @@ +{ + "body": { + "took": 18, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.055676, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b11984689", + "_score": 15.055676, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Established 1900.\"", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Most issues lack subtitle.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "v. 42, no. 1-v. 62, no. 7; Jan. 1942-July 1962." + ], + "subjectLiteral_exploded": [ + "Woodwork", + "Woodwork -- Periodicals" + ], + "numItemDatesParsed": [ + 19 + ], + "publisherLiteral": [ + "Southam-Maclean Publications [etc.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 19 + ], + "createdYear": [ + 1942 + ], + "dateEndString": [ + "1962" + ], + "title": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "numItemVolumesParsed": [ + 19 + ], + "createdString": [ + "1942" + ], + "idLccn": [ + "cn 76300447" + ], + "idIssn": [ + "0316-9669" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1942 + ], + "idOclc": [ + "NYPG94-S11794" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker)" + }, + { + "type": "nypl:Bnumber", + "value": "11984689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG94-S11794" + }, + { + "type": "bf:Lccn", + "value": "cn 76300447" + }, + { + "type": "bf:Issn", + "value": "0316-9669" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1974025" + }, + { + "type": "bf:Identifier", + "value": "RCON-STC" + } + ], + "popularity": 19, + "dateEndYear": [ + 1962 + ], + "updatedAt": 1722404919828, + "publicationStatement": [ + "Don Mills, Ont. [etc.] Southam-Maclean Publications [etc.]" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:bnum:11984689", + "urn:oclc:NYPG94-S11794", + "urn:lccn:cn 76300447", + "urn:issn:0316-9669", + "urn:identifier:(WaOLN)nyp1974025", + "urn:identifier:RCON-STC" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1942" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwork -- Periodicals." + ], + "titleDisplay": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "uri": "b11984689", + "placeOfPublication": [ + "Don Mills, Ont. [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Canadian woodworker (1942)", + "Canadian woodworker and furniture manufacturer Jan.-Mar. 1942" + ], + "dimensions": [ + "29 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "allItems": { + "hits": { + "total": 19, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "enumerationChronology": [ + "v. 44 (1944)" + ], + "enumerationChronology_sort": [ + " 44-1944" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812199" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", + "urn:barcode:33433102812199" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 44 (1944)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812199", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 44 (1944)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000044 (1944)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ], + "uri": "i29976055" + } + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "enumerationChronology": [ + "v. 45 (1945)" + ], + "enumerationChronology_sort": [ + " 45-1945" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812025" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 45 (1945)", + "urn:barcode:33433102812025" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 45 (1945)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812025", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 45 (1945)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000045 (1945)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "uri": "i29976057" + } + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "enumerationChronology": [ + "v. 46 (1946)" + ], + "enumerationChronology_sort": [ + " 46-1946" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812173" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 46 (1946)", + "urn:barcode:33433102812173" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 46 (1946)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812173", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 46 (1946)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000046 (1946)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "uri": "i29976059" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "enumerationChronology": [ + "v. 44 (1944)" + ], + "enumerationChronology_sort": [ + " 44-1944" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812199" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", + "urn:barcode:33433102812199" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 44 (1944)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812199", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 44 (1944)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000044 (1944)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ], + "uri": "i29976055" + }, + "sort": [ + " 44-1944" + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 19 + } + ] + } + }, + "item_format": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 19 + } + ] + } + }, + "item_status": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 19 + } + ] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-fa534d6ecafd66381ea9c66b24d2195c.json b/test/fixtures/query-fa534d6ecafd66381ea9c66b24d2195c.json new file mode 100644 index 00000000..1e198db1 --- /dev/null +++ b/test/fixtures/query-fa534d6ecafd66381ea9c66b24d2195c.json @@ -0,0 +1,43 @@ +{ + "body": { + "took": 2, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 0, + "max_score": null, + "hits": [] + }, + "aggregations": { + "item_location": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index b321d2c5..9587451c 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -22,6 +22,36 @@ describe('Test Resources responses', function () { fixtures.disableScsbFixtures() }) + describe('GET all_bibs', () => { + it('returns bib with electronic resources filtered from items', (done) => { + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b15109087?all_items=true' + request.get(url, (err, res, body) => { + if (err) throw err + const doc = JSON.parse(body) + const electronicLocatorItemsFiltered = doc.items.filter((item) => item.electronicLocator).length === 0 + expect(electronicLocatorItemsFiltered).to.equal(true) + expect(doc.electronicResources.length).to.equal(368) + done() + }) + }) + it('returns bib with items sorted by date', (done) => { + const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b10833141?all_items=true' + request.get(url, (err, res, body) => { + if (err) throw err + const doc = JSON.parse(body) + const firstTenItems = doc.items.slice(0, 10) + const isCheckinCardItem = (item) => item.uri.includes('i-h') + // the unspoken setup of the following expectation is that checkin cards + // are not returned from ES at the beginning of the items array, but + // should end up sorted there by the response massager. + expect(firstTenItems.every(isCheckinCardItem)) + expect(doc.items[0].enumerationChronology[0]).to.equal('Vol. 100 No. 35 (Oct. 28, 2024)') + const lastIndex = doc.items.length - 1 + expect(doc.items[lastIndex].enumerationChronology[0]).to.equal('Aug. 9-Oct. 25 (1930)') + done() + }) + }) + }) describe('GET electronicResources', () => { it('returns e resources array and count without aeon links', (done) => { const url = global.TEST_BASE_URL + '/api/v0.1/discovery/resources/b14332438' @@ -50,7 +80,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(704) + expect(doc.numItemsMatched).to.equal(707) done() }) }) @@ -59,7 +89,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(572) + expect(doc.numItemsMatched).to.equal(575) done() }) }) @@ -500,7 +530,7 @@ describe('Test Resources responses', function () { }) describe('Filter by holdingLocation', function () { - ; ['loc:rc2ma', 'loc:mal92'].forEach((holdingLocationId) => { + ;['loc:rc2ma', 'loc:mal92'].forEach((holdingLocationId) => { it('returns only bibs with items in holdingLocation ' + holdingLocationId, function (done) { // Fetch all results: request.get(`${searchAllUrl}&filters[holdingLocation]=${holdingLocationId}`, function (err, response, body) { @@ -705,13 +735,13 @@ describe('Test Resources responses', function () { done() }) }) - - ; [ + let standardNumbers = [ 'b22144813', 'Danacode', // Should match `identifierV2[@type=bf:Lccn].value` '"ISBN -- 020"', '44455533322211' - ].forEach((num) => { + ] + standardNumbers.forEach((num) => { it(`should match b22144813 by "Standard Numbers": "${num}"`, function (done) { request.get(searchAllUrl + num, function (err, response, body) { if (err) throw err @@ -730,8 +760,7 @@ describe('Test Resources responses', function () { }) }) }) - - ; [ + standardNumbers = [ 'b22144813', '"Q-TAG (852 8b q tag. Staff call in bib.)"', // Should match `identifierV2[@type=bf:ShelfMark].value` '"ISSN -- 022"', // Should match `identifierV2[@type=bf:Issn].value` @@ -743,7 +772,8 @@ describe('Test Resources responses', function () { '"Standard number (old RLIN, etc.) -- 035"', '"Publisher no. -- 028 02 "', '"Report number. -- 027"' - ].forEach((num) => { + ] + standardNumbers.forEach((num) => { it(`should match b12082323 by "Standard Numbers": "${num}"`, function (done) { request.get(searchAllUrl + num, function (err, response, body) { if (err) throw err diff --git a/test/resources.test.js b/test/resources.test.js index 4cf6df60..b16440c7 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -331,6 +331,51 @@ describe('Resources query', function () { }) }) + describe('findByUri all items', () => { + after(() => { app.esClient.search.restore() }) + it('overrides items_size and items_from', async () => { + const esSearchStub = + sinon.stub(app.esClient, 'search') + .callsFake(async (body) => ({ body: { hits: { hits: [{ _source: { items: [{ uri: 'spaghetti' }] } }] } } })) + await app.resources.findByUri({ uri: 'b1234', all_items: 'true' }, {}, { query: { all_items: 'true' } }) + const searchBody = esSearchStub.getCall(0).args[0] + expect(searchBody.item_size).to.equal(undefined) + expect(searchBody.items_from).to.equal(undefined) + expect(searchBody).to.deep.equal({ + _source: { + // note absence of "*_sort" + excludes: ['uris', '*_packed', 'items.*_packed', 'contentsTitle'] + }, + size: 1, + query: { + bool: { + must: [{ term: { uri: 'b1234' } }] + } + }, + aggregations: { + item_location: { + nested: { path: 'items' }, + aggs: { + _nested: { terms: { size: 100, field: 'items.holdingLocation_packed' } } + } + }, + item_status: { + nested: { path: 'items' }, + aggs: { + _nested: { terms: { size: 100, field: 'items.status_packed' } } + } + }, + item_format: { + nested: { path: 'items' }, + aggs: { + _nested: { terms: { size: 100, field: 'items.formatLiteral' } } + } + } + } + }) + }) + }) + describe('findByUri es connection error', () => { before(() => { sinon.stub(app.esClient, 'search').callsFake((req) => { @@ -593,7 +638,7 @@ describe('Resources query', function () { } } }, - { match_all: { } } + { match_all: {} } ] } } @@ -644,7 +689,7 @@ describe('Resources query', function () { } } }, - { match_all: { } } + { match_all: {} } ] } } @@ -700,7 +745,7 @@ describe('Resources query', function () { } } }, - { match_all: { } }, + { match_all: {} }, { nested: { inner_hits: { name: 'allItems' }, diff --git a/test/resources_routes.test.js b/test/resources_routes.test.js index 6347a88e..5b6de00f 100644 --- a/test/resources_routes.test.js +++ b/test/resources_routes.test.js @@ -18,7 +18,25 @@ describe('resources routes', function () { app.resources.findByUri.restore() }) - describe('bib id with item filters', function () { + describe('bib id with item filters', () => { + it('can accept "all_items=true"', async () => { + const params = { + uri: 'b1234', all_items: 'true' + } + const query = 'item_date=1-2&item_volume=3-4&item_format=text,microfilm&item_location=SASB,LPA&item_status=here&all_items=true' + const expectedParams = { + uri: params.uri, + item_date: '1-2', + item_volume: '3-4', + item_format: 'text,microfilm', + item_location: 'SASB,LPA', + item_status: 'here', + all_items: 'true' + } + await axios.get(`${global.TEST_BASE_URL}/api/v0.1/discovery/resources/${params.uri}?${query}`) + sinon.assert.calledWith(findByUriStub, expectedParams) + }) + it('passes filters to handler', function () { const params = { uri: 'b1234'