diff --git a/README.md b/README.md index 97f031f8..275d3063 100644 --- a/README.md +++ b/README.md @@ -206,3 +206,4 @@ There is currently one feature flag in this app, which is 'no-on-site-edd'. When NB: numAvailable and numItem*Parsed counts do not **exclude** the e-item, but these items are not indexed with statuses, volumes, or date ranges, and are therefore not actually included in this count. NB: As the table above indicates, there is a mismatch between what the front end and API regard as "electronic items". As far as the API is concerned, there is only at most ONE electronic item, which can have many electronic locator values. `numElectronicResources` counts these locator values, but the other item count values treat all the electronic resources as a single item. + diff --git a/data/onsite-edd-criteria.json b/data/onsite-edd-criteria.json index 233ed669..21ff7b04 100644 --- a/data/onsite-edd-criteria.json +++ b/data/onsite-edd-criteria.json @@ -34,19 +34,15 @@ "maf", "maf82", "maf92", - "maff1", "maff3", "mag", "mag82", "mag92", - "magg1", "magg2", "magg3", - "magh1", "mai", "mai82", "mai92", - "maii1", "maii2", "maii3", "maj92", @@ -57,13 +53,11 @@ "mal72", "mal82", "mal92", - "mall1", "malm2", "malv2", "map", "map82", "map92", - "mapp1", "mapp2", "mapp3", "mas62", @@ -71,7 +65,9 @@ "mas92", "pad22", "pad32", + "pam22", "pah", + "pah22", "pah32", "pam", "pam32", @@ -80,7 +76,6 @@ "pat22", "pat32", "scf", - "scff1", "scff2", "scff3" ] diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 1521ff07..78ee2bf4 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -214,7 +214,16 @@ class DeliveryLocationsResolver { // location is not requestable: let deliveryLocation let eddRequestable - if (!isItemNyplOwned(item) || this.requestableBasedOnHoldingLocation(item)) { + const hasRecapCustomerCode = item.recapCustomerCode && item.recapCustomerCode[0] + const nyplItem = isItemNyplOwned(item) + if (!hasRecapCustomerCode) { + const requestableBasedOnHoldingLocation = nyplItem ? this.requestableBasedOnHoldingLocation(item) : true + // the length of the list of delivery locations is checked later to determine physical requestability + // In case of an offsite item with no recap customer code, we want this to be based on holding location + // so we put a placeholder '' in case it is requestable based on holding location + deliveryLocation = requestableBasedOnHoldingLocation ? [''] : [] + eddRequestable = requestableBasedOnHoldingLocation + } else if (!nyplItem || this.requestableBasedOnHoldingLocation(item)) { deliveryLocation = this.deliveryLocationsByRecapCustomerCode(item.recapCustomerCode[0]) eddRequestable = this.__eddRequestableByCustomerCode(item.recapCustomerCode[0]) } else { diff --git a/lib/requestability_resolver.js b/lib/requestability_resolver.js index 1bc7daa3..0b192d6c 100644 --- a/lib/requestability_resolver.js +++ b/lib/requestability_resolver.js @@ -12,15 +12,14 @@ class RequestabilityResolver { const itemIsInRecap = isInRecap(item) let physRequestableCriteria const hasRecapCustomerCode = item.recapCustomerCode && item.recapCustomerCode[0] - if (itemIsInRecap && !hasRecapCustomerCode) { + if (itemIsInRecap) { // recap items missing codes should default to true for phys and edd - // requestable. - physRequestableCriteria = 'Missing customer code' - deliveryInfo = { eddRequestable: true, deliveryLocation: [''] } - } else if (itemIsInRecap && hasRecapCustomerCode) { + // requestable, unless it has a non-requestable holding location deliveryInfo = DeliveryLocationsResolver.getRecapDeliveryInfo(item) - physRequestableCriteria = `${(deliveryInfo.deliveryLocation && - deliveryInfo.deliveryLocation.length) || 0} delivery locations.` + physRequestableCriteria = hasRecapCustomerCode + ? `${(deliveryInfo.deliveryLocation && + deliveryInfo.deliveryLocation.length) || 0} delivery locations.` + : 'Missing customer code' } else if (!itemIsInRecap) { deliveryInfo = DeliveryLocationsResolver.getOnsiteDeliveryInfo(item) physRequestableCriteria = `${(deliveryInfo.deliveryLocation && diff --git a/lib/resources.js b/lib/resources.js index 8a6fd6f2..ef39e4a6 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -84,6 +84,7 @@ const SEARCH_SCOPES = { 'uniformTitle.folded', 'parallelUniformTitle', 'formerTitle', + 'addedAuthorTitle', 'placeOfPublication', { field: 'items.idBarcode', on: (q) => /\d{6,}/.test(q) } ] @@ -104,7 +105,8 @@ const SEARCH_SCOPES = { 'parallelTitleAlt.folded', 'parallelCreatorLiteral.folded', 'parallelUniformTitle', - 'formerTitle' + 'formerTitle', + 'addedAuthorTitle' ] }, contributor: { @@ -870,7 +872,7 @@ const buildElasticBody = function (params) { query } } - body.min_score = 1.65 + body.min_score = 2.65 // just filters: no score } else { diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index 21672f5d..dd0b055a 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -11,7 +11,7 @@ const sampleItems = { ], holdingLocation: [ { - id: 'loc:scff3', + id: 'loc:scff2', prefLabel: 'Schomburg Center - Research & Reference - Desk' } ], @@ -46,7 +46,7 @@ const sampleItems = { uri: 'i12227153', holdingLocation: [ { - id: 'loc:scff1', + id: 'loc:scf', label: 'Schomburg Center - Research & Reference' } ], @@ -530,4 +530,24 @@ describe('Delivery-locations-resolver', function () { ).to.equal(true) }) }) + describe('getRecapDeliveryInfo', function () { + it('returns empty deliveryLocation and eddRequestable false based on holding location when missing recapCustomerCode', function () { + const resolved = DeliveryLocationsResolver.getRecapDeliveryInfo({ + holdingLocation: [{ id: 'loc:rccd8' }], + uri: 'i14747243' + }) + expect(resolved.deliveryLocation.length).to.equal(0) + expect(resolved.eddRequestable).to.equal(false) + }) + + it('returns empty string delivery location and eddRequestable true based on holding location when missing recapCustomerCode', function () { + const resolved = DeliveryLocationsResolver.getRecapDeliveryInfo({ + holdingLocation: [{ id: 'loc:rcpm2' }], + uri: 'i14747243' + }) + expect(resolved.deliveryLocation.length).to.equal(1) + expect(resolved.deliveryLocation[0]).to.equal('') + expect(resolved.eddRequestable).to.equal(true) + }) + }) }) diff --git a/test/fixtures/no_recap_response.js b/test/fixtures/no_recap_response.js new file mode 100644 index 00000000..18ee781c --- /dev/null +++ b/test/fixtures/no_recap_response.js @@ -0,0 +1,808 @@ +exports.fakeElasticSearchResponseNyplItem = () => { + return { + _shards: { + failed: 0, + successful: 1, + total: 1 + }, + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ + { + _id: 'b10980129', + _source: { + numItems: [ + 4 + ], + createdString: [ + '1989' + ], + issuance: [ + { + label: 'monograph/item', + id: 'urn:biblevel:m' + } + ], + creatorLiteral: [ + 'Maḥfūẓ, Najīb, 1911-2006.' + ], + creator_sort: [ + 'maḥfūẓ, najīb, 1911-2006.' + ], + level: 'debug', + items: [ + { + uri: 'i22566485', + identifier: [ + 'urn:barcode:33433058338470' + ], + status: [ + { + label: 'Available', + id: 'status:a' + } + ] + }, + { + uri: 'i22566489' + }, + { + holdingLocation_packed: [ + 'loc:scff2||Schomburg Center - Research & Reference' + ], + suppressed: [ + false + ], + shelfMark: [ + 'Sc D 90-863' + ], + accessMessage_packed: [ + 'accessMessage:1||USE IN LIBRARY' + ], + uri: 'i10283665', + accessMessage: [ + { + label: 'USE IN LIBRARY', + id: 'accessMessage:1' + } + ], + catalogItemType: [ + { + id: 'catalogItemType:2', + label: 'book non-circ' + } + ], + deliveryLocation_packed: [ + 'loc:sc||Schomburg Center' + ], + owner: [ + { + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' + } + ], + deliveryLocation: [ + { + label: 'Schomburg Center', + id: 'loc:sc' + } + ], + identifier: [ + 'urn:barcode:32101071572406' + ], + requestable: [ + true + ], + owner_packed: [ + 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + ], + status: [ + { + label: 'Available', + id: 'status:a' + } + ], + holdingLocation: [ + { + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' + } + ], + status_packed: [ + 'status:a||Available' + ] + }, + { + holdingLocation_packed: [ + 'loc:scff2||Schomburg Center - Research & Reference' + ], + suppressed: [ + false + ], + shelfMark: [ + 'Sc D 90-863' + ], + accessMessage_packed: [ + 'accessMessage:1||USE IN LIBRARY' + ], + uri: 'i10283665777', + accessMessage: [ + { + label: 'USE IN LIBRARY', + id: 'accessMessage:1' + } + ], + catalogItemType: [ + { + id: 'catalogItemType:2', + label: 'book non-circ' + } + ], + deliveryLocation_packed: [ + 'loc:sc||Schomburg Center' + ], + owner: [ + { + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' + } + ], + deliveryLocation: [ + { + label: 'Schomburg Center', + id: 'loc:sc' + } + ], + identifier: [ + 'urn:barcode:32101071572406777' + ], + requestable: [ + true + ], + owner_packed: [ + 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + ], + status: [ + { + label: 'Not Available', + id: 'status:na' + } + ], + holdingLocation: [ + { + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' + } + ], + status_packed: [ + 'status:na||Not Available' + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' + } + ], + status_packed: [ + 'status:na||Not Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i10283664', + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:na', + label: 'Not available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:1000546836' + ], + holdingLocation_packed: [ + 'loc:rc2ma||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i102836649', + recapCustomerCode: [], + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:rc2ma||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:dya0f' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i102836659', + recapCustomerCode: [], + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:dya0f||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance (unrequestable location)', + id: 'loc:rcpd8' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + uri: 'i102836649-unrequestable', + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:rcpd8||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + } + ], + message: 'ResourceSerializer#serialize', + materialType_packed: [ + 'resourcetypes:txt||Text' + ], + suppressed: [ + 'false' + ], + placeOfPublication: [ + 'New York :' + ], + dateEndString: [ + '1984' + ], + title_sort: [ + 'the thief and the dogs' + ], + uris: [ + 'b11293188', + 'b11293188-i22566485', + 'b11293188-i22566489', + 'b11293188-i10283665', + 'b11293188-i10283664' + ], + language: [ + { + id: 'lang:eng', + label: 'English' + } + ], + dateString: [ + '1989' + ], + identifier: [ + 'urn:bnum:11293188', + 'urn:oclc:12248278', + 'urn:lcc:PJ7846.A46', + 'urn:lccCoarse:PJ7695.8-7976' + ], + publisher: [ + 'Doubleday,' + ], + type: [ + 'nypl:Item' + ], + createdYear: [ + 1989 + ], + contributor_sort: [ + 'badawī, muḥammad muṣṭafá.' + ], + materialType: [ + { + id: 'resourcetypes:txt', + label: 'Text' + } + ], + numAvailable: [ + 2 + ], + dimensions: [ + '22 cm.' + ], + carrierType_packed: [ + 'carriertypes:nc||volume' + ], + note: [ + 'Translation of: al-Liṣṣ wa-al-kilāb.' + ], + dateStartYear: [ + 1989 + ], + shelfMark: [ + '*OFC 90-2649' + ], + idOwi: [ + 'urn:owi:58201773' + ], + mediaType: [ + { + label: 'unmediated', + id: 'mediatypes:n' + } + ], + title: [ + 'The thief and the dogs', + 'The thief and the dogs /' + ], + titleAlt: [ + 'Liṣṣ wa-al-kilāb.' + ], + language_packed: [ + 'lang:eng||English' + ], + mediaType_packed: [ + 'mediatypes:n||unmediated' + ], + titleDisplay: [ + 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' + ], + uri: 'b11293188', + extent: [ + '158 p. ;' + ], + carrierType: [ + { + id: 'carriertypes:nc', + label: 'volume' + } + ], + issuance_packed: [ + 'urn:biblevel:m||monograph/item' + ], + contributorLiteral: [ + 'Badawī, Muḥammad Muṣṭafá.', + 'Le Gassick, Trevor.', + 'Rodenbeck, John.' + ], + dateEndYear: [ + 1984 + ] + }, + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 + } + ] + }, + timed_out: false + } +} + +exports.fakeElasticSearchResponseCulItem = () => { + return { + _shards: { + failed: 0, + successful: 1, + total: 1 + }, + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ + { + _type: 'resource', + _id: 'cb1000077', + _source: { + extent: [ + 'iii, 332 leaves, bound.' + ], + note: [ + { + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--Columbia University, 1989.', + type: 'bf:Note' + }, + { + noteType: 'Bibliography', + label: 'Includes bibliographical references (leaves 314-332).', + type: 'bf:Note' + } + ], + language: [ + { + label: 'English', + id: 'lang:eng' + } + ], + createdYear: [ + 1989 + ], + title: [ + 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' + ], + type: [ + 'nypl:Item' + ], + createdString: [ + '1989' + ], + creatorLiteral: [ + 'Cappetti, Carla Sofia.' + ], + materialType_packed: [ + 'resourcetypes:txt||Text' + ], + language_packed: [ + 'lang:eng||English' + ], + dateStartYear: [ + 1989 + ], + identifierV2: [ + { + type: 'nypl:Bnumber', + value: '1000077' + } + ], + carrierType_packed: [ + 'carriertypes:nc||volume' + ], + creator_sort: [ + 'cappetti, carla sofia.' + ], + issuance_packed: [ + 'urn:biblevel:m||monograph/item' + ], + updatedAt: 1523471203726, + publicationStatement: [ + '1989.' + ], + mediaType_packed: [ + 'mediatypes:n||unmediated' + ], + identifier: [ + 'urn:bnum:1000077' + ], + materialType: [ + { + label: 'Text', + id: 'resourcetypes:txt' + } + ], + carrierType: [ + { + label: 'volume', + id: 'carriertypes:nc' + } + ], + dateString: [ + '1989' + ], + title_sort: [ + 'urbanism as a way of writing : chicago urban sociology and chicago urban literat' + ], + mediaType: [ + { + label: 'unmediated', + id: 'mediatypes:n' + } + ], + titleDisplay: [ + 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' + ], + uri: 'cb1000077', + numItems: [ + 1 + ], + numAvailable: [ + 1 + ], + uris: [ + 'cb1000077', + 'cb1000077-ci1455504' + ], + issuance: [ + { + label: 'monograph/item', + id: 'urn:biblevel:m' + } + ], + items: [ + { + owner: [ + { + label: 'Columbia University Libraries', + id: 'orgs:0002' + } + ], + accessMessage_packed: [ + 'accessMessage:1||Use in library' + ], + identifier: [ + 'urn:barcode:1000020117' + ], + catalogItemType_packed: [ + 'catalogItemType:1||non-circ' + ], + accessMessage: [ + { + label: 'Use in library', + id: 'accessMessage:1' + } + ], + status_packed: [ + 'status:a||Available ' + ], + shelfMark: [ + 'LD1237.5D 1989 .C166' + ], + uri: 'ci1455504', + recapCustomerCode: [], + identifierV2: [ + { + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166' + }, + { + type: 'bf:Barcode', + value: '1000020117' + } + ], + idBarcode: [ + '1000020117' + ], + owner_packed: [ + 'orgs:0002||Columbia University Libraries' + ], + requestable: [ + true + ], + catalogItemType: [ + { + label: 'non-circ', + id: 'catalogItemType:1' + } + ], + status: [ + { + label: 'Available ', + id: 'status:a' + } + ] + }, + { + owner: [ + { + label: 'Columbia University Libraries', + id: 'orgs:0002' + } + ], + accessMessage_packed: [ + 'accessMessage:1||Use in library' + ], + identifier: [ + 'urn:barcode:10000201179999' + ], + catalogItemType_packed: [ + 'catalogItemType:1||non-circ' + ], + accessMessage: [ + { + label: 'Use in library', + id: 'accessMessage:1' + } + ], + status_packed: [ + 'status:a||Available ' + ], + shelfMark: [ + 'LD1237.5D 1989 .C166 9999' + ], + uri: 'ci14555049999', + identifierV2: [ + { + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166 9999' + }, + { + type: 'bf:Barcode', + value: '10000201179999' + } + ], + idBarcode: [ + '10000201179999' + ], + owner_packed: [ + 'orgs:0002||Columbia University Libraries' + ], + requestable: [ + true + ], + catalogItemType: [ + { + label: 'non-circ', + id: 'catalogItemType:1' + } + ], + status: [ + { + label: 'Available ', + id: 'status:a' + } + ] + } + ] + } + } + ] + } + } +} diff --git a/test/fixtures/query-daa0c7e1e1697fea4af94092143a70c4.json b/test/fixtures/query-0420c26458cd4978e4f489df5bfa9cbe.json similarity index 99% rename from test/fixtures/query-daa0c7e1e1697fea4af94092143a70c4.json rename to test/fixtures/query-0420c26458cd4978e4f489df5bfa9cbe.json index a4a8603c..3f973889 100644 --- a/test/fixtures/query-daa0c7e1e1697fea4af94092143a70c4.json +++ b/test/fixtures/query-0420c26458cd4978e4f489df5bfa9cbe.json @@ -1,6 +1,6 @@ { "body": { - "took": 560, + "took": 512, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-9d67d8325d1b33d4a7d35643c0532d24.json b/test/fixtures/query-0ba9bf1be6e74223d144a9ae683e687f.json similarity index 87% rename from test/fixtures/query-9d67d8325d1b33d4a7d35643c0532d24.json rename to test/fixtures/query-0ba9bf1be6e74223d144a9ae683e687f.json index 1e4e8f5b..bf0b502d 100644 --- a/test/fixtures/query-9d67d8325d1b33d4a7d35643c0532d24.json +++ b/test/fixtures/query-0ba9bf1be6e74223d144a9ae683e687f.json @@ -1,6 +1,6 @@ { "body": { - "took": 683, + "took": 367, "timed_out": false, "_shards": { "total": 2, @@ -10,7 +10,7 @@ }, "hits": { "total": { - "value": 34, + "value": 32, "relation": "eq" }, "max_score": null, @@ -11080,1135 +11080,6 @@ } } } - }, - { - "_index": "resources-2024-06-13", - "_id": "b10685709", - "_score": 2.55205, - "_source": { - "extent": [ - "volumes <1-12> : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Volume 2 edited by Harold D. Moser and Sharon Macpherson.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 5 edited by Harold D. Moser, David H. Roth, and George H. Hoemann.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 6 edited by Harold D. Moser, J. Clint Clifft and assistant editor Wyatt C. Wells.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 7 edited by Daniel Feller, Harold D. Moser, Laura-Eve Moss, and Thomas Coens.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 8 edited by Daniel Feller, Thomas Coens, and Laura-Eve Moss.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 9 edited by Daniel Feller, Laura-Eve Moss, Thomas Coens, and Erik B. Alexander.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volumes 10-11 edited by Daniel Feller, Thomas Coens, and Laura-Eve Moss.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 12 edited by Daniel Feller, Thomas Coens, Laura-Eve Moss, and Aaron Crawford.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jackson, Andrew, 1767-1845", - "1829-1837", - "Presidents", - "Presidents -- United States", - "Presidents -- United States -- Correspondence", - "Politics and government", - "United States", - "United States -- Politics and government", - "United States -- Politics and government -- 1829-1837", - "United States -- Politics and government -- 1829-1837 -- Sources" - ], - "numItemDatesParsed": [ - 2 - ], - "publisherLiteral": [ - "University of Tennessee Press" - ], - "description": [ - "\"Andrew Jackson is one of the most critical and controversial figures in American history. A dominant actor on the American scene in the period between the Revolution and Civil War, he stamped his name first on a mass political movement and then an era. At the same time Jackson's ascendancy accelerated the dispossession and death of Native Americans and spurred the expansion of slavery. 'The Papers of Andrew Jackson' is a project to collect and publish Jackson's entire extant literary record. The project is now producing a series of seventeen volumes that will bring Jackson's most important papers to the public in easily readable form.\"--", - "V. 6. This sixth volume of The Papers of Andrew Jackson documents the election on Andrew Jackson, the first westerner and the last veteran of the American Revolution, to the presidency. The four years of this volume chronicle the presidential campaign of 1828. Jackson, winner of the popular vote in 1824 but loser of the election, was once again the reluctant candidate, called into service by the voice of the voters. The campaign, one of the longest in American history, pitted Jackson against the incumbent John Quincy Adams; it was also one of the dirtiest campaigns in American history. The brunt of the mudslinging was aimed at Jackson, and it is covered in detail in this volume. Every aspect of the public and private life of the fifty-eight-year-old former major general in the United States Army came under scrutiny, and in both his opponents found him deficient. According to his detractors, he lacked the moral principles, the temperament, the education, and the family background requisite for a president of the United States. In sum, Jackson resembled the devil incarnate, to use his own words. The mudslinging left Jackson livid, anxious for retribution but constrained by the cause in which he was engaged. The presidential campaign of 1828, in the minds of Jackson and his supporters, was for the cause of truth and democracy against corrupt, self-seeking politicians, an aristocracy of power built upon bargains and dubious political alliances dedicated to its perpetuation in office. The four years covered in this volume were some of the most trying in Jackson s life, but the one event that hurt Jackson the most was the death of his wife. Until his dying day, Jackson contended that her death had been hastened by the slanders of his opponents in the campaign. As great as the loss was for him personally, Jackson nonetheless rejoiced in the results of the election for, in his eyes, the voice of the people had finally been heard. Liberty, not power, had triumphed. Reform was at hand, and retribution would surely follow.", - "V. 7. With this seventh volume, The Papers of Andrew Jackson enters the heart of Jackson's career: his tumultuous two terms as president of the United States. The year 1829 began with Jackson fresh from a triumphant victory over incumbent John Quincy Adams in the 1828 campaign, yet mourning the sudden death of his beloved wife, Rachel. In January, having hired an overseer for his Hermitage plantation and arranged for Rachel's tomb, he left Tennessee for Washington. Jackson assumed the presidency with two objectives already fixed in mind: purging the federal bureaucracy of recreant officeholders and removing the southern Indian tribes westward beyond state authority. By year's end he had added two more: purchasing Texas and destroying the Bank of the United States. But meanwhile he found himself diverted, and nearly consumed, by the notorious Peggy Eaton affair--a burgeoning scandal which pitted the president, his Secretary of War John Eaton, and the latter's vivacious wife against the Washington guardians of feminine propriety. This first presidential volume reveals all these stories, and many more, in a depth never seen before. It presents full texts of more than four hundred documents, most printed for the first time. Gathered from a vast array of libraries, archives, and individual owners, they include Jackson's intimate exchanges with family and friends, private notes and musings, and formative drafts of public addresses. Administrative papers range from presidential pardons to military promotions to plans for discharging the public debt. They exhibit Jackson's daily conduct of the executive office in close and sometimes startling detail, and cast new light on such controversial matters as Indian removal and political patronage. Included also are letters to the president from people in every corner of the country and every walk of life: Indian delegations presenting grievances, distraught mothers pleading help for wayward sons, aged veterans begging pensions, politicians offering advice and seeking jobs. Embracing a broad spectrum of actors and events, this volume offers an incomparable window not only into Jackson and his presidency, but into America itself in 1829.", - "V. 8. This eighth volume of Andrew Jackson s papers presents more than five hundred documents, many appearing here for the first time, from a core year in Jackson s tumultuous presidency. They include Jackson s handwritten drafts of his presidential messages, private notes and memoranda, and correspondence with government officials, Army and Navy officers, friends and family, Indian leaders, foreign diplomats, and ordinary citizens throughout the country. In 1830 Jackson pursued his controversial Indian removal policy, concluding treaties to compel the Choctaws and Chickasaws west of the Mississippi and refusing protection for the Cherokees against encroachments by Georgia. Jackson nurtured his opposition to the Bank of the United States and entered into an escalating confrontation with the Senate over presidential appointments to office. In April, Jackson pronounced his ban on nullification with the famous toast to Our Federal Union, and in May he began an explosive quarrel with Vice-President John C. Calhoun over the latter s conduct as secretary of war during Jackson s Seminole campaign of 1818. Also in May, Jackson delivered his first presidential veto, stopping federal funding for the Maysville Road and declaring opposition to Henry Clay s American System. In July, Jackson s refusal to use his pardoning power to save an Irish-born mail robber from the gallows provoked a near-riot in Philadelphia. By the end of the year, Jackson was preparing for his reelection campaign in 1832. Meanwhile the sex scandal surrounding Peggy Eaton, wife of the secretary of war, lurked throughout, dividing Jackson s cabinet, sundering his own family and household, and threatening to wreck the administration. Embracing all these stories and many more, this volume offers an incomparable window not only into Andrew Jackson and his presidency but into 1830s America itself.", - "V. 9. This volume presents more than five hundred original documents, many newly discovered, from Andrew Jackson s third presidential year. They include Jackson s private memoranda, intimate family letters, and correspondence with government and military officers, diplomats, Indians, political friends and foes, and ordinary citizens throughout the country. In 1831 Jackson finally cleared his contentious Cabinet, reluctantly accepting the resignations of Martin Van Buren and John Eaton and demanding that the other members follow. But in the aftermath, animosities among them boiled over, as Eaton sought duels with outgoing secretaries Samuel Ingham and John Berrien. The affair ended with gangs of armed high-government officers stalking each other in the Washington streets, and with Ingham publicly accusing Jackson of countenancing a plot to assassinate him. Meanwhile, Jackson pursued his feud with Vice-President John C. Calhoun, whom he had come to view as the diabolical manipulator of all his enemies. Enlisting a favorite Supreme Court justice to gather evidence, Jackson crafted an exposition, intended for publication, that leveled nearly fantastic charges against Calhoun and others. Through all this, the business of government ploughed on. Jackson pursued his drive to remove the Cherokees and other Indians west of the Mississippi and to undercut tribal leaders who dared resist. To squelch sectional controversy, Jackson moved to retire the national debt and reduce the tariff, while reiterating his ban on nullification and his opposition to the Bank of the United States. Nat Turner's Virginia slave revolt in August drew a quick administration response. By year s end, the dust over the Cabinet implosion was settling, as Jackson prepared to stand for reelection against his old nemesis Henry Clay. Embracing all these stories and many more, this volume offers an incomparable window not only into Andrew Jackson and his presidency but into America itself in 1831.", - "V. 10. This volume presents more than four hundred documents from Andrew Jackson s fourth presidential year. It includes private memoranda, intimate family letters, drafts of official messages, and correspondence with government and military officers, diplomats, Indians, political friends and foes, and ordinary citizens throughout the country. The year 1832 began with Jackson still pursuing his feud with Vice President John C. Calhoun, whom Jackson accused of secretly siding against him in the 1818 controversy over Jackson s Seminole campaign in Florida. The episode ended embarrassingly for Jackson when a key witness, called on to prove his charges, instead directly contradicted them. Indian removal remained a preoccupation for Jackson. The Choctaws began emigrating westward, the Creeks and Chickasaws signed but then immediately protested removal treaties, and the Cherokees won what proved to be an empty victory against removal in the Supreme Court. Illinois Indians mounted armed resistance in the Black Hawk War. In midsummer, a cholera epidemic swept the country, and Jackson was urged to proclaim a day of fasting and prayer. He refused, saying it would intermingle church and state. A bill to recharter the Bank of the United States passed Congress in July, and Jackson vetoed it with a ringing message that became the signature document of his presidency. In November, Jackson, with new running mate Martin Van Buren, won triumphant reelection over Henry Clay. But only days later, South Carolina nullified the federal tariff law and began preparing for armed resistance. Jackson answered with an official proclamation that disunion by armed force is treason. The year closed with Jackson immersed in plans to suppress nullification and destroy the Bank of the United States. Embracing all these stories and many more, this volume offers an incomparable window into Andrew Jackson, his presidency, and America itself in 1832.", - "V. 11. This volume presents full annotated text of five hundred documents from Andrew Jackson's fifth presidential year. They include his private memoranda, intimate family letters, presidential message drafts, and correspondence with government and military officers, diplomats, Indian leaders, political friends and foes, and citizens throughout the country.The year 1833 began with a crisis in South Carolina, where a state convention had declared the federal tariff law null and void and pledged resistance by armed force if necessary. Jackson countered by rallying public opinion against the nullifiers, quietly positioning troops and warships, and procuring a \"force bill\" from Congress to compel collection of customs duties. The episode ended peaceably after South Carolina accepted a compromise tariff devised by Jackson's arch-rival Henry Clay. But Clay's surprise cooperation with South Carolina's John C. Calhoun foretold a new opposition coalition against Jackson.With nullification checked, Jackson embarked in June on a triumphal tour to cement his newfound popularity in the North. Ecstatic crowds greeted him in Philadelphia, New York, and Boston, and Harvard awarded him a degree. But Jackson's fragile health broke under the strain, forcing him to cut the tour short. Meanwhile Jackson pursued his campaign against the Bank of the United States, whose recharter he had vetoed in 1832. Charging the Bank with political meddling and corruption, Jackson determined to cripple it by removing federal deposits to state banks. But Treasury secretary William John Duane refused either to give the necessary order or resign. In September Jackson dismissed him and installed Roger Taney to implement the removal. Jackson's bold assumption of authority energized supporters but outraged opponents, prompting Clay to introduce a Senate resolution of censure.The year closed with Jackson girding for further battle over the Bank, pursuing schemes to pry the province of Texas loose from Mexico, and trying to stem rampant land frauds that his own Indian removal policy had unleashed against Creek Indians in Alabama. Unfolding these stories and many more, this volume offers an incomparable window into Andrew Jackson, his presidency, and America itself in 1833.", - "V. 12. This volume presents more than five hundred annotated original documents from Andrew Jackson's sixth presidential year. They include his private memoranda, intimate family letters, official messages, and correspondence with government and military officers, diplomats, Indian leaders, political friends and foes, and plain citizens throughout the country. The year 1834 began with Jackson battling the United States Senate. Pursuing his campaign against the federally chartered Bank of the United States, Jackson in 1833 had installed Roger Taney as interim Treasury secretary to transfer the government's deposits to selected state-chartered \"pet\" banks. The Bank retaliated by curtailing its business, setting off a commercial crisis and a political frenzy. In 1834 the Senate, controlled by the new opposition Whig Party led by Jackson's old nemeses Henry Clay and John C. Calhoun, rejected a slew of Jackson's nominees for office, including Taney, and adopted an unprecedented (and still unparalleled) resolution of censure against Jackson himself. Jackson returned a scathing protest, which the Senate rejected. Meanwhile the administration struggled to implement its \"experiment\" of conducting government finances through state banks. Throughout the year Jackson pursued his aim of compelling eastern Indians to remove west of the Mississippi. In May the Chickasaws signed a removal treaty. But brazen frauds complicated the administration's scheme to induce individual Creeks to emigrate from Alabama, while the Cherokees, led by Principal Chief John Ross, stood fast in resistance. In June some unauthorized dissident Cherokees signed a removal treaty, but it died in the Senate. In 1834 Jackson continued his longstanding effort to pry the province of Texas loose from Mexico, while the U.S. hurtled toward confrontation with France over French failure to pay an indemnity due under an 1831 treaty. Other matters engaging Jackson included corruption scandals in the Post Office Department and at Mississippi land offices, fractious disputes over rank and seniority among Army and Navy officers, and a fire that gutted Jackson's Hermitage home in Tennessee. Unfolding these stories and many more, this volume offers a revelatory window into Andrew Jackson, his presidency, and America itself in 1834." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 11 - ], - "createdYear": [ - 1980 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The papers of Andrew Jackson" - ], - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "numItemVolumesParsed": [ - 11 - ], - "createdString": [ - "1980" - ], - "creatorLiteral": [ - "Jackson, Andrew, 1767-1845" - ], - "idLccn": [ - "79015078" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Smith, Sam B., 1929-2003", - "Owsley, Harriet Chappell, 1901-1999", - "Macpherson, Sharon C.", - "Remini, Robert V. (Robert Vincent), 1921-2013", - "Moser, Harold D.", - "Feller, Daniel, 1950-", - "Roth, David H.", - "Hoemann, George H., 1952-", - "Coens, Thomas, 1974-", - "Moss, Laura-Eve", - "Alexander, Erik B.", - "Crawford, Aaron" - ], - "dateStartYear": [ - 1980 - ], - "creatorModifiedName": "Andrew Jackson", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IAW (Jackson) 80-3099" - }, - { - "type": "nypl:Bnumber", - "value": "10685709" - }, - { - "type": "bf:Isbn", - "value": "0870492195" - }, - { - "type": "bf:Isbn", - "value": "9780870492198" - }, - { - "type": "bf:Isbn", - "value": "0870494414" - }, - { - "type": "bf:Isbn", - "value": "9780870494413" - }, - { - "type": "bf:Isbn", - "value": "0870496506" - }, - { - "type": "bf:Isbn", - "value": "9780870496509" - }, - { - "type": "bf:Isbn", - "value": "0870497782" - }, - { - "type": "bf:Isbn", - "value": "9780870497780" - }, - { - "type": "bf:Isbn", - "value": "0870498975" - }, - { - "type": "bf:Isbn", - "value": "9780870498978" - }, - { - "type": "bf:Isbn", - "value": "1572331747" - }, - { - "type": "bf:Isbn", - "value": "9781572331747" - }, - { - "type": "bf:Isbn", - "value": "9781572335936" - }, - { - "type": "bf:Isbn", - "value": "1572335939" - }, - { - "type": "bf:Isbn", - "value": "9781572337152" - }, - { - "type": "bf:Isbn", - "value": "157233715X" - }, - { - "type": "bf:Isbn", - "value": "9781621900047" - }, - { - "type": "bf:Isbn", - "value": "1621900045" - }, - { - "type": "bf:Isbn", - "value": "9781621902676" - }, - { - "type": "bf:Isbn", - "value": "1621902676" - }, - { - "type": "bf:Isbn", - "value": "9781621905387" - }, - { - "type": "bf:Isbn", - "value": "1621905381" - }, - { - "type": "bf:Isbn", - "value": "9781621907558" - }, - { - "type": "bf:Isbn", - "value": "1621907554" - }, - { - "type": "nypl:Oclc", - "value": "5029597" - }, - { - "type": "bf:Lccn", - "value": "79015078" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5029597" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)609560879 (OCoLC)769265853 (OCoLC)769850561 (OCoLC)770876143 (OCoLC)777774362 (OCoLC)807573070 (OCoLC)876110400 (OCoLC)890078391 (OCoLC)890280620 (OCoLC)894132413 (OCoLC)913850526 (OCoLC)914132651 (OCoLC)922670928 (OCoLC)958221171 (OCoLC)1101360978 (OCoLC)1114108948 (OCoLC)1131934218 (OCoLC)1164180119 (OCoLC)1222878957 (OCoLC)1225660295" - } - ], - "idOclc": [ - "5029597" - ], - "uniformTitle": [ - "Works" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 5 (1821 - 1824)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "status": "Bound" - }, - { - "coverage": "No. 6 (1825 - 1828)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "status": "Bound" - } - ], - "holdingStatement": [ - "1-7,10,12" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "IAW (Jackson) 80-3099" - } - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "location": [ - { - "code": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "uri": "h1030920" - } - ], - "updatedAt": 1712577705364, - "publicationStatement": [ - "Knoxville : University of Tennessee Press, [1980-]", - "©1980" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099", - "urn:bnum:10685709", - "urn:isbn:0870492195", - "urn:isbn:9780870492198", - "urn:isbn:0870494414", - "urn:isbn:9780870494413", - "urn:isbn:0870496506", - "urn:isbn:9780870496509", - "urn:isbn:0870497782", - "urn:isbn:9780870497780", - "urn:isbn:0870498975", - "urn:isbn:9780870498978", - "urn:isbn:1572331747", - "urn:isbn:9781572331747", - "urn:isbn:9781572335936", - "urn:isbn:1572335939", - "urn:isbn:9781572337152", - "urn:isbn:157233715X", - "urn:isbn:9781621900047", - "urn:isbn:1621900045", - "urn:isbn:9781621902676", - "urn:isbn:1621902676", - "urn:isbn:9781621905387", - "urn:isbn:1621905381", - "urn:isbn:9781621907558", - "urn:isbn:1621907554", - "urn:oclc:5029597", - "urn:lccn:79015078", - "urn:identifier:(OCoLC)5029597", - "urn:identifier:(OCoLC)609560879 (OCoLC)769265853 (OCoLC)769850561 (OCoLC)770876143 (OCoLC)777774362 (OCoLC)807573070 (OCoLC)876110400 (OCoLC)890078391 (OCoLC)890280620 (OCoLC)894132413 (OCoLC)913850526 (OCoLC)914132651 (OCoLC)922670928 (OCoLC)958221171 (OCoLC)1101360978 (OCoLC)1114108948 (OCoLC)1131934218 (OCoLC)1164180119 (OCoLC)1222878957 (OCoLC)1225660295" - ], - "genreForm": [ - "Personal correspondence.", - "Sources.", - "Correspondence." - ], - "idIsbn": [ - "0870492195", - "9780870492198", - "0870494414", - "9780870494413", - "0870496506", - "9780870496509", - "0870497782", - "9780870497780", - "0870498975", - "9780870498978", - "1572331747", - "9781572331747", - "9781572335936", - "1572335939", - "9781572337152", - "157233715X", - "9781621900047", - "1621900045", - "9781621902676", - "1621902676", - "9781621905387", - "1621905381", - "9781621907558", - "1621907554" - ], - "numCheckinCardItems": [ - 2 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jackson, Andrew, 1767-1845.", - "1829-1837", - "Presidents -- United States -- Correspondence.", - "Politics and government.", - "Presidents.", - "United States -- Politics and government -- 1829-1837 -- Sources.", - "United States." - ], - "titleDisplay": [ - "The papers of Andrew Jackson / Sam B. Smith and Harriet Chappell Owsley, editors ; Robert V. Remini, consulting editor ; Sharon C. Macpherson, associate editor ; Linda D. Keeton, staff assistant." - ], - "uri": "b10685709", - "lccClassification": [ - "E302 .J35 1980" - ], - "placeOfPublication": [ - "Knoxville" - ], - "titleAlt": [ - "Works" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/review/hrev-a0c8q7-aa" - }, - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/reviews/showrev.php?id=25345" - }, - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/reviews/showrev.php?id=7356" - } - ], - "tableOfContents": [ - "Volume I: 1770-1803 -- Volume II: 1804-1813 -- Volume III: 1814-1815 -- Volume IV: 1816-1820 -- Volume V: 1825-1828 -- Volume VI: 1825-1828 -- Volume VII: 1829 -- Volume VIII: 1830 -- Volume IX: 1831 -- Volume X: 1832 -- Volume XI: 1833 -- Volume XII: 1834" - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "0870492195", - "9780870492198", - "0870494414", - "9780870494413", - "0870496506", - "9780870496509", - "0870497782", - "9780870497780", - "0870498975", - "9780870498978", - "1572331747", - "9781572331747", - "9781572335936", - "1572335939", - "9781572337152", - "157233715X", - "9781621900047", - "1621900045", - "9781621902676", - "1621902676", - "9781621905387", - "1621905381", - "9781621907558", - "1621907554" - ] - }, - "sort": [ - 2.55205, - "b10685709" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 11, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "b10685709", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 12", - "urn:barcode:33433137385237" - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000012", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " 12-" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 12" - ], - "uri": "i40826956", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IAW (Jackson) 80-3099 v. 12" - }, - { - "type": "bf:Barcode", - "value": "33433137385237" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "enumerationChronology": [ - "v. 12" - ], - "idBarcode": [ - "33433137385237" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ] - }, - "sort": [ - " 12-" - ] - }, - { - "_index": "resources-2024-06-13", - "_id": "b10685709", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 10", - "urn:barcode:33433119383762" - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000010", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " 10-" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 10" - ], - "uri": "i34456277", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IAW (Jackson) 80-3099 v. 10" - }, - { - "type": "bf:Barcode", - "value": "33433119383762" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "enumerationChronology": [ - "v. 10" - ], - "idBarcode": [ - "33433119383762" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ] - }, - "sort": [ - " 10-" - ] - }, - { - "_index": "resources-2024-06-13", - "_id": "b10685709", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 7", - "urn:barcode:33433079269134" - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000007", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " 7-" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 7" - ], - "uri": "i17468525", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IAW (Jackson) 80-3099 v. 7" - }, - { - "type": "bf:Barcode", - "value": "33433079269134" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "enumerationChronology": [ - "v. 7" - ], - "idBarcode": [ - "33433079269134" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ] - }, - "sort": [ - " 7-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-13", - "_id": "cb8273736", - "_score": 1.9596634, - "_source": { - "extent": [ - "2 audio discs : digital, stereo ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Compilation of excerpts from previously released material.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Various singers and orchestras.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Compact disc.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Playlist with credits and durations laid in container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "CD 2. Faust. Jewel song (Marguerite): Les grands Seigneurs.. Ah! je ris de me voir si belle (Victoria de Los Angeles) / Gounod (5:47) -- The juggler of Notre Dame. Marie, avec l\\u0027Enfant Jesus (Jules Bastin) / Massenet (5:27) -- Mignon. Connais-tu le pays (Jane Rhodes) / Thomas (5:35) -- Carmen. Toredor song: Votre toast, je peux vous le rendre (Ernest Blanc) / Bizet (4:53) -- The tales of Hoffman. Les oiseaux dans la charmille (Mady Mesplé) / Offenbach (5:45) -- Louise. Depuis le jour (Beverly Sills) / Charpentier (5:32) -- Der Rosenkavalier. Da geht er hin (Elisabeth Schwarzkopf) / R. Straus (5:32) -- Lohengrin. Elsa\\u0027s dream: Einsam in truben Tagen (Régine Crespin) (6:01) ; Tannhäuser. Dich teure Halle (Hildegard Behrens) (4:43) ; The Walkyrie. Wotan\\u0027s farewell: Leb wohl, du kühnes, herrliches Kind (Dietrich Fischer-Dieskau) (15:38) / Wagner.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "EMI classics.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"This compilation by EMI France\"--Container.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "EMI : Angel Records" - ], - "language": [ - { - "id": "lang:und", - "label": "Undetermined" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1957" - ], - "createdYear": [ - 1992 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Opera collection II." - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1992" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1992 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "8273736" - }, - { - "type": "nypl:Oclc", - "value": "ocm30855993" - }, - { - "type": "nypl:Oclc", - "value": "30855993" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5556418" - }, - { - "type": "bf:Identifier", - "value": "CDZB 7691312 EMI" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm30855993" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)30855993" - }, - { - "type": "bf:Identifier", - "value": "(NNC)8273736" - }, - { - "type": "bf:Identifier", - "value": "8273736" - } - ], - "idOclc": [ - "ocm30855993", - "30855993", - "SCSB-5556418" - ], - "dateEndYear": [ - 1957 - ], - "holdings": [], - "updatedAt": 1684459029675, - "publicationStatement": [ - "Hayes, Middlesex, England : EMI : Angel Records, 1992, ℗1987." - ], - "identifier": [ - "urn:bnum:8273736", - "urn:oclc:ocm30855993", - "urn:oclc:30855993", - "urn:oclc:SCSB-5556418", - "urn:undefined:CDZB 7691312 EMI", - "urn:undefined:(OCoLC)ocm30855993", - "urn:undefined:(OCoLC)30855993", - "urn:undefined:(NNC)8273736", - "urn:undefined:8273736" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1992" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "Opera collection II." - ], - "uri": "cb8273736", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Hayes, Middlesex, England" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "CD 1. Orpheus and Euridice. Che faro senza Euridice (Agnes Baltsa) / Gluck (5:24) -- The magic flute. Der Vogelfänger bin ich ja (Walter Berry) (2:34) ; Don Giovanni. Finch \\u0027han dal vino (Nicolai Ghiaurov) (1:24) ; The marriage of Figaro. E Susanna non vien ... Dove sono (Barbara Hendricks) (6:25) / Mozart -- Fidelio. Abscheulicher! Wo einst du hin... Komm, Hoffnung (Christa Ludwig) / Beethoven (8:18) -- William Tell. Ne m\\u0027abandonne pas, espoir de la vengeance ... Asile héréditaire (Nicolai Gedda) (6:58) ; The barber of Seville. Largo al factorum (Tito Gobbi) (4:38) / Rossini -- Don Carlos. Ella giammai m\\u0027amo! (Ruggero Raimondo) (10:27) ; Rigoletto. La Donna é mobile (Alfredo Kraus) (2:12) ; Il Trovatore. Di quella pira (Franco Corelli) (2:00) ; Otello. Dio! mi potevi scagliar (Placido Domingo) (4:40) / Verdi -- Tosca. Vissi d\\u0027arte (Maria Callas) (2:58) ; Turandot. In questa reggia (Ghena Dimitrova) (5:56) ; Gianna Schicchi. O mio babbino caro (Montserrat Caballé) (2:38) / Puccini -- L\\u0027Amico Fritz. Ed anche Beppe amo (Luciano Pavarotti) / Mascagni (3:15)." - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 1.9596634, - "cb8273736" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "cb8273736", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:MR00349976" - ], - "physicalLocation": [ - "CD92108" - ], - "shelfMark_sort": "aCD092108", - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci7602158", - "shelfMark": [ - "CD92108" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "CD92108" - }, - { - "type": "bf:Barcode", - "value": "MR00349976" - } - ], - "idBarcode": [ - "MR00349976" - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "recapCustomerCode": [ - "MR" - ], - "formatLiteral": [ - "Audio" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } } ] } diff --git a/test/fixtures/query-a5d74dd62498144aad8484853d13a47b.json b/test/fixtures/query-113e7b85fd93dee1b0ad1c727484f23c.json similarity index 99% rename from test/fixtures/query-a5d74dd62498144aad8484853d13a47b.json rename to test/fixtures/query-113e7b85fd93dee1b0ad1c727484f23c.json index aa2f8994..305145b2 100644 --- a/test/fixtures/query-a5d74dd62498144aad8484853d13a47b.json +++ b/test/fixtures/query-113e7b85fd93dee1b0ad1c727484f23c.json @@ -1,6 +1,6 @@ { "body": { - "took": 24, + "took": 75, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-47ae9faee196dd64f6b1b418778bf5ab.json b/test/fixtures/query-13c25dbcedb3f7be9925528a922ee7a8.json similarity index 99% rename from test/fixtures/query-47ae9faee196dd64f6b1b418778bf5ab.json rename to test/fixtures/query-13c25dbcedb3f7be9925528a922ee7a8.json index 92f03728..8f6591e6 100644 --- a/test/fixtures/query-47ae9faee196dd64f6b1b418778bf5ab.json +++ b/test/fixtures/query-13c25dbcedb3f7be9925528a922ee7a8.json @@ -1,6 +1,6 @@ { "body": { - "took": 30, + "took": 39, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json b/test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json deleted file mode 100644 index 2123aecf..00000000 --- a/test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 19, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-435ebca3c55c3450abf713088a22558c.json b/test/fixtures/query-17fde123550899b8ef10272d0e70c49b.json similarity index 99% rename from test/fixtures/query-435ebca3c55c3450abf713088a22558c.json rename to test/fixtures/query-17fde123550899b8ef10272d0e70c49b.json index c15f4c97..76264693 100644 --- a/test/fixtures/query-435ebca3c55c3450abf713088a22558c.json +++ b/test/fixtures/query-17fde123550899b8ef10272d0e70c49b.json @@ -1,6 +1,6 @@ { "body": { - "took": 113, + "took": 101, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json b/test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json deleted file mode 100644 index 79244c6f..00000000 --- a/test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 240, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 809.9933, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 809.9933, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json b/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json deleted file mode 100644 index a1fb078a..00000000 --- a/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json +++ /dev/null @@ -1,4558 +0,0 @@ -{ - "body": { - "took": 485, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 16, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9917173506421", - "_score": 31.6618, - "_source": { - "extent": [ - "x, 340 p. : ill. ;" - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lothrop, Lee & Shepard Books" - ], - "description": [ - "More than 40 stories and essays about cats by famous writers." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "title": [ - "Cat encounters : a cat-lover's anthology" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "79002437" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Manley, Seon.", - "Lewis, Gogo." - ], - "dateStartYear": [ - 1979 - ], - "idOclc": [ - "ocm05102099", - "SCSB-817" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9917173506421" - }, - { - "type": "bf:Isbn", - "value": "0688419143" - }, - { - "type": "nypl:Oclc", - "value": "ocm05102099" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-817" - }, - { - "type": "bf:Lccn", - "value": "79002437" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)NJPG14139839-B" - }, - { - "type": "bf:Identifier", - "value": "(NjP)1717-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm05102099" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager1717" - } - ], - "updatedAt": 1696123690892, - "publicationStatement": [ - "New York : Lothrop, Lee & Shepard Books, c1979." - ], - "genreForm": [ - "Fiction." - ], - "idIsbn": [ - "0688419143" - ], - "identifier": [ - "urn:bnum:9917173506421", - "urn:isbn:0688419143", - "urn:oclc:ocm05102099", - "urn:oclc:SCSB-817", - "urn:lccn:79002437", - "urn:identifier:(CStRLIN)NJPG14139839-B", - "urn:identifier:(NjP)1717-princetondb", - "urn:identifier:(OCoLC)ocm05102099", - "urn:identifier:(NjP)Voyager1717" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Fiction.", - "Cats." - ], - "titleDisplay": [ - "Cat encounters : a cat-lover's anthology / selected by Seon Manley & Gogo Lewis." - ], - "uri": "pb9917173506421", - "lccClassification": [ - "SF445.5 .C378" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ], - "idIsbn_clean": [ - "0688419143" - ] - }, - "sort": [ - 31.6618, - "pb9917173506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9917173506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101087644330" - ], - "identifier": [ - "urn:shelfmark:SF445.5 .C378", - "urn:barcode:32101087644330" - ], - "identifierV2": [ - { - "value": "SF445.5 .C378", - "type": "bf:ShelfMark" - }, - { - "value": "32101087644330", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "SF445.5 .C378" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "SF445.5 .C378" - ], - "shelfMark_sort": "aSF445.5 .C000378", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23581765460006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb1717", - "_score": 31.615255, - "_source": { - "extent": [ - "x, 340 p. : ill. ;" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Fiction", - "Cats" - ], - "publisherLiteral": [ - "Lothrop, Lee & Shepard Books," - ], - "description": [ - "More than 40 stories and essays about cats by famous writers." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cat encounters : a cat-lover's anthology /" - ], - "createdString": [ - "1979" - ], - "idLccn": [ - " 79002437 " - ], - "contributorLiteral": [ - "Lewis, Gogo.", - "Manley, Seon." - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1717" - }, - { - "type": "bf:Isbn", - "value": "0688419143" - }, - { - "type": "bf:Lccn", - "value": " 79002437 " - } - ], - "updatedAt": 1523549727960, - "publicationStatement": [ - "New York : Lothrop, Lee & Shepard Books, c1979." - ], - "identifier": [ - "urn:bnum:1717", - "urn:isbn:0688419143", - "urn:lccn: 79002437 " - ], - "idIsbn": [ - "0688419143" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Fiction.", - "Cats." - ], - "titleDisplay": [ - "Cat encounters : a cat-lover's anthology / selected by Seon Manley & Gogo Lewis." - ], - "uri": "pb1717", - "lccClassification": [ - "SF445.5 .C378" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 31.615255, - "pb1717" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb1717", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:32101087644330" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available " - ], - "uri": "pi2775", - "shelfMark": [ - "SF445.5 .C378" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "SF445.5 .C378" - }, - { - "type": "bf:Barcode", - "value": "32101087644330" - } - ], - "idBarcode": [ - "32101087644330" - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available " - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb17046250", - "_score": 16.631516, - "_source": { - "extent": [ - "467 pages : illustrations (chiefly color) ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 432-437).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Texts in Spanish, with English and French translations. ", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Chacon, Ester", - "Textile design", - "Textile design -- Chile", - "Textile design -- Chile -- History", - "Textile design -- Chile -- History -- 20th century", - "Textile design -- Chile -- History -- 21st century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sd·edicions" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "6" - ], - "createdYear": [ - 2022 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sobre papel" - ], - "shelfMark": [ - "NK8898.C378" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Chacon, Ester" - ], - "createdString": [ - "2022" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2022 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NK8898.C378" - }, - { - "type": "nypl:Bnumber", - "value": "17046250" - }, - { - "type": "bf:Isbn", - "value": "9788412531619 :" - }, - { - "type": "nypl:Oclc", - "value": "1351397526" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-14406084" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1351397526" - }, - { - "type": "bf:Identifier", - "value": "(ItFiC)it 60860410" - } - ], - "idOclc": [ - "1351397526", - "SCSB-14406084" - ], - "dateEndYear": [ - 6 - ], - "holdings": [], - "updatedAt": 1680735408328, - "publicationStatement": [ - "[Barcelona] : Sd·edicions, junio de 2022." - ], - "identifier": [ - "urn:bnum:17046250", - "urn:isbn:9788412531619 :", - "urn:oclc:1351397526", - "urn:oclc:SCSB-14406084", - "urn:undefined:(OCoLC)1351397526", - "urn:undefined:(ItFiC)it 60860410" - ], - "idIsbn": [ - "9788412531619 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2022" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Chacon, Ester.", - "Textile design -- Chile -- History -- 20th century.", - "Textile design -- Chile -- History -- 21st century." - ], - "titleDisplay": [ - "Sobre papel / Ester Chacón Ávila." - ], - "uri": "cb17046250", - "lccClassification": [ - "NK8898.C378 A4 2022" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Barcelona]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "TOC", - "url": "http://www.columbia.edu/cgi-bin/cul/resolve?clio17046250" - } - ], - "idIsbn_clean": [ - "9788412531619" - ], - "dimensions": [ - "23 cm" - ] - }, - "sort": [ - 16.631516, - "cb17046250" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb17046250", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci10212170", - "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": [ - "NK8898.C378 A4 2022" - ], - "identifierV2": [ - { - "value": "NK8898.C378 A4 2022", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "AR03127400" - } - ], - "physicalLocation": [ - "NK8898.C378 A4 2022" - ], - "recapCustomerCode": [ - "AR" - ], - "identifier": [ - "urn:barcode:AR03127400" - ], - "idBarcode": [ - "AR03127400" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aNK8898.C378 A4 002022" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb18245710", - "_score": 16.631516, - "_source": { - "extent": [ - "57 pages : illustrations (chiefly color) ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 54-57).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Menhirs", - "Menhirs -- Portugal", - "Menhirs -- Portugal -- Castelo de Vide", - "Antiquities, Prehistoric", - "Antiquities, Prehistoric -- Portugal", - "Antiquities, Prehistoric -- Portugal -- Castelo de Vide", - "Castelo de Vide (Portugal)", - "Castelo de Vide (Portugal) -- Antiquities" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edições Colibri" - ], - "language": [ - { - "id": "lang:por", - "label": "Portuguese" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2023 - ], - "dateEndString": [ - "1210" - ], - "title": [ - "O menhir da Meada : Castelo de Vide" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "GN838.C378" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2023" - ], - "creatorLiteral": [ - "Oliveira, Jorge de, 1956-" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2023 - ], - "idOclc": [ - "1405907877", - "SCSB-14754704" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "GN838.C378" - }, - { - "type": "nypl:Bnumber", - "value": "18245710" - }, - { - "type": "bf:Isbn", - "value": "9789895663422" - }, - { - "type": "nypl:Oclc", - "value": "1405907877" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-14754704" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1405907877" - }, - { - "type": "bf:Identifier", - "value": "(ItFiC)it 23402822" - } - ], - "dateEndYear": [ - 1210 - ], - "updatedAt": 1715233124429, - "publicationStatement": [ - "Lisboa : Edições Colibri, 12 de outubro de 2023." - ], - "idIsbn": [ - "9789895663422" - ], - "identifier": [ - "urn:shelfmark:GN838.C378", - "urn:bnum:18245710", - "urn:isbn:9789895663422", - "urn:oclc:1405907877", - "urn:oclc:SCSB-14754704", - "urn:identifier:(OCoLC)1405907877", - "urn:identifier:(ItFiC)it 23402822" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2023" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Menhirs -- Portugal -- Castelo de Vide.", - "Antiquities, Prehistoric -- Portugal -- Castelo de Vide.", - "Castelo de Vide (Portugal) -- Antiquities." - ], - "titleDisplay": [ - "O menhir da Meada : Castelo de Vide / Jorge de Oliveira, CHAIA/Univ. de Évora." - ], - "uri": "cb18245710", - "lccClassification": [ - "GN838.C378 O45 2023" - ], - "placeOfPublication": [ - "Lisboa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "TOC", - "url": "http://www.columbia.edu/cgi-bin/cul/resolve?clio18245710" - } - ], - "dimensions": [ - "24 cm" - ], - "idIsbn_clean": [ - "9789895663422" - ] - }, - "sort": [ - 16.631516, - "cb18245710" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb18245710", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "AR02990466" - ], - "identifier": [ - "urn:shelfmark:GN838.C378 O45 2023", - "urn:barcode:AR02990466" - ], - "identifierV2": [ - { - "value": "GN838.C378 O45 2023", - "type": "bf:ShelfMark" - }, - { - "value": "AR02990466", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "physicalLocation": [ - "GN838.C378 O45 2023" - ], - "recapCustomerCode": [ - "AR" - ], - "requestable": [ - true - ], - "shelfMark": [ - "GN838.C378 O45 2023" - ], - "shelfMark_sort": "aGN838.C378 O45 002023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci10380410" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb15373389", - "_score": 16.62714, - "_source": { - "extent": [ - "107 pages : illustrations (chiefly color) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published on the occasion of the installation of the Vatican's nativity scene, in ceramics from Castelli, in St Peter's Square.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 102-107).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Ceramic sculpture", - "Ceramic sculpture -- Castelli", - "Ceramic sculpture -- Castelli -- History", - "Ceramic sculpture -- Castelli -- History -- Exhibitions", - "Crèches (Nativity scenes)", - "Crèches (Nativity scenes) -- Castelli", - "Crèches (Nativity scenes) -- Castelli -- Exhibitions" - ], - "publisherLiteral": [ - "Verdone editore," - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "createdYear": [ - 2020 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Il presepe di Castelli : poesia in ceramica / coordinamento editoriale Domenico Verdone." - ], - "shelfMark": [ - "NK4104.C378" - ], - "createdString": [ - "2020" - ], - "contributorLiteral": [ - "Verdone, Domenico," - ], - "dateStartYear": [ - 2020 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NK4104.C378" - }, - { - "type": "nypl:Bnumber", - "value": "15373389" - }, - { - "type": "bf:Isbn", - "value": "9788896868812 :" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1240776618" - }, - { - "type": "bf:Identifier", - "value": "(ItFiC)it 21010129" - } - ], - "holdings": [], - "updatedAt": 1628648536436, - "publicationStatement": [ - "Castelli (TE) : Verdone editore, [2020]" - ], - "identifier": [ - "urn:bnum:15373389", - "urn:isbn:9788896868812 :", - "urn:undefined:(OCoLC)1240776618", - "urn:undefined:(ItFiC)it 21010129" - ], - "idIsbn": [ - "9788896868812 :" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2020" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ceramic sculpture -- Castelli -- History -- Exhibitions.", - "Crèches (Nativity scenes) -- Castelli -- Exhibitions." - ], - "titleDisplay": [ - "Il presepe di Castelli : poesia in ceramica / coordinamento editoriale Domenico Verdone." - ], - "uri": "cb15373389", - "lccClassification": [ - "NK4104.C378 P74 2020" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Castelli (TE) :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "TOC", - "url": "http://www.columbia.edu/cgi-bin/cul/resolve?clio15373389" - } - ], - "dimensions": [ - "28 cm" - ] - }, - "sort": [ - 16.62714, - "cb15373389" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb15373389", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci9880330", - "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": [ - "NK4104.C378 P74 2020" - ], - "identifierV2": [ - { - "value": "NK4104.C378 P74 2020", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "AR02635038" - } - ], - "physicalLocation": [ - "NK4104.C378 P74 2020" - ], - "identifier": [ - "urn:barcode:AR02635038" - ], - "idBarcode": [ - "AR02635038" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aNK4104.C378 P74 002020" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb17686979", - "_score": 16.62714, - "_source": { - "extent": [ - "2 volumes ;" - ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "福州 : 福建人民出版社, 2020." - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "福州" - }, - { - "fieldName": "editionStatement", - "index": 0, - "value": "第1版." - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Zhan guo ce", - "China", - "China -- History", - "China -- History -- Warring States, 403-221 B.C" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fujian ren min chu ban she" - ], - "parallelPublisherLiteral": [ - "福建人民出版社" - ], - "language": [ - { - "id": "lang:chi", - "label": "Chinese" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2020 - ], - "parallelTitle": [ - "战国策" - ], - "title": [ - "Zhan guo ce" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "DS747.2.C378" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2020" - ], - "creatorLiteral": [ - "Gu, Guangqi, 1770-1839" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Gu jiao cong kan" - ], - "dateStartYear": [ - 2020 - ], - "parallelCreatorLiteral": [ - "顾广圻, 1770-1839" - ], - "idOclc": [ - "1197633015", - "on1197633015", - "SCSB-14536095" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "DS747.2.C378" - }, - { - "type": "nypl:Bnumber", - "value": "17686979" - }, - { - "type": "bf:Isbn", - "value": "9787211081387" - }, - { - "type": "bf:Isbn", - "value": "7211081384" - }, - { - "type": "nypl:Oclc", - "value": "1197633015" - }, - { - "type": "nypl:Oclc", - "value": "on1197633015" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-14536095" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1197633015" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)on1197633015" - }, - { - "type": "bf:Identifier", - "value": "(NNC)17686979" - } - ], - "uniformTitle": [ - "Gu jiao cong kan." - ], - "parallelUniformTitle": [ - "顾校丛刊." - ], - "updatedAt": 1708227256659, - "publicationStatement": [ - "Fuzhou : Fujian ren min chu ban she, 2020." - ], - "idIsbn": [ - "9787211081387", - "7211081384" - ], - "identifier": [ - "urn:shelfmark:DS747.2.C378", - "urn:bnum:17686979", - "urn:isbn:9787211081387", - "urn:isbn:7211081384", - "urn:oclc:1197633015", - "urn:oclc:on1197633015", - "urn:oclc:SCSB-14536095", - "urn:identifier:(OCoLC)1197633015", - "urn:identifier:(OCoLC)on1197633015", - "urn:identifier:(NNC)17686979" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2020" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Zhan guo ce.", - "China -- History -- Warring States, 403-221 B.C." - ], - "titleDisplay": [ - "Zhan guo ce / Gu Guangqi." - ], - "uri": "cb17686979", - "lccClassification": [ - "DS747.2.C378 G838 2020" - ], - "parallelSubjectLiteral": [ - "战国策." - ], - "parallelSeriesStatement": [ - "顾校丛刊" - ], - "parallelTitleDisplay": [ - "战国策 / 顾广圻." - ], - "placeOfPublication": [ - "Fuzhou" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "9787211081387", - "7211081384" - ] - }, - "sort": [ - 16.62714, - "cb17686979" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb17686979", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "enumerationChronology": [ - "V.2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "CU28973550" - ], - "identifier": [ - "urn:shelfmark:DS747.2.C378 G838 2020g V.2", - "urn:barcode:CU28973550" - ], - "identifierV2": [ - { - "value": "DS747.2.C378 G838 2020g V.2", - "type": "bf:ShelfMark" - }, - { - "value": "CU28973550", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "physicalLocation": [ - "DS747.2.C378 G838 2020g" - ], - "recapCustomerCode": [ - "CU" - ], - "requestable": [ - true - ], - "shelfMark": [ - "DS747.2.C378 G838 2020g V.2" - ], - "shelfMark_sort": "aDS747.2.C378 G838 2020g V.000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "ci10299013" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "cb17686979", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "enumerationChronology": [ - "V.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "CU28973313" - ], - "identifier": [ - "urn:shelfmark:DS747.2.C378 G838 2020g V.1", - "urn:barcode:CU28973313" - ], - "identifierV2": [ - { - "value": "DS747.2.C378 G838 2020g V.1", - "type": "bf:ShelfMark" - }, - { - "value": "CU28973313", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "physicalLocation": [ - "DS747.2.C378 G838 2020g" - ], - "recapCustomerCode": [ - "CU" - ], - "requestable": [ - true - ], - "shelfMark": [ - "DS747.2.C378 G838 2020g V.1" - ], - "shelfMark_sort": "aDS747.2.C378 G838 2020g V.000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "ci10297814" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10389623", - "_score": 15.906791, - "_source": { - "extent": [ - "[42] p. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Texts, by the artist, in English and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Cocktail '2014', curato da Remo Bianco.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Issued on the occasion an exhibition held at the Cenobio-Visualità ass., Apr., 1972.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cenobio-visualità" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "title": [ - "Manifesti centenario Cavellini." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MCF C378.C39" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1972" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "idLccn": [ - "74198015" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bianco, Remo, 1922-", - "Cenobio-Visualità (Milan)" - ], - "dateStartYear": [ - 1972 - ], - "idOclc": [ - "NYPG764531856-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MCF C378.C39" - }, - { - "type": "nypl:Bnumber", - "value": "10389623" - }, - { - "type": "nypl:Oclc", - "value": "NYPG764531856-B" - }, - { - "type": "bf:Lccn", - "value": "74198015" - }, - { - "type": "bf:Identifier", - "value": "NN764531856" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0393215" - } - ], - "updatedAt": 1711503115471, - "publicationStatement": [ - "[Milano, Cenobio-visualità, 1972]" - ], - "identifier": [ - "urn:shelfmark:3-MCF C378.C39", - "urn:bnum:10389623", - "urn:oclc:NYPG764531856-B", - "urn:lccn:74198015", - "urn:identifier:NN764531856", - "urn:identifier:(WaOLN)nyp0393215" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "titleDisplay": [ - "Manifesti centenario Cavellini." - ], - "uri": "b10389623", - "placeOfPublication": [ - "[Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Cocktail '2014'." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 15.906791, - "b10389623" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10389623", - "_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:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "idBarcode": [ - "33433047990399" - ], - "identifier": [ - "urn:shelfmark:3-MCF C378.C39", - "urn:barcode:33433047990399" - ], - "identifierV2": [ - { - "value": "3-MCF C378.C39", - "type": "bf:ShelfMark" - }, - { - "value": "33433047990399", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "3-MCF C378.C39" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MCF C378.C39" - ], - "shelfMark_sort": "a3-MCF C378.C000039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13838752" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10685499", - "_score": 15.906791, - "_source": { - "extent": [ - "[80] p. : chiefly ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990", - "Artists' books", - "Artists' books -- Italy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edizioni nuovi strumenti" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "title": [ - "Nemo propheta in patria" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MCF C378 80-3049" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1978" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "idLccn": [ - "79356436" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "idOclc": [ - "5264342", - "NYPG804849137-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MCF C378 80-3049" - }, - { - "type": "nypl:Bnumber", - "value": "10685499" - }, - { - "type": "nypl:Oclc", - "value": "5264342" - }, - { - "type": "nypl:Oclc", - "value": "NYPG804849137-B" - }, - { - "type": "bf:Lccn", - "value": "79356436" - }, - { - "type": "bf:Identifier", - "value": "NN804849137" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0283888" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5264342" - } - ], - "updatedAt": 1711622515653, - "publicationStatement": [ - "[Brescia] : Edizioni nuovi strumenti, c1978." - ], - "identifier": [ - "urn:shelfmark:MCF C378 80-3049", - "urn:bnum:10685499", - "urn:oclc:5264342", - "urn:oclc:NYPG804849137-B", - "urn:lccn:79356436", - "urn:identifier:NN804849137", - "urn:identifier:(WaOLN)nyp0283888", - "urn:identifier:(OCoLC)5264342" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990.", - "Artists' books -- Italy." - ], - "titleDisplay": [ - "Nemo propheta in patria / Guglielmo Achille Cavellini." - ], - "uri": "b10685499", - "lccClassification": [ - "N7433.4.C38 A4 1978" - ], - "placeOfPublication": [ - "[Brescia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 15.906791, - "b10685499" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10685499", - "_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:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433066217906" - ], - "identifier": [ - "urn:shelfmark:MCF C378 80-3049", - "urn:barcode:33433066217906" - ], - "identifierV2": [ - { - "value": "MCF C378 80-3049", - "type": "bf:ShelfMark" - }, - { - "value": "33433066217906", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "MCF C378 80-3049" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MCF C378 80-3049" - ], - "shelfMark_sort": "aMCF C378 80-003049", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14896046" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10022735", - "_score": 15.901142, - "_source": { - "extent": [ - "[60] p. : facsims. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"These letters, reproduced on emulsioned canvases 130 x 180, were exhibited at the Cenobio Visualità Gallery of Milan in Jan. 1974.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Folded cover illustrations.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Italian, English, French, and German.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990", - "Cavellini, Guglielmo Achille, 1914-1990 -- Correspondence", - "Cavellini, Guglielmo Achille, 1914-1990 -- Exhibitions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nuovi strumenti" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "title": [ - "25 lettere" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MCF+ C378 81-1167" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Cenobio Visualità (Milan)." - ], - "dateStartYear": [ - 1974 - ], - "idOclc": [ - "NYPG25743970-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MCF+ C378 81-1167" - }, - { - "type": "nypl:Bnumber", - "value": "10022735" - }, - { - "type": "nypl:Oclc", - "value": "NYPG25743970-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0022813" - } - ], - "updatedAt": 1711087691427, - "publicationStatement": [ - "Brescia : Nuovi strumenti, c1974." - ], - "identifier": [ - "urn:shelfmark:MCF+ C378 81-1167", - "urn:bnum:10022735", - "urn:oclc:NYPG25743970-B", - "urn:identifier:(WaOLN)nyp0022813" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990 -- Correspondence.", - "Cavellini, Guglielmo Achille, 1914-1990 -- Exhibitions." - ], - "titleDisplay": [ - "25 lettere / Guglielmo Achille Cavellini." - ], - "uri": "b10022735", - "placeOfPublication": [ - "Brescia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 15.901142, - "b10022735" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10022735", - "_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:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433105145878" - ], - "identifier": [ - "urn:shelfmark:MCF+ C378 81-1167", - "urn:barcode:33433105145878" - ], - "identifierV2": [ - { - "value": "MCF+ C378 81-1167", - "type": "bf:ShelfMark" - }, - { - "value": "33433105145878", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "MCF+ C378 81-1167" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MCF+ C378 81-1167" - ], - "shelfMark_sort": "aMCF+ C378 81-001167", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14749908" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12852974", - "_score": 15.901142, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: 1996.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Central State University (Wilberforce, Ohio)", - "Central State University (Wilberforce, Ohio) -- Alumni and alumnae", - "Central State University (Wilberforce, Ohio) -- Alumni and alumnae -- Directories" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "B.C. Harris Pub. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Alumni directory" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc Ser.-L .C378" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "creatorLiteral": [ - "Central State University (Wilberforce, Ohio)" - ], - "idLccn": [ - "sf 96093246" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "35862583" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-L .C378" - }, - { - "type": "nypl:Bnumber", - "value": "12852974" - }, - { - "type": "nypl:Oclc", - "value": "35862583" - }, - { - "type": "bf:Lccn", - "value": "sf 96093246" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2832908" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711144228572, - "publicationStatement": [ - "White Plains, N.Y. : B.C. Harris Pub. Co." - ], - "identifier": [ - "urn:shelfmark:Sc Ser.-L .C378", - "urn:bnum:12852974", - "urn:oclc:35862583", - "urn:lccn:sf 96093246", - "urn:identifier:(WaOLN)nyp2832908" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Central State University (Wilberforce, Ohio) -- Alumni and alumnae -- Directories." - ], - "titleDisplay": [ - "Alumni directory / Central State University, Wilberforce, Ohio." - ], - "uri": "b12852974", - "lccClassification": [ - "WMLC 96/443" - ], - "placeOfPublication": [ - "White Plains, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Central State University Wilberforce, Ohio alumni directory", - "Central State University alumni directory" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 15.901142, - "b12852974" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12852974", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology": [ - "1996" - ], - "enumerationChronology_sort": [ - " -1996" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433031265576" - ], - "identifier": [ - "urn:shelfmark:Sc Ser.-L .C378 1996", - "urn:barcode:33433031265576" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .C378 1996", - "type": "bf:ShelfMark" - }, - { - "value": "33433031265576", - "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 Ser.-L .C378" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc Ser.-L .C378 1996" - ], - "shelfMark_sort": "aSc Ser.-L .C378 001996", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12289588" - }, - "sort": [ - " -1996" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11591832", - "_score": 14.681199, - "_source": { - "extent": [ - "56 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990", - "Artists", - "Artists -- Italy", - "Artists -- Italy -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Johannes Gutenberg" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "title": [ - "The diaries of Guglielmo Achille Cavellini, 1975." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MCF+ C378 91-2103" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1979" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "idOclc": [ - "7379348", - "NYPGR7379348-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MCF+ C378 91-2103" - }, - { - "type": "nypl:Bnumber", - "value": "11591832" - }, - { - "type": "nypl:Oclc", - "value": "7379348" - }, - { - "type": "nypl:Oclc", - "value": "NYPGR7379348-B" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7379348" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1600465" - } - ], - "uniformTitle": [ - "Diaro di Guglielmo Achille Cavellini, 1975. English" - ], - "updatedAt": 1711026971292, - "publicationStatement": [ - "[s.l.] : Johannes Gutenberg, [1979?]" - ], - "identifier": [ - "urn:shelfmark:3-MCF+ C378 91-2103", - "urn:bnum:11591832", - "urn:oclc:7379348", - "urn:oclc:NYPGR7379348-B", - "urn:identifier:(OCoLC)7379348", - "urn:identifier:(WaOLN)nyp1600465" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990.", - "Artists -- Italy -- Biography." - ], - "titleDisplay": [ - "The diaries of Guglielmo Achille Cavellini, 1975." - ], - "uri": "b11591832", - "lccClassification": [ - "N6923.C386 A213 1979" - ], - "placeOfPublication": [ - "[s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Diaro di Guglielmo Achille Cavellini, 1975." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 14.681199, - "b11591832" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11591832", - "_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:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433119721987" - ], - "identifier": [ - "urn:shelfmark:3-MCF+ C378 91-2103", - "urn:barcode:33433119721987" - ], - "identifierV2": [ - { - "value": "3-MCF+ C378 91-2103", - "type": "bf:ShelfMark" - }, - { - "value": "33433119721987", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "3-MCF+ C378 91-2103" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MCF+ C378 91-2103" - ], - "shelfMark_sort": "a3-MCF+ C378 91-002103", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15925669" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18209846", - "_score": 14.681199, - "_source": { - "extent": [ - "[12] p. : ill., folded map, geneal. table ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [12]).", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Carver family", - "Carmel (N.Y. : Town)", - "Carmel (N.Y. : Town) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A.J. Warnecke" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1995 - ], - "title": [ - "Timothy Carver Day, May 28, 1996" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NYGB CT 275 C378 W37" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1995" - ], - "creatorLiteral": [ - "Warnecke, Allan James, 1938-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1995 - ], - "donor": [ - "Gift of the New York Genealogical and Biographical Society." - ], - "idOclc": [ - "34174102" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NYGB CT 275 C378 W37" - }, - { - "type": "nypl:Bnumber", - "value": "18209846" - }, - { - "type": "nypl:Oclc", - "value": "34174102" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)34174102" - } - ], - "updatedAt": 1711224309820, - "publicationStatement": [ - "Mahopac, N.Y. : A.J. Warnecke, [1995]" - ], - "identifier": [ - "urn:shelfmark:NYGB CT 275 C378 W37", - "urn:bnum:18209846", - "urn:oclc:34174102", - "urn:identifier:(OCoLC)34174102" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1995" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Carver family.", - "Carmel (N.Y. : Town) -- History." - ], - "titleDisplay": [ - "Timothy Carver Day, May 28, 1996 / Allan J. Warnecke." - ], - "uri": "b18209846", - "placeOfPublication": [ - "Mahopac, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Town of Carmel Bicentennial Committee." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 14.681199, - "b18209846" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18209846", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433086812371" - ], - "identifier": [ - "urn:shelfmark:NYGB CT 275 C378 W37", - "urn:barcode:33433086812371" - ], - "identifierV2": [ - { - "value": "NYGB CT 275 C378 W37", - "type": "bf:ShelfMark" - }, - { - "value": "33433086812371", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "NH" - ], - "physicalLocation": [ - "NYGB CT 275 C378 W37" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB CT 275 C378 W37" - ], - "shelfMark_sort": "aNYGB CT 275 C378 W000037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24511205" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10722589", - "_score": 14.675419, - "_source": { - "extent": [ - "[9] p. 33 plates (incl. ports.) Dllus." - ], - "note": [ - { - "noteType": "Note", - "label": "Statement by artist and list of photographs in Italian, French, English and German.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edizioni Nuovi Strumentl" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "title": [ - "Cimeli [di] Guglielmo Achille Cavellini." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MCF C378 81-176" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "idOclc": [ - "NYPG814253059-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MCF C378 81-176" - }, - { - "type": "nypl:Bnumber", - "value": "10722589" - }, - { - "type": "nypl:Oclc", - "value": "NYPG814253059-B" - }, - { - "type": "bf:Identifier", - "value": "NN814253059" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0729331" - } - ], - "updatedAt": 1711120423606, - "publicationStatement": [ - "[Brescia] Edizioni Nuovi Strumentl [1974]" - ], - "identifier": [ - "urn:shelfmark:3-MCF C378 81-176", - "urn:bnum:10722589", - "urn:oclc:NYPG814253059-B", - "urn:identifier:NN814253059", - "urn:identifier:(WaOLN)nyp0729331" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "titleDisplay": [ - "Cimeli [di] Guglielmo Achille Cavellini." - ], - "uri": "b10722589", - "placeOfPublication": [ - "[Brescia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 14.675419, - "b10722589" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10722589", - "_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:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433047990381" - ], - "identifier": [ - "urn:shelfmark:3-MCF C378 81-176", - "urn:barcode:33433047990381" - ], - "identifierV2": [ - { - "value": "3-MCF C378 81-176", - "type": "bf:ShelfMark" - }, - { - "value": "33433047990381", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "3-MCF C378 81-176" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MCF C378 81-176" - ], - "shelfMark_sort": "a3-MCF C378 81-000176", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13897323" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10798457", - "_score": 14.675419, - "_source": { - "extent": [ - "77 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "English translation by Henry Martin.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavellini, Guglielmo Achille, 1914-1990", - "Artists' books" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "title": [ - "Cavellini in California and in Budapest : living-room show 1980" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MCF+ C378 83-406" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "creatorLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "idOclc": [ - "11291290", - "NYPG83-B48302" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MCF+ C378 83-406" - }, - { - "type": "nypl:Bnumber", - "value": "10798457" - }, - { - "type": "nypl:Oclc", - "value": "11291290" - }, - { - "type": "nypl:Oclc", - "value": "NYPG83-B48302" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0805381" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11291290" - } - ], - "updatedAt": 1711297115533, - "publicationStatement": [ - "[S.l. : s.n., 1980?]" - ], - "genreForm": [ - "Artists' books." - ], - "identifier": [ - "urn:shelfmark:3-MCF+ C378 83-406", - "urn:bnum:10798457", - "urn:oclc:11291290", - "urn:oclc:NYPG83-B48302", - "urn:identifier:(WaOLN)nyp0805381", - "urn:identifier:(OCoLC)11291290" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavellini, Guglielmo Achille, 1914-1990.", - "Artists' books." - ], - "titleDisplay": [ - "Cavellini in California and in Budapest : living-room show 1980 / Guglielmo Achille Cavellini." - ], - "uri": "b10798457", - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 14.675419, - "b10798457" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10798457", - "_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:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433066851043" - ], - "identifier": [ - "urn:shelfmark:3-MCF+ C378 83-406", - "urn:barcode:33433066851043" - ], - "identifierV2": [ - { - "value": "3-MCF+ C378 83-406", - "type": "bf:ShelfMark" - }, - { - "value": "33433066851043", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "3-MCF+ C378 83-406" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MCF+ C378 83-406" - ], - "shelfMark_sort": "a3-MCF+ C378 83-000406", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15797932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11295361", - "_score": 14.675419, - "_source": { - "extent": [ - "50 p. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Issued in conjunction with an exhibition at the Galerie Giacometti, Chur.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavegn, Robert, 1957-", - "Cavegn, Robert, 1957- -- Exhibitions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Galerie Giacometti" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "title": [ - "Robert Cavegn : Schorfgelände." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MCZ C378 90-5286" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1989" - ], - "creatorLiteral": [ - "Cavegn, Robert, 1957-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Galerie Giacometti." - ], - "dateStartYear": [ - 1989 - ], - "idOclc": [ - "NYPG90-B53926" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MCZ C378 90-5286" - }, - { - "type": "nypl:Bnumber", - "value": "11295361" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B53926" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1303079" - } - ], - "updatedAt": 1711655367204, - "publicationStatement": [ - "Chur : Edition Galerie Giacometti, 1989." - ], - "identifier": [ - "urn:shelfmark:3-MCZ C378 90-5286", - "urn:bnum:11295361", - "urn:oclc:NYPG90-B53926", - "urn:identifier:(WaOLN)nyp1303079" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavegn, Robert, 1957- -- Exhibitions." - ], - "titleDisplay": [ - "Robert Cavegn : Schorfgelände." - ], - "uri": "b11295361", - "placeOfPublication": [ - "Chur" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Schorfgelände." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 14.675419, - "b11295361" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11295361", - "_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:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "idBarcode": [ - "33433071051589" - ], - "identifier": [ - "urn:shelfmark:3-MCZ C378 90-5286", - "urn:barcode:33433071051589" - ], - "identifierV2": [ - { - "value": "3-MCZ C378 90-5286", - "type": "bf:ShelfMark" - }, - { - "value": "33433071051589", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "3-MCZ C378 90-5286" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MCZ C378 90-5286" - ], - "shelfMark_sort": "a3-MCZ C378 90-005286", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14958430" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13946990", - "_score": 12.070071, - "_source": { - "extent": [ - "177 p. illus., facsim., plates, port." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cavé, Marie Elisabeth Blavot Boulanger, 1810-", - "Delacroix, Eugène, 1798-1863", - "Delacroix, Eugène, 1798-1863 -- Influence" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "La Bibliothèque des arts" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "title": [ - "Marie-Elizabeth Cavé, disciple de Delacroix." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1966" - ], - "creatorLiteral": [ - "Angrand, Pierre." - ], - "idLccn": [ - "76364828" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "idOclc": [ - "615212" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)" - }, - { - "type": "nypl:Bnumber", - "value": "13946990" - }, - { - "type": "nypl:Oclc", - "value": "615212" - }, - { - "type": "bf:Lccn", - "value": "76364828" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0534948" - } - ], - "updatedAt": 1711446709340, - "publicationStatement": [ - "[Lausanne, Paris,] La Bibliothèque des arts, 1966." - ], - "identifier": [ - "urn:shelfmark:MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)", - "urn:bnum:13946990", - "urn:oclc:615212", - "urn:lccn:76364828", - "urn:identifier:(WaOLN)nyp0534948" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cavé, Marie Elisabeth Blavot Boulanger, 1810-", - "Delacroix, Eugène, 1798-1863 -- Influence." - ], - "titleDisplay": [ - "Marie-Elizabeth Cavé, disciple de Delacroix." - ], - "uri": "b13946990", - "lccClassification": [ - "NC248.C33 A6" - ], - "placeOfPublication": [ - "[Lausanne, Paris,]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 12.070071, - "b13946990" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13946990", - "_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:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "idBarcode": [ - "33433066252044" - ], - "identifier": [ - "urn:shelfmark:MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)", - "urn:barcode:33433066252044" - ], - "identifierV2": [ - { - "value": "MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)", - "type": "bf:ShelfMark" - }, - { - "value": "33433066252044", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)" - ], - "shelfMark_sort": "aMCO C378.A5 (Angrand, P. Marie-Elizabeth Cavé)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15227143" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-33918de1bae21cde0459f731ccbbddd6.json b/test/fixtures/query-33918de1bae21cde0459f731ccbbddd6.json new file mode 100644 index 00000000..bebbf66d --- /dev/null +++ b/test/fixtures/query-33918de1bae21cde0459f731ccbbddd6.json @@ -0,0 +1,972 @@ +{ + "body": { + "took": 166, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_score": 25.280298, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1711656889146, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "creatorModifiedName": "Miriam Gloger", + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "sort": [ + 25.280298, + "b22144813" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "enumerationChronology": [ + "v.1" + ], + "idBarcode": [ + "3333333333" + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + }, + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "uri": "i37857772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + }, + { + "type": "bf:Barcode", + "value": "44455533322211" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-87a3db1f41f8c00687af619ed099ae81.json b/test/fixtures/query-3aba82708ea01c5971107bc25a4fa0f9.json similarity index 99% rename from test/fixtures/query-87a3db1f41f8c00687af619ed099ae81.json rename to test/fixtures/query-3aba82708ea01c5971107bc25a4fa0f9.json index 01819679..cb7425ee 100644 --- a/test/fixtures/query-87a3db1f41f8c00687af619ed099ae81.json +++ b/test/fixtures/query-3aba82708ea01c5971107bc25a4fa0f9.json @@ -1,6 +1,6 @@ { "body": { - "took": 925, + "took": 470, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-42ee5d35253e8d7c6a94cb875f6863c6.json b/test/fixtures/query-42ee5d35253e8d7c6a94cb875f6863c6.json new file mode 100644 index 00000000..141180e6 --- /dev/null +++ b/test/fixtures/query-42ee5d35253e8d7c6a94cb875f6863c6.json @@ -0,0 +1,972 @@ +{ + "body": { + "took": 200, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_score": 25.280298, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1711656889146, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "creatorModifiedName": "Miriam Gloger", + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "sort": [ + 25.280298, + "b22144813" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "enumerationChronology": [ + "v.1" + ], + "idBarcode": [ + "3333333333" + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ] + }, + "sort": [ + " 1-" + ] + }, + { + "_index": "resources-2024-06-13", + "_id": "b22144813", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "uri": "i37857772", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + }, + { + "type": "bf:Barcode", + "value": "44455533322211" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-bd3ded309b4320215ae09c9297ad07b6.json b/test/fixtures/query-48209b45e9fb51159de604ce46f852b9.json similarity index 99% rename from test/fixtures/query-bd3ded309b4320215ae09c9297ad07b6.json rename to test/fixtures/query-48209b45e9fb51159de604ce46f852b9.json index 8eeee5a9..c460b4b7 100644 --- a/test/fixtures/query-bd3ded309b4320215ae09c9297ad07b6.json +++ b/test/fixtures/query-48209b45e9fb51159de604ce46f852b9.json @@ -1,6 +1,6 @@ { "body": { - "took": 58, + "took": 52, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json b/test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json deleted file mode 100644 index 0777529a..00000000 --- a/test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json +++ /dev/null @@ -1,14036 +0,0 @@ -{ - "body": { - "took": 2198, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 585, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b20970375", - "_score": 4137.6357, - "_source": { - "extent": [ - "119 pages : illustrations (color) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toast (Bread)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Phaidon Press Limited" - ], - "description": [ - "The ultimate canvas for sweet and savory culinary creativity. 50 seasonal recipes that reimagine the \"bread and butter\" of cuisine with simple ingredients in surprising ways. Easy enough for breakfast, yet suitable for brunch, lunch, dinner and even dessert, the possibilities of heaping beautiful seasonal ingredients on bread are limitless. Toast guides home chefs as they explore home cuisine's ultimate creative canvas. Organized by season, Toast features 50 recipes from savory to sweet that unleash the power of fresh ingredients and simple techniques guaranteed to impress and satisfy any kitchen audience on any occasion." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2015 - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFF 16-815" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2015" - ], - "creatorLiteral": [ - "Pelzel, Raquel" - ], - "idLccn": [ - "2015473840" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sung, Evan" - ], - "dateStartYear": [ - 2015 - ], - "idOclc": [ - "915941587" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 16-815" - }, - { - "type": "nypl:Bnumber", - "value": "20970375" - }, - { - "type": "bf:Isbn", - "value": "9780714869551" - }, - { - "type": "bf:Isbn", - "value": "0714869554" - }, - { - "type": "nypl:Oclc", - "value": "915941587" - }, - { - "type": "bf:Lccn", - "value": "2015473840" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)915941587" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)905521916" - } - ], - "updatedAt": 1711458034739, - "publicationStatement": [ - "London : Phaidon Press Limited, 2015.", - "©2015" - ], - "genreForm": [ - "Cookbooks." - ], - "idIsbn": [ - "9780714869551", - "0714869554" - ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:bnum:20970375", - "urn:isbn:9780714869551", - "urn:isbn:0714869554", - "urn:oclc:915941587", - "urn:lccn:2015473840", - "urn:identifier:(OCoLC)915941587", - "urn:identifier:(OCoLC)905521916" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2015" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toast (Bread)" - ], - "titleDisplay": [ - "Toast / by Raquel Pelzel ; photographs by Evan Sung." - ], - "uri": "b20970375", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Toast : the cookbook" - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "9780714869551", - "0714869554" - ] - }, - "sort": [ - 4137.6357, - "b20970375" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b20970375", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433118568447" - ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:barcode:33433118568447" - ], - "identifierV2": [ - { - "value": "JFF 16-815", - "type": "bf:ShelfMark" - }, - { - "value": "33433118568447", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFF 16-815" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFF 16-815" - ], - "shelfMark_sort": "aJFF 16-000815", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34162229" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb2847934", - "_score": 4134.967, - "_source": { - "extent": [ - "103 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First performed at the Royal Court Theatre Upstairs ... on 12th February 1999.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Oberon" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast" - ], - "creatorLiteral": [ - "Bean, Richard, 1956-" - ], - "createdString": [ - "1999" - ], - "dateStartYear": [ - 1999 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "2847934" - }, - { - "type": "bf:Isbn", - "value": "1840021047" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)GAEGO42263032-B" - }, - { - "type": "bf:Identifier", - "value": "(GEU)(Sirsi)o42263032" - } - ], - "holdings": [], - "updatedAt": 1655841488336, - "publicationStatement": [ - "London : Oberon, 1999." - ], - "identifier": [ - "urn:bnum:2847934", - "urn:isbn:1840021047", - "urn:undefined:(CStRLIN)GAEGO42263032-B", - "urn:undefined:(GEU)(Sirsi)o42263032" - ], - "idIsbn": [ - "1840021047" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / by Richard Bean." - ], - "uri": "pb2847934", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1840021047" - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 4134.967, - "pb2847934" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb2847934", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi2440892", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR6052.E176 T627 1999" - ], - "identifierV2": [ - { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101095377683" - } - ], - "physicalLocation": [ - "PR6052.E176 T627 1999" - ], - "recapCustomerCode": [ - "PA" - ], - "identifier": [ - "urn:barcode:32101095377683" - ], - "idBarcode": [ - "32101095377683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPR6052.E176 T627 001999" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9928479343506421", - "_score": 4023.2744, - "_source": { - "extent": [ - "103 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First performed at the Royal Court Theatre Upstairs ... on 12th February 1999.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Oberon" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bean, Richard, 1956-" - ], - "createdString": [ - "1999" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1999 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9928479343506421" - }, - { - "type": "bf:Isbn", - "value": "1840021047" - }, - { - "type": "nypl:Oclc", - "value": "ocm53231811" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-964143" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)GAEGO42263032-B" - }, - { - "type": "bf:Identifier", - "value": "(GEU)(Sirsi)o42263032" - }, - { - "type": "bf:Identifier", - "value": "(NjP)2847934-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm53231811" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager2847934" - } - ], - "idOclc": [ - "ocm53231811", - "SCSB-964143" - ], - "holdings": [], - "updatedAt": 1692410724232, - "publicationStatement": [ - "London : Oberon, 1999." - ], - "identifier": [ - "urn:bnum:9928479343506421", - "urn:isbn:1840021047", - "urn:oclc:ocm53231811", - "urn:oclc:SCSB-964143", - "urn:undefined:(CStRLIN)GAEGO42263032-B", - "urn:undefined:(GEU)(Sirsi)o42263032", - "urn:undefined:(NjP)2847934-princetondb", - "urn:undefined:(OCoLC)ocm53231811", - "urn:undefined:(NjP)Voyager2847934" - ], - "idIsbn": [ - "1840021047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / by Richard Bean." - ], - "uri": "pb9928479343506421", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1840021047" - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 4023.2744, - "pb9928479343506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9928479343506421", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi23486469710006421", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR6052.E176 T627 1999" - ], - "identifierV2": [ - { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101095377683" - } - ], - "physicalLocation": [ - "PR6052.E176 T627 1999" - ], - "recapCustomerCode": [ - "PA" - ], - "identifier": [ - "urn:barcode:32101095377683" - ], - "idBarcode": [ - "32101095377683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPR6052.E176 T627 001999" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11518415", - "_score": 854.8394, - "_source": { - "extent": [ - "ix, 256 p. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 252-256).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Crown Pub." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1991 - ], - "title": [ - "Toasts : over 1,500 of the best toasts, sentiments, blessings, and graces" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PN6341" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "idLccn": [ - "91006967" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Dickson, Paul." - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "23141392", - "NYPG92-B3876" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PN6341" - }, - { - "type": "nypl:Bnumber", - "value": "11518415" - }, - { - "type": "bf:Isbn", - "value": "0517584123" - }, - { - "type": "nypl:Oclc", - "value": "23141392" - }, - { - "type": "nypl:Oclc", - "value": "NYPG92-B3876" - }, - { - "type": "bf:Lccn", - "value": "91006967" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1526757" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)23141392" - } - ], - "updatedAt": 1710987073679, - "publicationStatement": [ - "New York : Crown Pub., 1991." - ], - "idIsbn": [ - "0517584123" - ], - "identifier": [ - "urn:shelfmark:PN6341", - "urn:bnum:11518415", - "urn:isbn:0517584123", - "urn:oclc:23141392", - "urn:oclc:NYPG92-B3876", - "urn:lccn:91006967", - "urn:identifier:(WaOLN)nyp1526757", - "urn:identifier:(OCoLC)23141392" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Toasts : over 1,500 of the best toasts, sentiments, blessings, and graces / [compiled by] Paul Dickson ; illustrated by Rollin McGrail." - ], - "uri": "b11518415", - "lccClassification": [ - "PN6341 .T634 1991" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ], - "idIsbn_clean": [ - "0517584123" - ] - }, - "sort": [ - 854.8394, - "b11518415" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11518415", - "_nested": { - "field": "items", - "offset": 0 - }, - "_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:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433076689698" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. PN6341 .T634 1991", - "urn:barcode:33433076689698" - ], - "identifierV2": [ - { - "value": "Pub. Cat. PN6341 .T634 1991", - "type": "bf:ShelfMark" - }, - { - "value": "33433076689698", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. PN6341 .T634 1991" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. PN6341 .T634 1991" - ], - "shelfMark_sort": "aPub. Cat. PN6341 .T634 001991", - "status": [ - { - "id": "status:u", - "label": "Temporarily unavailable" - } - ], - "status_packed": [ - "status:u||Temporarily unavailable" - ], - "type": [ - "bf:Item" - ], - "uri": "i15916191" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb6955197", - "_score": 852.17035, - "_source": { - "extent": [ - "386 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Wydawn. \"Czarne\"," - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "createdYear": [ - 2010 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast za przodków /", - "Toast za przodków / Wojciech Górecki." - ], - "creatorLiteral": [ - "Górecki, Wojciech, 1970-" - ], - "createdString": [ - "2010" - ], - "seriesStatement": [ - "Reportaż" - ], - "dateStartYear": [ - 2010 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "6955197" - }, - { - "type": "bf:Isbn", - "value": "9788375361940" - }, - { - "type": "nypl:Oclc", - "value": "ocn671293997" - }, - { - "type": "bf:Identifier", - "value": "(PlWaKWL)lx2010024594" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn671293997" - } - ], - "idOclc": [ - "ocn671293997" - ], - "uniformTitle": [ - "Reportaż." - ], - "holdings": [], - "updatedAt": 1642216898305, - "publicationStatement": [ - "Wołowiec : Wydawn. \"Czarne\", 2010." - ], - "identifier": [ - "urn:bnum:6955197", - "urn:isbn:9788375361940", - "urn:oclc:ocn671293997", - "urn:undefined:(PlWaKWL)lx2010024594", - "urn:undefined:(OCoLC)ocn671293997" - ], - "idIsbn": [ - "9788375361940" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast za przodków / Wojciech Górecki." - ], - "uri": "pb6955197", - "lccClassification": [ - "PG7223.I78 T627 2010" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wołowiec :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 852.17035, - "pb6955197" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb6955197", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi6260657", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PG7223.I78 T627 2010" - ], - "identifierV2": [ - { - "value": "PG7223.I78 T627 2010", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101072287822" - } - ], - "physicalLocation": [ - "PG7223.I78 T627 2010" - ], - "identifier": [ - "urn:barcode:32101072287822" - ], - "idBarcode": [ - "32101072287822" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPG7223.I78 T627 002010" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16579957", - "_score": 850.01465, - "_source": { - "extent": [ - "iv, 238 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nigeria", - "Nigeria -- Social conditions", - "Nigeria -- Social conditions -- 1960-", - "Nigeria -- Economic conditions", - "Nigeria -- Economic conditions -- 1960-", - "Nigeria -- Politics and government", - "Nigeria -- Politics and government -- 1960-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S.M.K. Taribo" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1991 - ], - "title": [ - "A toast to Nigeria" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc D 07-1829" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "creatorLiteral": [ - "Taribo, Spiff Micah Kalaokpara." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "35139639" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 07-1829" - }, - { - "type": "nypl:Bnumber", - "value": "16579957" - }, - { - "type": "nypl:Oclc", - "value": "35139639" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)35139639" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M180000413" - } - ], - "updatedAt": 1711412110199, - "publicationStatement": [ - "[Nigeria?] : S.M.K. Taribo, c1991." - ], - "identifier": [ - "urn:shelfmark:Sc D 07-1829", - "urn:bnum:16579957", - "urn:oclc:35139639", - "urn:identifier:(OCoLC)35139639", - "urn:identifier:(WaOLN)M180000413" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nigeria -- Social conditions -- 1960-", - "Nigeria -- Economic conditions -- 1960-", - "Nigeria -- Politics and government -- 1960-" - ], - "titleDisplay": [ - "A toast to Nigeria / by Spiff Micah Kalaokpara Taribo." - ], - "uri": "b16579957", - "lccClassification": [ - "PR9387.9.T37 T63 1991" - ], - "placeOfPublication": [ - "[Nigeria?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 850.01465, - "b16579957" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16579957", - "_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": [ - "33433074287149" - ], - "identifier": [ - "urn:shelfmark:Sc D 07-1829", - "urn:barcode:33433074287149" - ], - "identifierV2": [ - { - "value": "Sc D 07-1829", - "type": "bf:ShelfMark" - }, - { - "value": "33433074287149", - "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 D 07-1829" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 07-1829" - ], - "shelfMark_sort": "aSc D 07-001829", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17355861" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12227432", - "_score": 848.01465, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", - "type": "bf:Note" - } - ], - "partOf": [ - "Dance and dancers. London. June/July 1991, p. 33-36. ill." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Martins, Peter, 1946-", - "New York City Ballet", - "Sleeping beauty (Choreographic work : Martins after Petipa, M)" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1991 - ], - "title": [ - "A toast to Beauty." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*MGZA" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "creatorLiteral": [ - "Barnes, Clive, 1927-2008." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "NYPY916066942-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*MGZA" - }, - { - "type": "nypl:Bnumber", - "value": "12227432" - }, - { - "type": "nypl:Oclc", - "value": "NYPY916066942-B" - }, - { - "type": "bf:Identifier", - "value": "(NN-PD)916066942" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2214263" - } - ], - "updatedAt": 1711473809402, - "identifier": [ - "urn:shelfmark:*MGZA", - "urn:bnum:12227432", - "urn:oclc:NYPY916066942-B", - "urn:identifier:(NN-PD)916066942", - "urn:identifier:(WaOLN)nyp2214263" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Martins, Peter, 1946-", - "New York City Ballet.", - "Sleeping beauty (Choreographic work : Martins after Petipa, M)" - ], - "titleDisplay": [ - "A toast to Beauty." - ], - "uri": "b12227432", - "issuance": [ - { - "id": "urn:biblevel:b", - "label": "serial component part" - } - ] - }, - "sort": [ - 848.01465, - "b12227432" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22244189", - "_score": 848.01465, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Language", - "label": "Sung in French.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "ABC Classics" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2018 - ], - "title": [ - "A toast to Melba" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist." - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1176356131" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "22244189" - }, - { - "type": "nypl:Oclc", - "value": "1176356131" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850205" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850206" - }, - { - "type": "bf:Identifier", - "value": "00028948163625 ABC Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1176356131" - } - ], - "updatedAt": 1711348526951, - "publicationStatement": [ - "[Place of publication not identified] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:22244189", - "urn:oclc:1176356131", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:00028948163625 ABC Classics", - "urn:identifier:(OCoLC)1176356131" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." - ], - "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22244189", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028948163625" - } - ], - "placeOfPublication": [ - "[Place of publication not identified]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." - ] - }, - "sort": [ - 848.01465, - "b22244189" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22839633", - "_score": 848.01465, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Language", - "label": "Sung in French.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "ABC Classics" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2018 - ], - "title": [ - "A toast to Melba" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist." - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1336891241" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "22839633" - }, - { - "type": "nypl:Oclc", - "value": "1336891241" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850205" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850206" - }, - { - "type": "bf:Identifier", - "value": "028948163632 ABC Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1336891241" - } - ], - "updatedAt": 1711207066836, - "publicationStatement": [ - "[Australia] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:22839633", - "urn:oclc:1336891241", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:028948163632 ABC Classics", - "urn:identifier:(OCoLC)1336891241" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." - ], - "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22839633", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" - } - ], - "placeOfPublication": [ - "[Australia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." - ] - }, - "sort": [ - 848.01465, - "b22839633" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_score": 847.3456, - "_source": { - "extent": [ - "1 score (3 unnumbered pages, 12 pages) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes by Jack Gottlieb.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Recorded by the Israel Philharmonic, the composer conducting, on Deutsche Grammophon 2532 052.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Also available in a version for symphonic band.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "publisherLiteral": [ - "Jalni Publications ; Boosey & Hawkes, sole selling agent" - ], - "dateEndString": [ - "1980" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A musical toast" - ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Hawkes pocket scores" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1808514" - }, - { - "type": "nypl:Oclc", - "value": "ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "H.P.S. 976 Boosey & Hawkes" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "(NNC)1808514" - }, - { - "type": "bf:Identifier", - "value": "1808514" - } - ], - "idOclc": [ - "ocm11578466" - ], - "uniformTitle": [ - "Musical toast", - "Hawkes pocket scores." - ], - "dateEndYear": [ - 1980 - ], - "holdings": [], - "updatedAt": 1664590433971, - "publicationStatement": [ - "[Place of publication not identified] : Jalni Publications ; New York, N.Y. : Boosey & Hawkes, sole selling agent, 1984, ©1980." - ], - "identifier": [ - "urn:bnum:1808514", - "urn:oclc:ocm11578466", - "urn:undefined:H.P.S. 976 Boosey & Hawkes", - "urn:undefined:(OCoLC)ocm11578466", - "urn:undefined:(NNC)1808514", - "urn:undefined:1808514" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "cb1808514", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Place of publication not identified] : New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Musical toast" - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 847.3456, - "cb1808514" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci2278358", - "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": [ - "61 B458 M9" - ], - "identifierV2": [ - { - "value": "61 B458 M9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR61509485" - } - ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], - "idBarcode": [ - "MR61509485" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a61 B458 M000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_score": 846.5295, - "_source": { - "extent": [ - "xxi, 273 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Originally published ... by Charles Scribner's Sons ... in 1940\"--T.p. verso.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vintage Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1990 - ], - "dateEndString": [ - "1940" - ], - "title": [ - "Angels on toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 90-6303" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1990" - ], - "creatorLiteral": [ - "Powell, Dawn." - ], - "idLccn": [ - "89040281" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1990 - ], - "idOclc": [ - "70304237", - "NYPG90-B53168" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 90-6303" - }, - { - "type": "nypl:Bnumber", - "value": "11294632" - }, - { - "type": "bf:Isbn", - "value": "0679726861" - }, - { - "type": "nypl:Oclc", - "value": "70304237" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B53168" - }, - { - "type": "bf:Lccn", - "value": "89040281" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1302350" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)70304237" - } - ], - "dateEndYear": [ - 1940 - ], - "updatedAt": 1711585322970, - "publicationStatement": [ - "New York : Vintage Books, 1990, c1940." - ], - "idIsbn": [ - "0679726861" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:bnum:11294632", - "urn:isbn:0679726861", - "urn:oclc:70304237", - "urn:oclc:NYPG90-B53168", - "urn:lccn:89040281", - "urn:identifier:(WaOLN)nyp1302350", - "urn:identifier:(OCoLC)70304237" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Angels on toast / Dawn Powell ; with an introduction by Gore Vidal." - ], - "uri": "b11294632", - "lccClassification": [ - "PS3531.O936 A83 1989" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "0679726861" - ] - }, - "sort": [ - 846.5295, - "b11294632" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433040606604" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" - ], - "identifierV2": [ - { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" - }, - { - "value": "33433040606604", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFD 90-6303" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 90-6303" - ], - "shelfMark_sort": "aJFD 90-006303", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21766784", - "_score": 846.5295, - "_source": { - "extent": [ - "75 pages ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Quattro Poetry" - ], - "description": [ - "\"This new poetry collection by Corrado Paina explores the induced meditations and considerations that illness imposes upon a body and mind.\"--" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2018 - ], - "title": [ - "A toast to illness" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 19-3255" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "creatorLiteral": [ - "Paina, Corrado, 1954-" - ], - "idLccn": [ - "2018487509" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1030339564" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 19-3255" - }, - { - "type": "nypl:Bnumber", - "value": "21766784" - }, - { - "type": "bf:Isbn", - "value": "9781988254616" - }, - { - "type": "bf:Isbn", - "value": "1988254612" - }, - { - "type": "nypl:Oclc", - "value": "1030339564" - }, - { - "type": "bf:Lccn", - "value": "2018487509" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1030339564" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1030484899" - } - ], - "updatedAt": 1711251518653, - "publicationStatement": [ - "Toronto, Canada : Quattro Poetry, 2018." - ], - "genreForm": [ - "Poetry." - ], - "idIsbn": [ - "9781988254616", - "1988254612" - ], - "identifier": [ - "urn:shelfmark:JFD 19-3255", - "urn:bnum:21766784", - "urn:isbn:9781988254616", - "urn:isbn:1988254612", - "urn:oclc:1030339564", - "urn:lccn:2018487509", - "urn:identifier:(OCoLC)1030339564", - "urn:identifier:(OCoLC)1030484899" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast to illness / Corrado Paina." - ], - "uri": "b21766784", - "lccClassification": [ - "PR9199.4.P34 T63 2018" - ], - "placeOfPublication": [ - "Toronto, Canada" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm" - ], - "idIsbn_clean": [ - "9781988254616", - "1988254612" - ] - }, - "sort": [ - 846.5295, - "b21766784" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21766784", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433129000943" - ], - "identifier": [ - "urn:shelfmark:JFD 19-3255", - "urn:barcode:33433129000943" - ], - "identifierV2": [ - { - "value": "JFD 19-3255", - "type": "bf:ShelfMark" - }, - { - "value": "33433129000943", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 19-3255" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 19-3255" - ], - "shelfMark_sort": "aJFD 19-003255", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37241733" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22227752", - "_score": 846.5295, - "_source": { - "extent": [ - "1 volume (unpaged) : colour illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"This is a first edition\"--Title page verso.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Racially mixed people", - "Racially mixed people -- Juvenile fiction", - "Grandmothers", - "Grandmothers -- Juvenile fiction", - "Blind", - "Blind -- Juvenile fiction", - "Human skin color", - "Human skin color -- Juvenile fiction", - "Self-esteem", - "Self-esteem -- Juvenile fiction", - "Picture books for children" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Pajama Press" - ], - "description": [ - "While out on a walk with her blind grandmother, Phoebe tries to describe the skin color of members of her family by comparing them to various foods." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2016 - ], - "title": [ - "French toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFF 17-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2016" - ], - "creatorLiteral": [ - "Winters, Kari-Lynn, 1969-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Thisdale, François, 1964-" - ], - "dateStartYear": [ - 2016 - ], - "idOclc": [ - "943594881" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 17-1945" - }, - { - "type": "nypl:Bnumber", - "value": "22227752" - }, - { - "type": "bf:Isbn", - "value": "9781772780062" - }, - { - "type": "bf:Isbn", - "value": "1772780065" - }, - { - "type": "nypl:Oclc", - "value": "943594881" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)943594881" - } - ], - "updatedAt": 1711499140337, - "publicationStatement": [ - "Toronto, Ontario, Canada : Pajama Press, 2016." - ], - "genreForm": [ - "Fiction.", - "Juvenile works." - ], - "idIsbn": [ - "9781772780062", - "1772780065" - ], - "identifier": [ - "urn:shelfmark:JFF 17-1945", - "urn:bnum:22227752", - "urn:isbn:9781772780062", - "urn:isbn:1772780065", - "urn:oclc:943594881", - "urn:identifier:(OCoLC)943594881" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2016" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Racially mixed people -- Juvenile fiction.", - "Grandmothers -- Juvenile fiction.", - "Blind -- Juvenile fiction.", - "Human skin color -- Juvenile fiction.", - "Self-esteem -- Juvenile fiction.", - "Picture books for children.", - "Blind.", - "Grandmothers.", - "Human skin color.", - "Racially mixed people.", - "Self-esteem." - ], - "titleDisplay": [ - "French toast / written by Kari-Lynn Winters ; illustrated by François Thisdale." - ], - "uri": "b22227752", - "lccClassification": [ - "PZ7.W7674 Fr 2016" - ], - "placeOfPublication": [ - "Toronto, Ontario, Canada" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 x 27 cm" - ], - "idIsbn_clean": [ - "9781772780062", - "1772780065" - ] - }, - "sort": [ - 846.5295, - "b22227752" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22227752", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433122276318" - ], - "identifier": [ - "urn:shelfmark:JFF 17-1945", - "urn:barcode:33433122276318" - ], - "identifierV2": [ - { - "value": "JFF 17-1945", - "type": "bf:ShelfMark" - }, - { - "value": "33433122276318", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFF 17-1945" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFF 17-1945" - ], - "shelfMark_sort": "aJFF 17-001945", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37949151" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10981311", - "_score": 844.5295, - "_source": { - "extent": [ - "1 miniature score (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Pl. no.: H.P.S. 976.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Fondly dedicated to the memory of André Kostelanetz.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jalni Publications : Boosey & Hawkes, sole selling agent" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1984 - ], - "dateEndString": [ - "1980" - ], - "title": [ - "A musical toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JNF 87-27" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1984" - ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kostelanetz, Andre, 1901-1980." - ], - "dateStartYear": [ - 1984 - ], - "idOclc": [ - "11578466", - "NYPG85-C1260" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNF 87-27" - }, - { - "type": "nypl:Bnumber", - "value": "10981311" - }, - { - "type": "nypl:Oclc", - "value": "11578466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG85-C1260" - }, - { - "type": "bf:Identifier", - "value": "HPS 976. Boosey & Hawkes" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0988546" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11578466" - } - ], - "dateEndYear": [ - 1980 - ], - "updatedAt": 1711307724968, - "publicationStatement": [ - "[United States] : Jalni Publications : Boosey & Hawkes, sole selling agent, 1984, c1980." - ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:bnum:10981311", - "urn:oclc:11578466", - "urn:oclc:NYPG85-C1260", - "urn:identifier:HPS 976. Boosey & Hawkes", - "urn:identifier:(WaOLN)nyp0988546", - "urn:identifier:(OCoLC)11578466" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "b10981311", - "placeOfPublication": [ - "[United States]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 844.5295, - "b10981311" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10981311", - "_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:57", - "label": "printed music limited circ MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:57||printed music limited circ MaRLI" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "idBarcode": [ - "33433047232982" - ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:barcode:33433047232982" - ], - "identifierV2": [ - { - "value": "JNF 87-27", - "type": "bf:ShelfMark" - }, - { - "value": "33433047232982", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "physicalLocation": [ - "JNF 87-27" - ], - "recapCustomerCode": [ - "NP" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JNF 87-27" - ], - "shelfMark_sort": "aJNF 87-000027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13956002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21897112", - "_score": 844.5295, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Note", - "label": "All-American songs of temperance and temptation. A rich blend of Pro and Anti drinking songs for the human voice.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Alcohol", - "Alcohol -- Songs and music", - "Temperance", - "Temperance -- Songs and music", - "Prohibition", - "Prohibition -- Songs and music", - "Choruses, Secular", - "Popular music", - "Popular music -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rose Records" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2014 - ], - "dateEndString": [ - "2014" - ], - "title": [ - "A toast to prohibition" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2014" - ], - "idLccn": [ - "TCABU1402840", - "TCABU1402841", - "TCABU1402843", - "TCABU1402846", - "TCABU1402849", - "TCABU1402851", - "TCABU1402852", - "TCABU1402858", - "TCABU1402862", - "TCABU1402864", - "TCABU1402869", - "TCABU1402872", - "TCABU1402874", - "TCABU1402878", - "TCABU1402880", - "TCABU1402883", - "TCABU1402887", - "TCABU1402889", - "TCABU1402890", - "TCABU1402892", - "TCABU1402893", - "TCABU1402894", - "TCABU1402895", - "TCABU1402896" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Rose Ensemble, performer." - ], - "dateStartYear": [ - 2014 - ], - "idOclc": [ - "911040673" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21897112" - }, - { - "type": "nypl:Oclc", - "value": "911040673" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402840" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402841" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402843" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402846" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402849" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402851" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402852" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402858" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402862" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402864" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402869" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402872" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402874" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402878" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402880" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402883" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402887" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402889" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402890" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402892" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402893" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402894" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402895" - }, - { - "type": "bf:Lccn", - "value": "TCABU1402896" - }, - { - "type": "bf:Identifier", - "value": "Rose011 Rose Records" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)911040673" - } - ], - "dateEndYear": [ - 2014 - ], - "updatedAt": 1711277285630, - "publicationStatement": [ - "St. Paul, Minnesota : Rose Records, [2014]", - "©2014" - ], - "genreForm": [ - "Popular music." - ], - "identifier": [ - "urn:bnum:21897112", - "urn:oclc:911040673", - "urn:lccn:TCABU1402840", - "urn:lccn:TCABU1402841", - "urn:lccn:TCABU1402843", - "urn:lccn:TCABU1402846", - "urn:lccn:TCABU1402849", - "urn:lccn:TCABU1402851", - "urn:lccn:TCABU1402852", - "urn:lccn:TCABU1402858", - "urn:lccn:TCABU1402862", - "urn:lccn:TCABU1402864", - "urn:lccn:TCABU1402869", - "urn:lccn:TCABU1402872", - "urn:lccn:TCABU1402874", - "urn:lccn:TCABU1402878", - "urn:lccn:TCABU1402880", - "urn:lccn:TCABU1402883", - "urn:lccn:TCABU1402887", - "urn:lccn:TCABU1402889", - "urn:lccn:TCABU1402890", - "urn:lccn:TCABU1402892", - "urn:lccn:TCABU1402893", - "urn:lccn:TCABU1402894", - "urn:lccn:TCABU1402895", - "urn:lccn:TCABU1402896", - "urn:identifier:Rose011 Rose Records", - "urn:identifier:(OCoLC)911040673" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2014" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Alcohol -- Songs and music.", - "Temperance -- Songs and music.", - "Prohibition -- Songs and music.", - "Choruses, Secular.", - "Popular music -- United States." - ], - "titleDisplay": [ - "A toast to prohibition / Rose Ensemble." - ], - "uri": "b21897112", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=Rose011" - } - ], - "placeOfPublication": [ - "St. Paul, Minnesota" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Close up the booze shop (Brighten the corner, 1913) (2:44) -- I like my bootleg man (1928) (2:19) -- The moonshiner's dance, Part I (1927) (2:30) -- Sign the pledge for mother's sake (1867) (3:34) -- It must be settled to-night (1882) (3:18) -- That's a plenty (1914) (2:22) -- Under the Anheuser Bush (1903) (2:51) -- Always vote as you pray (Sweet by and by, 1868) (3:16) -- How are you going to wet your whistle (1919) (1:46) -- Queer people (1903) (2:30) -- King Alcohol (King Andrew, 1834) (1:49) -- At the Prohibition Ball (1919) (2:09) -- The reformed blacksmith (1880) (2:48) -- Just to pay our respects to Maguiness (1886) (3:32) -- Battle song of the Y's (1889) (5:01) -- The alcoholic blues (1919) (2:18) -- Drink from the mountain spring (1847) (2:48) -- A sober spouse for me (1844) (2:12) -- Brandy and water (1853) (2:30) -- Bugbey's champagne galop (1870) (2:19) -- Okay beer (1932) (1:54) -- Temperance is coming (1932) (3:54) -- Help just a little (1885) (3:22) -- A toast to prohibition (1930) (2:12)." - ] - }, - "sort": [ - 844.5295, - "b21897112" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb5714692", - "_score": 827.17035, - "_source": { - "extent": [ - "272 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Pan Macmillan," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 2008 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushy peas on toast /", - "Mushy peas on toast / Laurian Clemence." - ], - "creatorLiteral": [ - "Clemence, Laurian." - ], - "createdString": [ - "2008" - ], - "idLccn": [ - " 2009351955" - ], - "dateStartYear": [ - 2008 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "5714692" - }, - { - "type": "bf:Isbn", - "value": "9781770100671" - }, - { - "type": "bf:Isbn", - "value": "1770100679" - }, - { - "type": "bf:Lccn", - "value": " 2009351955" - }, - { - "type": "nypl:Oclc", - "value": "ocn301705470" - }, - { - "type": "nypl:Oclc", - "value": "301705470" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn301705470" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)301705470" - } - ], - "idOclc": [ - "ocn301705470", - "301705470" - ], - "holdings": [], - "updatedAt": 1642216409039, - "publicationStatement": [ - "Northlands [South Africa] : Pan Macmillan, 2008." - ], - "identifier": [ - "urn:bnum:5714692", - "urn:isbn:9781770100671", - "urn:isbn:1770100679", - "urn:lccn: 2009351955", - "urn:oclc:ocn301705470", - "urn:oclc:301705470", - "urn:undefined:(OCoLC)ocn301705470", - "urn:undefined:(OCoLC)301705470" - ], - "idIsbn": [ - "9781770100671", - "1770100679" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Mushy peas on toast / Laurian Clemence." - ], - "uri": "pb5714692", - "lccClassification": [ - "PR9369.4.C54 M87 2008" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Northlands [South Africa] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 827.17035, - "pb5714692" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb5714692", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi5303659", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR9369.4.C54M87 2008" - ], - "identifierV2": [ - { - "value": "PR9369.4.C54M87 2008", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101069223301" - } - ], - "physicalLocation": [ - "PR9369.4.C54M87 2008" - ], - "identifier": [ - "urn:barcode:32101069223301" - ], - "idBarcode": [ - "32101069223301" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPR9369.4.C54M87 002008" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18806309", - "_score": 823.04956, - "_source": { - "extent": [ - "386 p. : map ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 383-[387])", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Polish.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Caucasus", - "Caucasus -- Civilization" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wydawn. Czarne" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2010 - ], - "title": [ - "Toast za przodków" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ReCAP 11-4380" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2010" - ], - "creatorLiteral": [ - "Górecki, Wojciech, 1970-" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Reportaż" - ], - "dateStartYear": [ - 2010 - ], - "idOclc": [ - "671293997" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ReCAP 11-4380" - }, - { - "type": "nypl:Bnumber", - "value": "18806309" - }, - { - "type": "bf:Isbn", - "value": "9788375361940 (pbk)" - }, - { - "type": "bf:Isbn", - "value": "8375361941 (pbk)" - }, - { - "type": "nypl:Oclc", - "value": "671293997" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)671293997" - } - ], - "uniformTitle": [ - "Seria Reportaż." - ], - "updatedAt": 1711224414808, - "publicationStatement": [ - "Wołowiec : Wydawn. Czarne, 2010." - ], - "idIsbn": [ - "9788375361940 (pbk)", - "8375361941 (pbk)" - ], - "identifier": [ - "urn:shelfmark:ReCAP 11-4380", - "urn:bnum:18806309", - "urn:isbn:9788375361940 (pbk)", - "urn:isbn:8375361941 (pbk)", - "urn:oclc:671293997", - "urn:identifier:(OCoLC)671293997" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Caucasus.", - "Caucasus -- Civilization." - ], - "titleDisplay": [ - "Toast za przodków / Wojciech Górecki." - ], - "uri": "b18806309", - "placeOfPublication": [ - "Wołowiec" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ], - "idIsbn_clean": [ - "9788375361940", - "8375361941" - ] - }, - "sort": [ - 823.04956, - "b18806309" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18806309", - "_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": [ - "33433090460647" - ], - "identifier": [ - "urn:shelfmark:ReCAP 11-4380", - "urn:barcode:33433090460647" - ], - "identifierV2": [ - { - "value": "ReCAP 11-4380", - "type": "bf:ShelfMark" - }, - { - "value": "33433090460647", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ReCAP 11-4380" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ReCAP 11-4380" - ], - "shelfMark_sort": "aReCAP 11-004380", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26121731" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15868157", - "_score": 821.76166, - "_source": { - "extent": [ - "64 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Conduct of life", - "Conduct of life -- Poetry", - "Nigeria", - "Nigeria -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Hope Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2002 - ], - "title": [ - "Toast to life & vision" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc D 13-57 no. 1" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2002" - ], - "creatorLiteral": [ - "Odeleye, Biodun." - ], - "idLccn": [ - "2004352407" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2002 - ], - "idOclc": [ - "54955577" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 13-57 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "15868157" - }, - { - "type": "bf:Isbn", - "value": "9783654845 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "9789783654846 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "54955577" - }, - { - "type": "bf:Lccn", - "value": "2004352407" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)54955577" - } - ], - "updatedAt": 1711410913990, - "publicationStatement": [ - "Ibadan, Nigeria : Hope Publications, 2002." - ], - "idIsbn": [ - "9783654845 (pbk.)", - "9789783654846 (pbk.)" - ], - "identifier": [ - "urn:shelfmark:Sc D 13-57 no. 1", - "urn:bnum:15868157", - "urn:isbn:9783654845 (pbk.)", - "urn:isbn:9789783654846 (pbk.)", - "urn:oclc:54955577", - "urn:lccn:2004352407", - "urn:identifier:(OCoLC)54955577" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2002" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Conduct of life -- Poetry.", - "Nigeria -- Poetry." - ], - "titleDisplay": [ - "Toast to life & vision / Biodun Odeleye." - ], - "uri": "b15868157", - "lccClassification": [ - "PR9387.9.O3115 T63 2002" - ], - "placeOfPublication": [ - "Ibadan, Nigeria" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Toast to life and vision" - ], - "tableOfContents": [ - "Moon among stars -- Vampires on rampage -- The dangling visionary saw -- Much to a name -- Dear mother -- La Rambla -- Personifying death -- Success turns albatross in the hall of nobility." - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "9783654845", - "9789783654846" - ] - }, - "sort": [ - 821.76166, - "b15868157" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15868157", - "_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:61", - "label": "pamphlet volumes, bound with" - } - ], - "catalogItemType_packed": [ - "catalogItemType:61||pamphlet volumes, bound with" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433089426146" - ], - "identifier": [ - "urn:shelfmark:Sc D 13-57", - "urn:barcode:33433089426146" - ], - "identifierV2": [ - { - "value": "Sc D 13-57", - "type": "bf:ShelfMark" - }, - { - "value": "33433089426146", - "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 D 13-57" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 13-57" - ], - "shelfMark_sort": "aSc D 13-000057", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29987107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990099650640203941", - "_score": 819.0928, - "_source": { - "extent": [ - "247 p. ;" - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Short stories" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cosmos Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "2002" - ], - "createdYear": [ - 2006 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast / Charles Stross." - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stross, Charles" - ], - "createdString": [ - "2006" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2006 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990099650640203941" - }, - { - "type": "bf:Isbn", - "value": "0809556030 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "69652590" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-12049344" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)69652590" - } - ], - "idOclc": [ - "69652590", - "SCSB-12049344" - ], - "dateEndYear": [ - 2002 - ], - "holdings": [], - "updatedAt": 1681081853656, - "publicationStatement": [ - "Holicong, PA : Cosmos Books, c2006, c2002." - ], - "identifier": [ - "urn:bnum:990099650640203941", - "urn:isbn:0809556030 (pbk.)", - "urn:oclc:69652590", - "urn:oclc:SCSB-12049344", - "urn:undefined:(OCoLC)69652590" - ], - "idIsbn": [ - "0809556030 (pbk.)" - ], - "genreForm": [ - "short stories.", - "Short stories", - "Science fiction", - "Nouvelles." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Short stories" - ], - "titleDisplay": [ - "Toast / Charles Stross." - ], - "uri": "hb990099650640203941", - "lccClassification": [ - "PR6119.T79 T63 2006" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Holicong, PA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Antibodies -- Bear trap -- Extracts from the Club Diary -- A colder war -- Toast: a con report -- A boy and his God -- Ship of fools -- Dechlorinating the moderator -- Yellow snow -- Big Brother Iron." - ], - "idIsbn_clean": [ - "0809556030" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 819.0928, - "hb990099650640203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990099650640203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232106586300003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR6119.T79 T63 2006" - ], - "identifierV2": [ - { - "value": "PR6119.T79 T63 2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32044077499465" - } - ], - "physicalLocation": [ - "PR6119.T79 T63 2006" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:32044077499465" - ], - "idBarcode": [ - "32044077499465" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPR6119.T79 T63 002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9969551973506421", - "_score": 819.0928, - "_source": { - "extent": [ - "386 pages : map ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Civilization", - "Caucasus", - "Caucasus -- Civilization" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wydawn. Czarne" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2010 - ], - "title": [ - "Toast za przodków" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2010" - ], - "creatorLiteral": [ - "Górecki, Wojciech, 1970-" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Reportaż" - ], - "dateStartYear": [ - 2010 - ], - "idOclc": [ - "ocn671293997", - "671293997", - "SCSB-1622764" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9969551973506421" - }, - { - "type": "bf:Isbn", - "value": "9788375361940" - }, - { - "type": "bf:Isbn", - "value": "8375361941" - }, - { - "type": "nypl:Oclc", - "value": "ocn671293997" - }, - { - "type": "nypl:Oclc", - "value": "671293997" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-1622764" - }, - { - "type": "bf:Identifier", - "value": "(PlWaKWL)lx2010024594" - }, - { - "type": "bf:Identifier", - "value": "(NjP)6955197-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn671293997" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)671293997" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager6955197" - } - ], - "uniformTitle": [ - "Seria Reportaż." - ], - "updatedAt": 1710849132266, - "publicationStatement": [ - "Wołowiec : Wydawn. Czarne, 2010." - ], - "idIsbn": [ - "9788375361940", - "8375361941" - ], - "identifier": [ - "urn:bnum:9969551973506421", - "urn:isbn:9788375361940", - "urn:isbn:8375361941", - "urn:oclc:ocn671293997", - "urn:oclc:671293997", - "urn:oclc:SCSB-1622764", - "urn:identifier:(PlWaKWL)lx2010024594", - "urn:identifier:(NjP)6955197-princetondb", - "urn:identifier:(OCoLC)ocn671293997", - "urn:identifier:(OCoLC)671293997", - "urn:identifier:(NjP)Voyager6955197" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Civilization.", - "Caucasus.", - "Caucasus -- Civilization." - ], - "titleDisplay": [ - "Toast za przodków / Wojciech Górecki." - ], - "uri": "pb9969551973506421", - "lccClassification": [ - "PG7223.I78 T627 2010" - ], - "placeOfPublication": [ - "Wołowiec" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ], - "idIsbn_clean": [ - "9788375361940", - "8375361941" - ] - }, - "sort": [ - 819.0928, - "pb9969551973506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9969551973506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101072287822" - ], - "identifier": [ - "urn:shelfmark:PG7223.I78 T627 2010", - "urn:barcode:32101072287822" - ], - "identifierV2": [ - { - "value": "PG7223.I78 T627 2010", - "type": "bf:ShelfMark" - }, - { - "value": "32101072287822", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "PG7223.I78 T627 2010" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "PG7223.I78 T627 2010" - ], - "shelfMark_sort": "aPG7223.I78 T627 002010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23652743930006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12004445", - "_score": 805.29517, - "_source": { - "extent": [ - "124 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kneipp" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1993 - ], - "title": [ - "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 94-21395" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1993" - ], - "creatorLiteral": [ - "Heindel, Gabriele." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1993 - ], - "idOclc": [ - "31256373", - "NYPGR31256373-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 94-21395" - }, - { - "type": "nypl:Bnumber", - "value": "12004445" - }, - { - "type": "bf:Isbn", - "value": "3900696349" - }, - { - "type": "nypl:Oclc", - "value": "31256373" - }, - { - "type": "nypl:Oclc", - "value": "NYPGR31256373-B" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)31256373" - }, - { - "type": "bf:Identifier", - "value": "LC 199410" - } - ], - "updatedAt": 1711150297035, - "publicationStatement": [ - "Leoben : Kneipp, 1993." - ], - "idIsbn": [ - "3900696349" - ], - "identifier": [ - "urn:shelfmark:JFD 94-21395", - "urn:bnum:12004445", - "urn:isbn:3900696349", - "urn:oclc:31256373", - "urn:oclc:NYPGR31256373-B", - "urn:identifier:(OCoLC)31256373", - "urn:identifier:LC 199410" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1993" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." - ], - "uri": "b12004445", - "placeOfPublication": [ - "Leoben" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "3900696349" - ] - }, - "sort": [ - 805.29517, - "b12004445" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12004445", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433041530118" - ], - "identifier": [ - "urn:shelfmark:JFD 94-21395", - "urn:barcode:33433041530118" - ], - "identifierV2": [ - { - "value": "JFD 94-21395", - "type": "bf:ShelfMark" - }, - { - "value": "33433041530118", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 94-21395" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 94-21395" - ], - "shelfMark_sort": "aJFD 94-021395", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13317173" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11124847", - "_score": 800.04956, - "_source": { - "extent": [ - "94 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Subtitle on cover: Sample toasts and the origins of customs.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 91-92.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Marriage customs and rites", - "Wedding toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "JM Productions" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1986 - ], - "title": [ - "Wedding toasts and traditions" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "GT2665" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1986" - ], - "creatorLiteral": [ - "Ishee, Mark." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1986 - ], - "idOclc": [ - "12099824", - "NYPG87-B72178" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "GT2665" - }, - { - "type": "nypl:Bnumber", - "value": "11124847" - }, - { - "type": "bf:Isbn", - "value": "0939298457 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "12099824" - }, - { - "type": "nypl:Oclc", - "value": "NYPG87-B72178" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1132322" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12099824" - } - ], - "updatedAt": 1711610473558, - "publicationStatement": [ - "[Brentwood, TN] : JM Productions, c1986." - ], - "idIsbn": [ - "0939298457 (pbk.)" - ], - "identifier": [ - "urn:shelfmark:GT2665", - "urn:bnum:11124847", - "urn:isbn:0939298457 (pbk.)", - "urn:oclc:12099824", - "urn:oclc:NYPG87-B72178", - "urn:identifier:(WaOLN)nyp1132322", - "urn:identifier:(OCoLC)12099824" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1986" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Marriage customs and rites.", - "Wedding toasts." - ], - "titleDisplay": [ - "Wedding toasts and traditions / [Mark Ishee]." - ], - "uri": "b11124847", - "placeOfPublication": [ - "[Brentwood, TN]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ], - "idIsbn_clean": [ - "0939298457" - ] - }, - "sort": [ - 800.04956, - "b11124847" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11124847", - "_nested": { - "field": "items", - "offset": 0 - }, - "_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:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433068100787" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. GT2665 .I78 1986", - "urn:barcode:33433068100787" - ], - "identifierV2": [ - { - "value": "Pub. Cat. GT2665 .I78 1986", - "type": "bf:ShelfMark" - }, - { - "value": "33433068100787", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. GT2665 .I78 1986" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. GT2665 .I78 1986" - ], - "shelfMark_sort": "aPub. Cat. GT2665 .I78 001986", - "status": [ - { - "id": "status:o", - "label": "Use in library" - } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i14944886" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18437590", - "_score": 800.04956, - "_source": { - "extent": [ - "xii, 156 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ijesa (African people)", - "Ijesa (African people) -- Biography", - "Ilesa (Nigeria)", - "Ilesa (Nigeria) -- Description and travel" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Keynotes Publishers" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2008 - ], - "title": [ - "A toast of Ijesa people" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc D 10-1128" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2008" - ], - "creatorLiteral": [ - "Fatubarin, Ayo." - ], - "idLccn": [ - "2009382032" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Patriotic reflections on Ijesaland ; no. 2" - ], - "dateStartYear": [ - 2008 - ], - "idOclc": [ - "318127683" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 10-1128" - }, - { - "type": "nypl:Bnumber", - "value": "18437590" - }, - { - "type": "bf:Isbn", - "value": "978375842X" - }, - { - "type": "bf:Isbn", - "value": "9789783758421" - }, - { - "type": "nypl:Oclc", - "value": "318127683" - }, - { - "type": "bf:Lccn", - "value": "2009382032" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)318127683" - } - ], - "uniformTitle": [ - "Patriotic reflections on Ijesaland ; no. 2." - ], - "updatedAt": 1711108404308, - "publicationStatement": [ - "Ilesa : Keynotes Publishers, c2008." - ], - "idIsbn": [ - "978375842X", - "9789783758421" - ], - "identifier": [ - "urn:shelfmark:Sc D 10-1128", - "urn:bnum:18437590", - "urn:isbn:978375842X", - "urn:isbn:9789783758421", - "urn:oclc:318127683", - "urn:lccn:2009382032", - "urn:identifier:(OCoLC)318127683" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ijesa (African people) -- Biography.", - "Ilesa (Nigeria) -- Description and travel." - ], - "titleDisplay": [ - "A toast of Ijesa people / Ayo Fatubarin." - ], - "uri": "b18437590", - "lccClassification": [ - "DT515.45.I348 F384 2008" - ], - "placeOfPublication": [ - "Ilesa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "978375842X", - "9789783758421" - ] - }, - "sort": [ - 800.04956, - "b18437590" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18437590", - "_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": [ - "33433089279883" - ], - "identifier": [ - "urn:shelfmark:Sc D 10-1128", - "urn:barcode:33433089279883" - ], - "identifierV2": [ - { - "value": "Sc D 10-1128", - "type": "bf:ShelfMark" - }, - { - "value": "33433089279883", - "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 D 10-1128" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 10-1128" - ], - "shelfMark_sort": "aSc D 10-001128", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i25227645" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12082817", - "_score": 755.6522, - "_source": { - "extent": [ - "viii, 120 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ireland", - "Ireland -- Social life and customs", - "Folklore" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mercier" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1993 - ], - "title": [ - "Irish blessings, toasts & traditions" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFC 95-3351" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1993" - ], - "idLccn": [ - "gb 93022324" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Roberts, Jason S." - ], - "dateStartYear": [ - 1993 - ], - "idOclc": [ - "29225422" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFC 95-3351" - }, - { - "type": "nypl:Bnumber", - "value": "12082817" - }, - { - "type": "bf:Isbn", - "value": "1856350452" - }, - { - "type": "nypl:Oclc", - "value": "29225422" - }, - { - "type": "bf:Lccn", - "value": "gb 93022324" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2070230" - } - ], - "updatedAt": 1711173929962, - "publicationStatement": [ - "Cork : Mercier, c1993." - ], - "idIsbn": [ - "1856350452" - ], - "identifier": [ - "urn:shelfmark:JFC 95-3351", - "urn:bnum:12082817", - "urn:isbn:1856350452", - "urn:oclc:29225422", - "urn:lccn:gb 93022324", - "urn:identifier:(WaOLN)nyp2070230" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1993" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ireland -- Social life and customs.", - "Folklore", - "Ireland" - ], - "titleDisplay": [ - "Irish blessings, toasts & traditions / edited by Jason S. Roberts." - ], - "uri": "b12082817", - "placeOfPublication": [ - "Cork" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ], - "idIsbn_clean": [ - "1856350452" - ] - }, - "sort": [ - 755.6522, - "b12082817" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12082817", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433043591795" - ], - "identifier": [ - "urn:shelfmark:JFC 95-3351", - "urn:barcode:33433043591795" - ], - "identifierV2": [ - { - "value": "JFC 95-3351", - "type": "bf:ShelfMark" - }, - { - "value": "33433043591795", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFC 95-3351" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFC 95-3351" - ], - "shelfMark_sort": "aJFC 95-003351", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13337461" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb5358913", - "_score": 752.98315, - "_source": { - "extent": [ - "80 pages ;" - ], - "nyplSource": [ - "recap-cul" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bloodaxe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2005 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The toast of the Kit-Cat Club" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "France, Linda, 1958-" - ], - "createdString": [ - "2005" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2005 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "5358913" - }, - { - "type": "bf:Isbn", - "value": "1852246774 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "ocm57065346" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5192151" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm57065346" - }, - { - "type": "bf:Identifier", - "value": "(NNC)5358913" - }, - { - "type": "bf:Identifier", - "value": "5358913" - } - ], - "idOclc": [ - "ocm57065346", - "SCSB-5192151" - ], - "holdings": [], - "updatedAt": 1668215227681, - "publicationStatement": [ - "Tarset : Bloodaxe, 2005." - ], - "identifier": [ - "urn:bnum:5358913", - "urn:isbn:1852246774 (pbk.)", - "urn:oclc:ocm57065346", - "urn:oclc:SCSB-5192151", - "urn:undefined:(OCoLC)ocm57065346", - "urn:undefined:(NNC)5358913", - "urn:undefined:5358913" - ], - "idIsbn": [ - "1852246774 (pbk.)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2005" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The toast of the Kit-Cat Club / Linda France." - ], - "uri": "cb5358913", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tarset" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1852246774" - ], - "dimensions": [ - "22 cm" - ] - }, - "sort": [ - 752.98315, - "cb5358913" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb5358913", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci5619937", - "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": [ - "PR6056.R262 T63 2005g" - ], - "identifierV2": [ - { - "value": "PR6056.R262 T63 2005g", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU71435093" - } - ], - "physicalLocation": [ - "PR6056.R262 T63 2005g" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU71435093" - ], - "idBarcode": [ - "CU71435093" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPR6056.R262 T63 2005g" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18012067", - "_score": 752.54047, - "_source": { - "extent": [ - "97 p. : ill. (chiefly col.) ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Coffee House Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2009 - ], - "title": [ - "A toast in the house of friends : poems" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFE 09-1080" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2009" - ], - "creatorLiteral": [ - "Oliver, Akilah." - ], - "idLccn": [ - "2008012531" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2009 - ], - "idOclc": [ - "214934641" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 09-1080" - }, - { - "type": "nypl:Bnumber", - "value": "18012067" - }, - { - "type": "bf:Isbn", - "value": "9781566892223 (alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "1566892228 (alk. paper)" - }, - { - "type": "nypl:Oclc", - "value": "214934641" - }, - { - "type": "bf:Lccn", - "value": "2008012531" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)214934641" - } - ], - "updatedAt": 1711411179492, - "publicationStatement": [ - "Minneapolis, Minn. : Coffee House Press, 2009." - ], - "idIsbn": [ - "9781566892223 (alk. paper)", - "1566892228 (alk. paper)" - ], - "identifier": [ - "urn:shelfmark:JFE 09-1080", - "urn:bnum:18012067", - "urn:isbn:9781566892223 (alk. paper)", - "urn:isbn:1566892228 (alk. paper)", - "urn:oclc:214934641", - "urn:lccn:2008012531", - "urn:identifier:(OCoLC)214934641" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2009" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast in the house of friends : poems / Akilah Oliver." - ], - "uri": "b18012067", - "lccClassification": [ - "PS3565.L4575 T63 2009" - ], - "placeOfPublication": [ - "Minneapolis, Minn." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ], - "idIsbn_clean": [ - "9781566892223", - "1566892228" - ] - }, - "sort": [ - 752.54047, - "b18012067" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18012067", - "_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": [ - "33433089303840" - ], - "identifier": [ - "urn:shelfmark:Sc D 10-1178", - "urn:barcode:33433089303840" - ], - "identifierV2": [ - { - "value": "Sc D 10-1178", - "type": "bf:ShelfMark" - }, - { - "value": "33433089303840", - "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 D 10-1178" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 10-1178" - ], - "shelfMark_sort": "aSc D 10-001178", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i25242885" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b18012067", - "_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" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433083328249" - ], - "identifier": [ - "urn:shelfmark:JFE 09-1080", - "urn:barcode:33433083328249" - ], - "identifierV2": [ - { - "value": "JFE 09-1080", - "type": "bf:ShelfMark" - }, - { - "value": "33433083328249", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFE 09-1080" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFE 09-1080" - ], - "shelfMark_sort": "aJFE 09-001080", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23125020" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19838551", - "_score": 752.54047, - "_source": { - "extent": [ - "112 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Kraftgriots.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"First published 2006\"--T.p. verso.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Short stories, Nigerian (English)", - "Nigerians", - "Nigerians -- Conduct of life", - "Nigerians -- Conduct of life -- Fiction", - "Nigeria", - "Nigeria -- Social conditions", - "Nigeria -- Social conditions -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kraft Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2006 - ], - "title": [ - "A toast in the cemetery : short stories" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc D 13-1045 no. 1" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "2006" - ], - "creatorLiteral": [ - "Gimba, Abubakar." - ], - "idLccn": [ - "2008435857" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Short stories" - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "277051218" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 13-1045 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "19838551" - }, - { - "type": "bf:Isbn", - "value": "9780391738" - }, - { - "type": "bf:Isbn", - "value": "9789780391737" - }, - { - "type": "nypl:Oclc", - "value": "277051218" - }, - { - "type": "bf:Lccn", - "value": "2008435857" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)277051218" - } - ], - "uniformTitle": [ - "Short stories (Ibadan, Nigeria)" - ], - "updatedAt": 1711109565523, - "publicationStatement": [ - "Ibadan, Oyo State, Nigeria : Kraft Books, 2006." - ], - "genreForm": [ - "Nigerian fiction (English)" - ], - "idIsbn": [ - "9780391738", - "9789780391737" - ], - "identifier": [ - "urn:shelfmark:Sc D 13-1045 no. 1", - "urn:bnum:19838551", - "urn:isbn:9780391738", - "urn:isbn:9789780391737", - "urn:oclc:277051218", - "urn:lccn:2008435857", - "urn:identifier:(OCoLC)277051218" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Short stories, Nigerian (English)", - "Nigerians -- Conduct of life -- Fiction.", - "Nigeria -- Social conditions -- Fiction." - ], - "titleDisplay": [ - "A toast in the cemetery : short stories / Abubakar Gimba." - ], - "uri": "b19838551", - "lccClassification": [ - "PR9387.9.G55 T63 2006" - ], - "placeOfPublication": [ - "Ibadan, Oyo State, Nigeria" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ], - "idIsbn_clean": [ - "9780391738", - "9789780391737" - ] - }, - "sort": [ - 752.54047, - "b19838551" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19838551", - "_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:61", - "label": "pamphlet volumes, bound with" - } - ], - "catalogItemType_packed": [ - "catalogItemType:61||pamphlet volumes, bound with" - ], - "enumerationChronology": [ - "no. 1-4" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433073344230" - ], - "identifier": [ - "urn:shelfmark:Sc D 13-1045 no. 1-4", - "urn:barcode:33433073344230" - ], - "identifierV2": [ - { - "value": "Sc D 13-1045 no. 1-4", - "type": "bf:ShelfMark" - }, - { - "value": "33433073344230", - "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 D 13-1045" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 13-1045 no. 1-4" - ], - "shelfMark_sort": "aSc D 13-1045 no. 000001-4", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 4 - } - ], - "uri": "i30498572" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22185434", - "_score": 752.54047, - "_source": { - "extent": [ - "166 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rosenblatt, Roger", - "Rosenblatt, Roger -- Family", - "Grandparent and child", - "Bereavement", - "Parenting", - "Grandparents as parents", - "Daughters", - "Daughters -- Death", - "Grandparents" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ecco" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2010 - ], - "title": [ - "Making toast : a family story" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 10-2308" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2010" - ], - "creatorLiteral": [ - "Rosenblatt, Roger." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2010 - ], - "idOclc": [ - "419859876" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 10-2308" - }, - { - "type": "nypl:Bnumber", - "value": "22185434" - }, - { - "type": "bf:Isbn", - "value": "006182593X (hbk.)" - }, - { - "type": "bf:Isbn", - "value": "9780061825934 (hbk.)" - }, - { - "type": "nypl:Oclc", - "value": "419859876" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)419859876" - } - ], - "updatedAt": 1711340157739, - "publicationStatement": [ - "New York : Ecco, c2010." - ], - "idIsbn": [ - "006182593X (hbk.)", - "9780061825934 (hbk.)" - ], - "identifier": [ - "urn:shelfmark:JFD 10-2308", - "urn:bnum:22185434", - "urn:isbn:006182593X (hbk.)", - "urn:isbn:9780061825934 (hbk.)", - "urn:oclc:419859876", - "urn:identifier:(OCoLC)419859876" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rosenblatt, Roger -- Family.", - "Grandparent and child.", - "Bereavement.", - "Parenting.", - "Grandparents as parents.", - "Daughters -- Death.", - "Grandparents." - ], - "titleDisplay": [ - "Making toast : a family story / Roger Rosenblatt." - ], - "uri": "b22185434", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ], - "idIsbn_clean": [ - "006182593X", - "9780061825934" - ] - }, - "sort": [ - 752.54047, - "b22185434" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22185434", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433087759761" - ], - "identifier": [ - "urn:shelfmark:JFD 10-2308", - "urn:barcode:33433087759761" - ], - "identifierV2": [ - { - "value": "JFD 10-2308", - "type": "bf:ShelfMark" - }, - { - "value": "33433087759761", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 10-2308" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 10-2308" - ], - "shelfMark_sort": "aJFD 10-002308", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37905601" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_score": 750.54047, - "_source": { - "extent": [ - "v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Nation Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1909 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Verse and toast. Series 1-" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Rowe, William H., Jr." - ], - "idLccn": [ - "09014147" - ], - "numElectronicResources": [ - 2 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "12310878" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NBI (Rowe, W. H. Verse and toast)" - }, - { - "type": "nypl:Bnumber", - "value": "13111567" - }, - { - "type": "nypl:Oclc", - "value": "12310878" - }, - { - "type": "bf:Lccn", - "value": "09014147" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3090092" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711009811615, - "publicationStatement": [ - "New York, The Nation Press, 1909-" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast)", - "urn:bnum:13111567", - "urn:oclc:12310878", - "urn:lccn:09014147", - "urn:identifier:(WaOLN)nyp3090092" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Verse and toast. Series 1- By Col. William H. Rowe, Jr." - ], - "uri": "b13111567", - "electronicResources": [ - { - "label": "Full text available via HathiTrust--ser. 1", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644091" - }, - { - "label": "Full text available via HathiTrust--ser. 2", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 750.54047, - "b13111567" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_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" - ], - "enumerationChronology": [ - "ser. 2" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433066644109" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", - "urn:barcode:33433066644109" - ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) ser. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644109", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) ser. 2" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16815166" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_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:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "enumerationChronology": [ - "ser. 1" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433066644091" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "urn:barcode:33433066644091" - ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644091", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16257903" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17133475", - "_score": 750.54047, - "_source": { - "extent": [ - "1 v. (unpaged) : col. ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dogs", - "Dogs -- Fiction", - "Wishes", - "Wishes -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Houghton Mifflin" - ], - "description": [ - "Arthur and Stella Crandall, two dogs, are for the most part content with their lives until a fly comes along and grants Arthur three wishes." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1997 - ], - "title": [ - "Burnt toast on Davenport Street" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1997" - ], - "creatorLiteral": [ - "Egan, Tim." - ], - "idLccn": [ - "96013720" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1997 - ], - "idOclc": [ - "96013720 /AC" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "17133475" - }, - { - "type": "bf:Isbn", - "value": "0395796180" - }, - { - "type": "bf:Isbn", - "value": "0618111212 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "96013720 /AC" - }, - { - "type": "bf:Lccn", - "value": "96013720" - } - ], - "updatedAt": 1711440045954, - "publicationStatement": [ - "Boston : Houghton Mifflin, c1997." - ], - "genreForm": [ - "Humorous fiction.", - "Picture books." - ], - "idIsbn": [ - "0395796180", - "0618111212 (pbk.)" - ], - "identifier": [ - "urn:bnum:17133475", - "urn:isbn:0395796180", - "urn:isbn:0618111212 (pbk.)", - "urn:oclc:96013720 /AC", - "urn:lccn:96013720" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1997" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dogs -- Fiction.", - "Wishes -- Fiction." - ], - "titleDisplay": [ - "Burnt toast on Davenport Street / written and illustrated by Tim Egan." - ], - "uri": "b17133475", - "lccClassification": [ - "PZ7.E2815 Bu 1997" - ], - "placeOfPublication": [ - "Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ], - "idIsbn_clean": [ - "0395796180", - "0618111212" - ] - }, - "sort": [ - 750.54047, - "b17133475" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17133475", - "_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": [ - "33333113836635" - ], - "identifier": [ - "urn:shelfmark:J PIC E", - "urn:barcode:33333113836635" - ], - "identifierV2": [ - { - "value": "J PIC E", - "type": "bf:ShelfMark" - }, - { - "value": "33333113836635", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "J PIC E" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J PIC E" - ], - "shelfMark_sort": "aJ PIC E", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i18069850" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17794539", - "_score": 750.54047, - "_source": { - "extent": [ - "118 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dragons", - "Dragons -- Fiction", - "Moving, Household", - "Moving, Household -- Fiction", - "Arizona", - "Arizona -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Holiday House" - ], - "description": [ - "When eleven-year-old Rick and his mother move from San Diego to Tucson he is not too happy about the change, but when they get a fire-breathing, time-traveling dragon to replace their broken furnace, his new life starts to get more interesting." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1999 - ], - "title": [ - "If that breathes fire, we're toast!" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1999" - ], - "creatorLiteral": [ - "Stewart, Jennifer J." - ], - "idLccn": [ - "98036883" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1999 - ], - "idOclc": [ - "39655664" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "17794539" - }, - { - "type": "bf:Isbn", - "value": "0823414302" - }, - { - "type": "nypl:Oclc", - "value": "39655664" - }, - { - "type": "bf:Lccn", - "value": "98036883" - } - ], - "updatedAt": 1711655019767, - "publicationStatement": [ - "New York : Holiday House, c1999." - ], - "genreForm": [ - "Time travel fiction." - ], - "idIsbn": [ - "0823414302" - ], - "identifier": [ - "urn:bnum:17794539", - "urn:isbn:0823414302", - "urn:oclc:39655664", - "urn:lccn:98036883" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dragons -- Fiction.", - "Moving, Household -- Fiction.", - "Arizona -- Fiction." - ], - "titleDisplay": [ - "If that breathes fire, we're toast! / Jennifer J. Stewart." - ], - "uri": "b17794539", - "lccClassification": [ - "PZ7.S84895 If 1999" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ], - "idIsbn_clean": [ - "0823414302" - ] - }, - "sort": [ - 750.54047, - "b17794539" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17794539", - "_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": [ - "33333120986738" - ], - "identifier": [ - "urn:shelfmark:J FIC S", - "urn:barcode:33333120986738" - ], - "identifierV2": [ - { - "value": "J FIC S", - "type": "bf:ShelfMark" - }, - { - "value": "33333120986738", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "J FIC S" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J FIC S" - ], - "shelfMark_sort": "aJ FIC S", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i18335641" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb11446537", - "_score": 749.8716, - "_source": { - "extent": [ - "viii, 82 pages ;" - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Drama", - "Englisch", - "Bangalore (India)", - "Bangalore (India) -- Drama", - "India", - "India -- Bangalore" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Oxford University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2014 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Boiled beans on toast : a play" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Karnad, Girish Raghunath, 1938-" - ], - "createdString": [ - "2014" - ], - "idLccn": [ - " 2014355883" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2014 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "11446537" - }, - { - "type": "bf:Isbn", - "value": "9780198098607 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "019809860X (pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 2014355883" - }, - { - "type": "nypl:Oclc", - "value": "ocn869791542" - }, - { - "type": "nypl:Oclc", - "value": "869791542" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5805984" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn869791542" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)869791542" - }, - { - "type": "bf:Identifier", - "value": "(NNC)11446537" - }, - { - "type": "bf:Identifier", - "value": "11446537" - } - ], - "idOclc": [ - "ocn869791542", - "869791542", - "SCSB-5805984" - ], - "uniformTitle": [ - "Benda kạḷu ān ṭōsṭ. English" - ], - "holdings": [], - "updatedAt": 1674869027803, - "publicationStatement": [ - "New Delhi : Oxford University Press, 2014." - ], - "identifier": [ - "urn:bnum:11446537", - "urn:isbn:9780198098607 (pbk.)", - "urn:isbn:019809860X (pbk.)", - "urn:lccn: 2014355883", - "urn:oclc:ocn869791542", - "urn:oclc:869791542", - "urn:oclc:SCSB-5805984", - "urn:undefined:(OCoLC)ocn869791542", - "urn:undefined:(OCoLC)869791542", - "urn:undefined:(NNC)11446537", - "urn:undefined:11446537" - ], - "idIsbn": [ - "9780198098607 (pbk.)", - "019809860X (pbk.)" - ], - "genreForm": [ - "Drama." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:undefined", - "label": "volume" - } - ], - "dateString": [ - "2014" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Drama.", - "Englisch.", - "Bangalore (India) -- Drama.", - "India -- Bangalore." - ], - "titleDisplay": [ - "Boiled beans on toast : a play / Girish Karnad." - ], - "uri": "cb11446537", - "lccClassification": [ - "PL4659.K325 B65 2014" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Benda kạḷu ān ṭōsṭ." - ], - "idIsbn_clean": [ - "9780198098607", - "019809860X" - ], - "dimensions": [ - "22 cm" - ] - }, - "sort": [ - 749.8716, - "cb11446537" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb11446537", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci8752018", - "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": [ - "PL4659.K33 B4613 2014g" - ], - "identifierV2": [ - { - "value": "PL4659.K33 B4613 2014g", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU24576484" - } - ], - "physicalLocation": [ - "PL4659.K33 B4613 2014g" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU24576484" - ], - "idBarcode": [ - "CU24576484" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPL4659.K33 B4613 2014g" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990094818300203941", - "_score": 738.2714, - "_source": { - "extent": [ - "64 p. : ill. ;" - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Conduct of life", - "Conduct of life -- Poetry", - "Nigeria", - "Nigeria -- Poetry" - ], - "publisherLiteral": [ - "Hope Publications," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 2002 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast to life & vision / Biodun Odeleye." - ], - "creatorLiteral": [ - "Odeleye, Biodun." - ], - "createdString": [ - "2002" - ], - "dateStartYear": [ - 2002 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990094818300203941" - }, - { - "type": "bf:Isbn", - "value": "9783654845" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)54955577" - } - ], - "holdings": [], - "updatedAt": 1634180568983, - "publicationStatement": [ - "Ibadan, Nigeria : Hope Publications, c2002." - ], - "identifier": [ - "urn:bnum:990094818300203941", - "urn:isbn:9783654845", - "urn:undefined:(OCoLC)54955577" - ], - "idIsbn": [ - "9783654845" - ], - "genreForm": [ - "Poetry" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2002" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Conduct of life -- Poetry.", - "Nigeria -- Poetry." - ], - "titleDisplay": [ - "Toast to life & vision / Biodun Odeleye." - ], - "uri": "hb990094818300203941", - "lccClassification": [ - "PR9387.9.O3115 T63 2002" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ibadan, Nigeria :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Toast to life and vision" - ], - "tableOfContents": [ - "Moon among stars -- Vampires on rampage -- The dangling visionary saw -- Much to a name -- Dear mother -- La Rambla -- Personifying death -- Success turns albatross in the hall of nobility." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 738.2714, - "hb990094818300203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990094818300203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232089710580003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR9387.9.O314 T63 2002" - ], - "identifierV2": [ - { - "value": "PR9387.9.O314 T63 2002", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32044089630495" - } - ], - "physicalLocation": [ - "PR9387.9.O314 T63 2002" - ], - "identifier": [ - "urn:barcode:32044089630495" - ], - "idBarcode": [ - "32044089630495" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPR9387.9.O314 T63 002002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18036289", - "_score": 713.9405, - "_source": { - "extent": [ - "1 score (14 p.) + 2 parts : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Biographical notes, p. [4] of cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 8:30.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At end: September 29, 2003.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Trios (Piano, flutes (2))", - "Trios (Piano, flutes (2)) -- Scores and parts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "T. Presser" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2005 - ], - "title": [ - "French toast : for two flutes and piano" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JNG 09-190" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2005" - ], - "creatorLiteral": [ - "Schocker, Gary, 1959-" - ], - "idLccn": [ - "2005562075", - "680160018024" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2005 - ], - "idOclc": [ - "62276021" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 09-190" - }, - { - "type": "nypl:Bnumber", - "value": "18036289" - }, - { - "type": "nypl:Oclc", - "value": "62276021" - }, - { - "type": "bf:Lccn", - "value": "2005562075" - }, - { - "type": "bf:Lccn", - "value": "680160018024" - }, - { - "type": "bf:Identifier", - "value": "114-41247 T. Presser" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)62276021" - } - ], - "updatedAt": 1711020217035, - "publicationStatement": [ - "King of Prussia, PA : T. Presser, c2005." - ], - "identifier": [ - "urn:shelfmark:JNG 09-190", - "urn:bnum:18036289", - "urn:oclc:62276021", - "urn:lccn:2005562075", - "urn:lccn:680160018024", - "urn:identifier:114-41247 T. Presser", - "urn:identifier:(OCoLC)62276021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2005" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Trios (Piano, flutes (2)) -- Scores and parts." - ], - "titleDisplay": [ - "French toast : for two flutes and piano / Gary Schocker." - ], - "uri": "b18036289", - "lccClassification": [ - "M317.S35 F74 2005" - ], - "placeOfPublication": [ - "King of Prussia, PA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Deux moutons -- Les bouffons -- L'amour perdu -- Le printemps -- Le ballet russe." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - 713.9405, - "b18036289" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18036289", - "_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:57", - "label": "printed music limited circ MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:57||printed music limited circ MaRLI" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "idBarcode": [ - "33433083720965" - ], - "identifier": [ - "urn:shelfmark:JNG 09-190", - "urn:barcode:33433083720965" - ], - "identifierV2": [ - { - "value": "JNG 09-190", - "type": "bf:ShelfMark" - }, - { - "value": "33433083720965", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "physicalLocation": [ - "JNG 09-190" - ], - "recapCustomerCode": [ - "NP" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JNG 09-190" - ], - "shelfMark_sort": "aJNG 09-000190", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23188106" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990117890200203941", - "_score": 713.2714, - "_source": { - "extent": [ - "62 p. ;" - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Chaplin, Charlie, 1889-1977", - "Chaplin, Charlie, 1889-1977 -- Drama", - "Holmes, Sherlock (Fictitious character)", - "Holmes, Sherlock (Fictitious character) -- Drama", - "Holmes, Sherlock", - "Holmes, Sherlock -- Drama", - "London (England)", - "London (England) -- Drama", - "Watson, John H. (Fictitious character)", - "Watson, John H. (Fictitious character) -- Drama" - ], - "publisherLiteral": [ - "Samuel French," - ], - "description": [ - "\"The Edgar Prize-winning author Kaminsky tells the tale of one of literature's most famous detectives: Sherlock Holmes. In a witty, imaginative story filled with twists and unexpected surprises, Detective Holmes unravels a murder only to find himself the unwilling target of the killer-at-large. Along with the aid of his loyal and inquisitive companion, Dr. Watson, Sherlock Holmes uses his masterful power of deduction to make a nebulous situation seem \"simply elementary.\" The Final Toast is an exciting new take on the classic characters of fiction we know and love, and its ending will please even the most savvy mystery connoisseurs\"--Publisher's website." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 2008 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The final toast / by Stuart M. Kaminsky." - ], - "creatorLiteral": [ - "Kaminsky, Stuart M." - ], - "createdString": [ - "2008" - ], - "dateStartYear": [ - 2008 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990117890200203941" - }, - { - "type": "bf:Isbn", - "value": "9780573663772" - }, - { - "type": "bf:Isbn", - "value": "0573663777" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)259742094" - } - ], - "holdings": [], - "updatedAt": 1636498198661, - "publicationStatement": [ - "New York, NY : Samuel French, c2008." - ], - "identifier": [ - "urn:bnum:990117890200203941", - "urn:isbn:9780573663772", - "urn:isbn:0573663777", - "urn:undefined:(OCoLC)259742094" - ], - "idIsbn": [ - "9780573663772", - "0573663777" - ], - "genreForm": [ - "Drama" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Chaplin, Charlie, 1889-1977 -- Drama.", - "Holmes, Sherlock (Fictitious character) -- Drama.", - "Holmes, Sherlock -- Drama.", - "London (England) -- Drama.", - "Watson, John H. (Fictitious character) -- Drama." - ], - "titleDisplay": [ - "The final toast / by Stuart M. Kaminsky." - ], - "uri": "hb990117890200203941", - "lccClassification": [ - "PS3561.A43 F497 2008" - ], - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "New York, NY :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 713.2714, - "hb990117890200203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9911624953506421", - "_score": 713.2714, - "_source": { - "extent": [ - "1 score (9 pages) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally for soprano and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 3:30.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Bertolino, James, 1942-", - "Bertolino, James, 1942- -- Musical settings", - "Songs (High voice) with instrumental ensemble", - "Songs (High voice) with instrumental ensemble -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "AdLar Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1994 - ], - "title": [ - "A wedding toast : for soprano & string quartet" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1994" - ], - "creatorLiteral": [ - "Adaskin, Murray, 1906-2002" - ], - "idLccn": [ - "M706002064" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bertolino, James, 1942-" - ], - "dateStartYear": [ - 1994 - ], - "idOclc": [ - "ocn666197888", - "666197888", - "SCSB-2121535" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9911624953506421" - }, - { - "type": "nypl:Oclc", - "value": "ocn666197888" - }, - { - "type": "nypl:Oclc", - "value": "666197888" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-2121535" - }, - { - "type": "bf:Lccn", - "value": "M706002064" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)NJPG97-C408" - }, - { - "type": "bf:Identifier", - "value": "(NjP)1162495-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn666197888" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)666197888" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)37469199" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager1162495" - } - ], - "uniformTitle": [ - "Wedding toast; arranged" - ], - "updatedAt": 1709127418097, - "publicationStatement": [ - "Victoria, B.C. : AdLar Publications, ©1994." - ], - "genreForm": [ - "Scores.", - "Musical settings.", - "Partitions (Musique)" - ], - "identifier": [ - "urn:bnum:9911624953506421", - "urn:oclc:ocn666197888", - "urn:oclc:666197888", - "urn:oclc:SCSB-2121535", - "urn:lccn:M706002064", - "urn:identifier:(CStRLIN)NJPG97-C408", - "urn:identifier:(NjP)1162495-princetondb", - "urn:identifier:(OCoLC)ocn666197888", - "urn:identifier:(OCoLC)666197888", - "urn:identifier:(OCoLC)37469199", - "urn:identifier:(NjP)Voyager1162495" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bertolino, James, 1942- -- Musical settings.", - "Bertolino, James, 1942-", - "Songs (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "A wedding toast : for soprano & string quartet / [music by] Murray Adaskin ; poem by James Bertolino." - ], - "uri": "pb9911624953506421", - "lccClassification": [ - "M1613.3.A32 W4 1994" - ], - "placeOfPublication": [ - "Victoria, B.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Wedding toast;" - ], - "dimensions": [ - "28 cm" - ] - }, - "sort": [ - 713.2714, - "pb9911624953506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9911624953506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Notated music" - ], - "idBarcode": [ - "32101069496063" - ], - "identifier": [ - "urn:shelfmark:M1613.3.A32 W4 1994q Oversize", - "urn:barcode:32101069496063" - ], - "identifierV2": [ - { - "value": "M1613.3.A32 W4 1994q Oversize", - "type": "bf:ShelfMark" - }, - { - "value": "32101069496063", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "M1613.3.A32 W4 1994q Oversize" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "M1613.3.A32 W4 1994q Oversize" - ], - "shelfMark_sort": "aM1613.3.A32 W4 1994q Oversize", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23608241160006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9921391513506421", - "_score": 713.2714, - "_source": { - "extent": [ - "ix, 226 pages : illustrations, portraits ;" - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Drinking in literature", - "Drinking", - "Drinking -- Literary collections", - "Consommation d'alcool dans la littérature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "André Deutsch" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1997 - ], - "title": [ - "Creative spirits : a toast to literary drinkers" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1997" - ], - "creatorLiteral": [ - "Booth, John." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1997 - ], - "idOclc": [ - "ocm41333062", - "41333062", - "SCSB-506538" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9921391513506421" - }, - { - "type": "bf:Isbn", - "value": "0233991840" - }, - { - "type": "bf:Isbn", - "value": "9780233991849" - }, - { - "type": "nypl:Oclc", - "value": "ocm41333062" - }, - { - "type": "nypl:Oclc", - "value": "41333062" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-506538" - }, - { - "type": "bf:Identifier", - "value": "(NjP)2139151-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm41333062" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)41333062" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager2139151" - } - ], - "updatedAt": 1706159115823, - "publicationStatement": [ - "London : André Deutsch, 1997." - ], - "genreForm": [ - "Literary collections." - ], - "idIsbn": [ - "0233991840", - "9780233991849" - ], - "identifier": [ - "urn:bnum:9921391513506421", - "urn:isbn:0233991840", - "urn:isbn:9780233991849", - "urn:oclc:ocm41333062", - "urn:oclc:41333062", - "urn:oclc:SCSB-506538", - "urn:identifier:(NjP)2139151-princetondb", - "urn:identifier:(OCoLC)ocm41333062", - "urn:identifier:(OCoLC)41333062", - "urn:identifier:(NjP)Voyager2139151" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1997" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Drinking in literature.", - "Drinking -- Literary collections.", - "Consommation d'alcool dans la littérature." - ], - "titleDisplay": [ - "Creative spirits : a toast to literary drinkers / John Booth." - ], - "uri": "pb9921391513506421", - "lccClassification": [ - "PN56.D8 B6 1997x" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "0233991840", - "9780233991849" - ] - }, - "sort": [ - 713.2714, - "pb9921391513506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9921391513506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101085641676" - ], - "identifier": [ - "urn:shelfmark:PN56.D8 B6 1997", - "urn:barcode:32101085641676" - ], - "identifierV2": [ - { - "value": "PN56.D8 B6 1997", - "type": "bf:ShelfMark" - }, - { - "value": "32101085641676", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "PN56.D8 B6 1997" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "PN56.D8 B6 1997" - ], - "shelfMark_sort": "aPN56.D8 B6 001997", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23519521580006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15767926", - "_score": 712.98706, - "_source": { - "extent": [ - "173 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Short stories, Nigerian (English)", - "Nigeria", - "Nigeria -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Delta" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2002 - ], - "title": [ - "A toast in the cemetery : a collection of short stories" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc C 03-268" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2002" - ], - "creatorLiteral": [ - "Gimba, Abubakar." - ], - "idLccn": [ - "2003547271" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2002 - ], - "idOclc": [ - "52437306" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc C 03-268" - }, - { - "type": "nypl:Bnumber", - "value": "15767926" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "9782335691 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "52437306" - }, - { - "type": "bf:Lccn", - "value": "2003547271" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)52437306" - } - ], - "updatedAt": 1711301570716, - "publicationStatement": [ - "Enugu, Nigeria : Delta, 2002." - ], - "genreForm": [ - "Nigerian fiction (English)" - ], - "identifier": [ - "urn:shelfmark:Sc C 03-268", - "urn:bnum:15767926", - "urn:isbn:9782335691 (pbk.)", - "urn:oclc:52437306", - "urn:lccn:2003547271", - "urn:identifier:(OCoLC)52437306" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2002" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Short stories, Nigerian (English)", - "Nigeria -- Fiction." - ], - "titleDisplay": [ - "A toast in the cemetery : a collection of short stories / by Abubakar Gimba." - ], - "uri": "b15767926", - "lccClassification": [ - "PR9387.9.G55 T63 2002" - ], - "placeOfPublication": [ - "Enugu, Nigeria" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "The angel's hold -- The inquisitive child -- A toast in the cemetery -- The herdsman's gift." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 712.98706, - "b15767926" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15767926", - "_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": [ - "33433018551758" - ], - "identifier": [ - "urn:shelfmark:Sc C 03-268", - "urn:barcode:33433018551758" - ], - "identifierV2": [ - { - "value": "Sc C 03-268", - "type": "bf:ShelfMark" - }, - { - "value": "33433018551758", - "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 C 03-268" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc C 03-268" - ], - "shelfMark_sort": "aSc C 03-000268", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13751213" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22202337", - "_score": 712.98706, - "_source": { - "extent": [ - "xiii, 218 p. : col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cooking" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fairfax Books" - ], - "description": [ - "A lot of good things start out with a piece of toast. Breakfast, for one. But toast is also the entree into the kitchen for many of us. It's the dish we first learn not to burn, or what we make when there is nobody around to cook for us. It's a reliable culinary introduction. But what comes next? After Toast takes aspiring cooks into the kitchen fray. Kate Gibbs, whose grandmother Margaret Fulton had her making pizza from scratch before she could see over the kitchen bench, shows young adults what to eat and how to cook. Distilling culinary advice from her own upbringing, Kate offers must-know tricks for the new-to-cooking, modernises classics and inspires an interest in healthy cooking. Basically, this is a guide to real, really awesome, food. Recipes for crunchy, fried Mozzarella-stuffed croquettes, French roast chicken, mini Cheeseburgers and proper salads meet ideas for sprawling weekend feasts. This book raises the bar for the packed lunch, serves up new ideas on snacks, shows teens and twenty-somethings what to cook for mates or Mum, and puts an end to endless fridge searches by answering the perpetual question, 'What can I eat?'", - "Cooking for Beginners." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2012 - ], - "title": [ - "After toast : recipes for aspiring cooks" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFE 15-2837" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2012" - ], - "creatorLiteral": [ - "Gibbs, Kate." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2012 - ], - "idOclc": [ - "809151984" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 15-2837" - }, - { - "type": "nypl:Bnumber", - "value": "22202337" - }, - { - "type": "bf:Isbn", - "value": "9781742379418" - }, - { - "type": "bf:Isbn", - "value": "1742379419" - }, - { - "type": "nypl:Oclc", - "value": "809151984" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)809151984" - } - ], - "updatedAt": 1711614011021, - "publicationStatement": [ - "Crows Nest, N.S.W. : Fairfax Books, 2012." - ], - "genreForm": [ - "Cookbooks." - ], - "idIsbn": [ - "9781742379418", - "1742379419" - ], - "identifier": [ - "urn:shelfmark:JFE 15-2837", - "urn:bnum:22202337", - "urn:isbn:9781742379418", - "urn:isbn:1742379419", - "urn:oclc:809151984", - "urn:identifier:(OCoLC)809151984" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2012" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cooking." - ], - "titleDisplay": [ - "After toast : recipes for aspiring cooks / Kate Gibbs." - ], - "uri": "b22202337", - "lccClassification": [ - "TX714 .G53155 2012" - ], - "placeOfPublication": [ - "Crows Nest, N.S.W." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "To start -- Breakfast -- Snacks -- Lunch -- Dinner -- Dessert -- Parties & friends." - ], - "dimensions": [ - "24 cm" - ], - "idIsbn_clean": [ - "9781742379418", - "1742379419" - ] - }, - "sort": [ - 712.98706, - "b22202337" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22202337", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433114669116" - ], - "identifier": [ - "urn:shelfmark:JFE 15-2837", - "urn:barcode:33433114669116" - ], - "identifierV2": [ - { - "value": "JFE 15-2837", - "type": "bf:ShelfMark" - }, - { - "value": "33433114669116", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFE 15-2837" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFE 15-2837" - ], - "shelfMark_sort": "aJFE 15-002837", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37923125" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22226823", - "_score": 712.98706, - "_source": { - "extent": [ - "192 pages ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Calhoun, Ada", - "Marriage", - "Marriage -- United States", - "Spouses", - "Spouses -- United States", - "Love", - "Love -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W.W. Norton & Company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2017 - ], - "title": [ - "Wedding toasts I'll never give" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 17-4539" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2017" - ], - "creatorLiteral": [ - "Calhoun, Ada" - ], - "idLccn": [ - "2017005487" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2017 - ], - "idOclc": [ - "2017005487" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 17-4539" - }, - { - "type": "nypl:Bnumber", - "value": "22226823" - }, - { - "type": "bf:Isbn", - "value": "9780393254792" - }, - { - "type": "bf:Isbn", - "value": "0393254798" - }, - { - "type": "nypl:Oclc", - "value": "2017005487" - }, - { - "type": "bf:Lccn", - "value": "2017005487" - } - ], - "updatedAt": 1711145482806, - "publicationStatement": [ - "New York : W.W. Norton & Company, [2017]" - ], - "idIsbn": [ - "9780393254792", - "0393254798" - ], - "identifier": [ - "urn:shelfmark:JFD 17-4539", - "urn:bnum:22226823", - "urn:isbn:9780393254792", - "urn:isbn:0393254798", - "urn:oclc:2017005487", - "urn:lccn:2017005487" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2017" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Calhoun, Ada.", - "Marriage -- United States.", - "Spouses -- United States.", - "Love -- United States." - ], - "titleDisplay": [ - "Wedding toasts I'll never give / Ada Calhoun." - ], - "uri": "b22226823", - "lccClassification": [ - "HQ734 .C185 2017" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Wedding toasts I will never give" - ], - "tableOfContents": [ - "Introduction: \"Do you know why you're here?\" -- Toast 1: paying for each other's mistakes -- Toast 2: the boring parts -- Toast 3: containing multitudes -- Toast 4: the truth about soul mates -- Toast 5: fighting in rental cars -- Toast 6: other people, other cities -- Toast 7: \"love is strong as death\" -- Epilogue: one toast I would actually give." - ], - "dimensions": [ - "22 cm" - ], - "idIsbn_clean": [ - "9780393254792", - "0393254798" - ] - }, - "sort": [ - 712.98706, - "b22226823" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22226823", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433123836292" - ], - "identifier": [ - "urn:shelfmark:JFD 17-4539", - "urn:barcode:33433123836292" - ], - "identifierV2": [ - { - "value": "JFD 17-4539", - "type": "bf:ShelfMark" - }, - { - "value": "33433123836292", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 17-4539" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 17-4539" - ], - "shelfMark_sort": "aJFD 17-004539", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37948211" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22462271", - "_score": 712.98706, - "_source": { - "extent": [ - "xv, 360 pages : color illustrations ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Drinking customs", - "Language and languages" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Red Lightning Books" - ], - "description": [ - "\"No matter what country you clink glasses in, everyone has a word for cheers. In Cheers! Around the World in 80 Toasts, Brandon Cook takes readers on a whirlwind trip through languages from Estonian to Elvish and everywhere in between. Need to know how to toast in Tagalog? Say bottoms up in Basque? Down the hatch in Hungarian? Cook teaches readers how to toast in 80 languages and includes drinking traditions, historical facts, and strange linguistic phenomena for each.\"--" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2021 - ], - "title": [ - "Cheers! : around the world in 80 toasts" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JX 21-2808" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2021" - ], - "creatorLiteral": [ - "Cook, Brandon (Language enthusiast)" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2021 - ], - "idOclc": [ - "1246641157" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JX 21-2808" - }, - { - "type": "nypl:Bnumber", - "value": "22462271" - }, - { - "type": "bf:Isbn", - "value": "9781684351459" - }, - { - "type": "bf:Isbn", - "value": "1684351456" - }, - { - "type": "nypl:Oclc", - "value": "1246641157" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1246641157" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1155164006" - } - ], - "updatedAt": 1711491659496, - "publicationStatement": [ - "Bloomington, Indiana, USA : Red Lightning Books, [2021]" - ], - "idIsbn": [ - "9781684351459", - "1684351456" - ], - "identifier": [ - "urn:shelfmark:JX 21-2808", - "urn:bnum:22462271", - "urn:isbn:9781684351459", - "urn:isbn:1684351456", - "urn:oclc:1246641157", - "urn:identifier:(OCoLC)1246641157", - "urn:identifier:(OCoLC)1155164006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2021" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts.", - "Drinking customs.", - "Language and languages." - ], - "titleDisplay": [ - "Cheers! : around the world in 80 toasts / Brandon Cook." - ], - "uri": "b22462271", - "lccClassification": [ - "GT2930 .C66 2021" - ], - "placeOfPublication": [ - "Bloomington, Indiana, USA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm" - ], - "idIsbn_clean": [ - "9781684351459", - "1684351456" - ] - }, - "sort": [ - 712.98706, - "b22462271" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22462271", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433132691860" - ], - "identifier": [ - "urn:shelfmark:JX 21-2808", - "urn:barcode:33433132691860" - ], - "identifierV2": [ - { - "value": "JX 21-2808", - "type": "bf:ShelfMark" - }, - { - "value": "33433132691860", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JX 21-2808" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JX 21-2808" - ], - "shelfMark_sort": "aJX 21-002808", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i38598674" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22904468", - "_score": 712.98706, - "_source": { - "extent": [ - "189 pages : color illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toast (Bread)", - "Cooking (Bread)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bloomsbury Publishing" - ], - "description": [ - "\"Prue Leith toasts sourdoughs, focaccias, baguettes, flatbreads and more, then pairs them with everything from seasonal vegetables to meat and fish. The collection spans healthy, hearty, salty, and sometimes sweet. Ideal for a busy home cook who loves a full and balanced plate, the recipes are incredibly versatile and perfect for any time of the day: tomatoes, shallots, and oregano on black olive toast; grilled chicken tikka with yogurt on naan; smoked salmon, wasabi, and avocado on multigrain bread; and bananas and ice cream with brandy syrup on panettone\"--" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2022 - ], - "title": [ - "Bliss on toast : 75 simple recipes" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 22-2706" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2022" - ], - "creatorLiteral": [ - "Leith, Prue" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2022 - ], - "idOclc": [ - "1348882624" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 22-2706" - }, - { - "type": "nypl:Bnumber", - "value": "22904468" - }, - { - "type": "bf:Isbn", - "value": "9781639730711" - }, - { - "type": "bf:Isbn", - "value": "1639730710" - }, - { - "type": "bf:Isbn", - "value": "9781526654236" - }, - { - "type": "bf:Isbn", - "value": "1526654237" - }, - { - "type": "nypl:Oclc", - "value": "1348882624" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1348882624" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1295805556 (OCoLC)1296085459 (OCoLC)1296118057" - } - ], - "updatedAt": 1711159189887, - "publicationStatement": [ - "New York : Bloomsbury Publishing, 2022.", - "©2022" - ], - "genreForm": [ - "Cookbooks.", - "Recipes." - ], - "idIsbn": [ - "9781639730711", - "1639730710", - "9781526654236", - "1526654237" - ], - "identifier": [ - "urn:shelfmark:JFD 22-2706", - "urn:bnum:22904468", - "urn:isbn:9781639730711", - "urn:isbn:1639730710", - "urn:isbn:9781526654236", - "urn:isbn:1526654237", - "urn:oclc:1348882624", - "urn:identifier:(OCoLC)1348882624", - "urn:identifier:(OCoLC)1295805556 (OCoLC)1296085459 (OCoLC)1296118057" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2022" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toast (Bread)", - "Cooking (Bread)" - ], - "titleDisplay": [ - "Bliss on toast : 75 simple recipes / Prue Leith." - ], - "uri": "b22904468", - "lccClassification": [ - "TX769 .L39 2022" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Introduction -- Cheese & eggs -- Vegetarian & vegan -- Fish -- Meat & poultry -- Desserts -- Keen cooks." - ], - "dimensions": [ - "22 cm" - ], - "idIsbn_clean": [ - "9781639730711", - "1639730710", - "9781526654236", - "1526654237" - ] - }, - "sort": [ - 712.98706, - "b22904468" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22904468", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433135837288" - ], - "identifier": [ - "urn:shelfmark:JFD 22-2706", - "urn:barcode:33433135837288" - ], - "identifierV2": [ - { - "value": "JFD 22-2706", - "type": "bf:ShelfMark" - }, - { - "value": "33433135837288", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 22-2706" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 22-2706" - ], - "shelfMark_sort": "aJFD 22-002706", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i39826201" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990083677330203941", - "_score": 710.3182, - "_source": { - "extent": [ - "vii, 278 p. : ill. ;" - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "publisherLiteral": [ - "Adams Media Corp." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The everything toasts book / by Dale Irvin." - ], - "creatorLiteral": [ - "Irvin, Dale." - ], - "createdString": [ - "1999" - ], - "idLccn": [ - "^^^99039946^" - ], - "dateStartYear": [ - 1999 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990083677330203941" - }, - { - "type": "bf:Isbn", - "value": "1580621899" - }, - { - "type": "bf:Lccn", - "value": "^^^99039946^" - }, - { - "type": "nypl:Oclc", - "value": "237786675" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)237786675" - } - ], - "idOclc": [ - "237786675" - ], - "holdings": [], - "updatedAt": 1656896037304, - "publicationStatement": [ - "Holbrook, MA : Adams Media Corp., 1999." - ], - "identifier": [ - "urn:bnum:990083677330203941", - "urn:isbn:1580621899", - "urn:lccn:^^^99039946^", - "urn:oclc:237786675", - "urn:undefined:(OCoLC)237786675" - ], - "idIsbn": [ - "1580621899" - ], - "genreForm": [ - "Toasts (Speeches)", - "Toasts." - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "The everything toasts book / by Dale Irvin." - ], - "uri": "hb990083677330203941", - "lccClassification": [ - "PN6341 .I78 1999" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Holbrook, MA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1580621899" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 710.3182, - "hb990083677330203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990083677330203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232060760500003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PN6341 .I78 1999" - ], - "identifierV2": [ - { - "value": "PN6341 .I78 1999", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HX1XW8" - } - ], - "physicalLocation": [ - "PN6341 .I78 1999" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:HX1XW8" - ], - "idBarcode": [ - "HX1XW8" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aPN6341 .I78 001999" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990088521070203941", - "_score": 710.3182, - "_source": { - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Schiller, Jeannette, 1911-", - "Teachers", - "Teachers -- Saskatchewan", - "Teachers -- Saskatchewan -- Biography", - "Teachers -- British Columbia", - "Teachers -- British Columbia -- Biography" - ], - "publisherLiteral": [ - "Heirloom Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 2001 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A toast to bygone days / Jeannette Schiller." - ], - "creatorLiteral": [ - "Schiller, Jeannette, 1911-" - ], - "createdString": [ - "2001" - ], - "dateStartYear": [ - 2001 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990088521070203941" - }, - { - "type": "bf:Isbn", - "value": "0968979203 :" - }, - { - "type": "nypl:Oclc", - "value": "48230114" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)48230114" - } - ], - "idOclc": [ - "48230114" - ], - "holdings": [], - "updatedAt": 1656308261785, - "publicationStatement": [ - "Sidney, B.C. : Heirloom Books, 2001." - ], - "identifier": [ - "urn:bnum:990088521070203941", - "urn:isbn:0968979203 :", - "urn:oclc:48230114", - "urn:undefined:(OCoLC)48230114" - ], - "idIsbn": [ - "0968979203 " - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2001" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Schiller, Jeannette, 1911-", - "Teachers -- Saskatchewan -- Biography.", - "Teachers -- British Columbia -- Biography." - ], - "titleDisplay": [ - "A toast to bygone days / Jeannette Schiller." - ], - "uri": "hb990088521070203941", - "lccClassification": [ - "LA2325.S34 A3 2001" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sidney, B.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0968979203" - ] - }, - "sort": [ - 710.3182, - "hb990088521070203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990088521070203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232074350580003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "LA2325.S34 A3 2001" - ], - "identifierV2": [ - { - "value": "LA2325.S34 A3 2001", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HXL53Z" - } - ], - "physicalLocation": [ - "LA2325.S34 A3 2001" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:HXL53Z" - ], - "idBarcode": [ - "HXL53Z" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aLA2325.S34 A3 002001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb1162495", - "_score": 710.3182, - "_source": { - "extent": [ - "1 score (9 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally for soprano and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 3:30.", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Bertolino, James, 1942-", - "Bertolino, James, 1942- -- Musical settings", - "Songs (High voice) with instrumental ensemble", - "Songs (High voice) with instrumental ensemble -- Scores" - ], - "publisherLiteral": [ - "AdLar Publications," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1994 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A wedding toast : for soprano and string quartet /" - ], - "creatorLiteral": [ - "Adaskin, Murray, 1906-2002." - ], - "createdString": [ - "1994" - ], - "dateStartYear": [ - 1994 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1162495" - } - ], - "uniformTitle": [ - "Wedding toast; arr." - ], - "updatedAt": 1525305392866, - "publicationStatement": [ - "Victoria, British Columbia : AdLar Publications, c1994." - ], - "identifier": [ - "urn:bnum:1162495" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bertolino, James, 1942- -- Musical settings.", - "Songs (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "A wedding toast : for soprano and string quartet / Murray Adaskin ; poem by James Bertolino." - ], - "uri": "pb1162495", - "lccClassification": [ - "M1613.3.A32 W4 1994" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Victoria, British Columbia :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Wedding toast;" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 710.3182, - "pb1162495" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb1162495", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:32101069496063" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "pi1420607", - "shelfMark": [ - "M1613.3.A32 W4 1994q" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "M1613.3.A32 W4 1994q" - }, - { - "type": "bf:Barcode", - "value": "32101069496063" - } - ], - "idBarcode": [ - "32101069496063" - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb2139151", - "_score": 710.3182, - "_source": { - "extent": [ - "ix, 226 p. : ill., ports. ;" - ], - "subjectLiteral_exploded": [ - "Drinking", - "Drinking -- Literary collections", - "Drinking in literature", - "Drinking in literature -- Collections" - ], - "publisherLiteral": [ - "André Deutsch," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1997 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Creative spirits : a toast to literary drinkers /" - ], - "creatorLiteral": [ - "Booth, John." - ], - "createdString": [ - "1997" - ], - "dateStartYear": [ - 1997 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "2139151" - } - ], - "updatedAt": 1523585448075, - "publicationStatement": [ - "London : André Deutsch, 1997." - ], - "identifier": [ - "urn:bnum:2139151" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1997" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Drinking -- Literary collections.", - "Drinking in literature -- Collections." - ], - "titleDisplay": [ - "Creative spirits : a toast to literary drinkers / John Booth." - ], - "uri": "pb2139151", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 710.3182, - "pb2139151" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb2139151", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:32101085641676" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available " - ], - "uri": "pi2301446", - "shelfMark": [ - "PN56.D8B6 1997" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PN56.D8B6 1997" - }, - { - "type": "bf:Barcode", - "value": "32101085641676" - } - ], - "idBarcode": [ - "32101085641676" - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available " - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13701585", - "_score": 705.20953, - "_source": { - "extent": [ - "200 p. : ill., map ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 185-193) and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wilson, Sunnie, 1908-1999", - "Louis, Joe, 1914-1981", - "Hotelkeepers", - "Hotelkeepers -- Michigan", - "Hotelkeepers -- Michigan -- Detroit", - "Hotelkeepers -- Michigan -- Detroit -- Biography", - "African American businesspeople", - "African American businesspeople -- Michigan", - "African American businesspeople -- Michigan -- Detroit", - "Detroit (Mich.)", - "Detroit (Mich.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wayne State University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1998 - ], - "title": [ - "Toast of the town : the life and times of Sunnie Wilson" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc E 98-916" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1998" - ], - "creatorLiteral": [ - "Wilson, Sunnie, 1908-1999." - ], - "idLccn": [ - "97025475" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Great Lakes books" - ], - "contributorLiteral": [ - "Cohassey, John, 1961-" - ], - "dateStartYear": [ - 1998 - ], - "idOclc": [ - "37260938" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc E 98-916" - }, - { - "type": "nypl:Bnumber", - "value": "13701585" - }, - { - "type": "bf:Isbn", - "value": "0814326951 (alk. paper)" - }, - { - "type": "nypl:Oclc", - "value": "37260938" - }, - { - "type": "bf:Lccn", - "value": "97025475" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3669560" - } - ], - "updatedAt": 1711418976733, - "publicationStatement": [ - "Detroit : Wayne State University Press, c1998." - ], - "idIsbn": [ - "0814326951 (alk. paper)" - ], - "identifier": [ - "urn:shelfmark:Sc E 98-916", - "urn:bnum:13701585", - "urn:isbn:0814326951 (alk. paper)", - "urn:oclc:37260938", - "urn:lccn:97025475", - "urn:identifier:(WaOLN)nyp3669560" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1998" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wilson, Sunnie, 1908-1999.", - "Louis, Joe, 1914-1981.", - "Hotelkeepers -- Michigan -- Detroit -- Biography.", - "African American businesspeople -- Michigan -- Detroit.", - "Detroit (Mich.) -- History." - ], - "titleDisplay": [ - "Toast of the town : the life and times of Sunnie Wilson / Sunnie Wilson with John Cohassey." - ], - "uri": "b13701585", - "lccClassification": [ - "TX910.5.W58 A3 1998" - ], - "placeOfPublication": [ - "Detroit" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ], - "idIsbn_clean": [ - "0814326951" - ] - }, - "sort": [ - 705.20953, - "b13701585" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13701585", - "_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": [ - "33433059013072" - ], - "identifier": [ - "urn:shelfmark:Sc E 98-916", - "urn:barcode:33433059013072" - ], - "identifierV2": [ - { - "value": "Sc E 98-916", - "type": "bf:ShelfMark" - }, - { - "value": "33433059013072", - "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 98-916" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc E 98-916" - ], - "shelfMark_sort": "aSc E 98-000916", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14417587" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b20569949", - "_score": 703.20953, - "_source": { - "extent": [ - "1 online resource." - ], - "note": [ - { - "noteType": "Note", - "label": "Title from HTML t.p. (viewed May 1, 2009).", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access restricted to authorized users.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "Mode of access: World Wide Web.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Alexander Street Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2007 - ], - "title": [ - "Toast of New York (1937) shooting script" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Nichols, Dudley, 1895-1960." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "American film scripts online" - ], - "contributorLiteral": [ - "Josephson, Matthew, 1899-1978.", - "Twist, John, 1898-1976.", - "Sayre, Joel, 1900-1979." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "ssj0001177068" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "20569949" - }, - { - "type": "nypl:Oclc", - "value": "ssj0001177068" - }, - { - "type": "bf:Identifier", - "value": "(WaSeSS)ssj0001177068" - } - ], - "uniformTitle": [ - "Toast of New York (1937 : Online)", - "American film scripts online." - ], - "updatedAt": 1711272493617, - "publicationStatement": [ - "Alexandria, VA : Alexander Street Press, 2007." - ], - "identifier": [ - "urn:bnum:20569949", - "urn:oclc:ssj0001177068", - "urn:identifier:(WaSeSS)ssj0001177068" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast of New York (1937) [electronic resource] : shooting script / story by Matthew Josephson ; screenplay by Dudley Nichols, John Twist and Joel Sayre." - ], - "uri": "b20569949", - "electronicResources": [ - { - "label": "Available onsite at NYPL", - "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" - } - ], - "placeOfPublication": [ - "Alexandria, VA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Toast of New York (1937 : Online)" - ] - }, - "sort": [ - 703.20953, - "b20569949" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb2127025", - "_score": 702.54047, - "_source": { - "extent": [ - "200 pages : illustrations, map ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 185-193) and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Wilson, Sunnie, 1908-1999", - "Louis, Joe, 1914-1981", - "Hotelkeepers", - "Hotelkeepers -- Detroit", - "Hotelkeepers -- Detroit -- Biography", - "African American businesspeople", - "African American businesspeople -- Detroit", - "Detroit (Mich.)", - "Detroit (Mich.) -- History" - ], - "publisherLiteral": [ - "Wayne State University Press" - ], - "description": [ - "As part of the great migration of southern blacks to the north, Sunnie Wilson came to Detroit from South Carolina after graduating from college, and soon became a pillar in the local music industry. He started out as a song and dance performer, but found his niche as a local promoter of boxing and musical acts.", - "Soon after arriving in Detroit, Wilson started emceeing shows and booking gigs at clubs. He bought restaurants, like the popular Brown Bomber Chicken Shack in Paradise Valley, and bought the Mark Twain hotel on Garfield off of Woodward to sleep on-the-rise performers not welcome at white establishments, including Duke Ellington and B. B. King. He met and made friends with musicians Cab Calloway, Dizzy Gillespie, Earl Hines, and Lionel Hampton, and still counts Joe Louis as one of his best friends.", - "Part oral history, memoir, and biography, Toast of the Town draws from hundreds of hours of taped conversations between Sunnie Wilson and John Cohassey, as Wilson reflects on the changes in Detroit over the last sixty years.", - "Through Sunnie Wilson's narrative, Detroit's glory age comes alive, bringing back nights at the hopping Forest Club on Hastings Street, which hosted music greats like Nat King Cole and boasted the longest bar in Michigan, and sunny afternoons at Lake Idlewild, the largest black resort in the United States that attracted thousands every weekend from all over the midwest." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1998" - ], - "createdYear": [ - 1998 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast of the town : the life and times of Sunnie Wilson" - ], - "creatorLiteral": [ - "Wilson, Sunnie, 1908-1999." - ], - "createdString": [ - "1998" - ], - "idLccn": [ - " 97025475 " - ], - "seriesStatement": [ - "Great Lakes books" - ], - "contributorLiteral": [ - "Cohassey, John, 1961-" - ], - "dateStartYear": [ - 1998 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "2127025" - }, - { - "type": "bf:Isbn", - "value": "0814326951 (alk. paper)" - }, - { - "type": "bf:Lccn", - "value": " 97025475 " - }, - { - "type": "nypl:Oclc", - "value": "37260938" - }, - { - "type": "nypl:Oclc", - "value": "ocm37260938" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)37260938" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm37260938" - }, - { - "type": "bf:Identifier", - "value": "(NNC)2127025" - }, - { - "type": "bf:Identifier", - "value": "2127025" - } - ], - "idOclc": [ - "37260938", - "ocm37260938" - ], - "uniformTitle": [ - "Great Lakes books." - ], - "dateEndYear": [ - 1998 - ], - "holdings": [], - "updatedAt": 1655426926675, - "publicationStatement": [ - "Detroit : Wayne State University Press, [1998], ©1998." - ], - "identifier": [ - "urn:bnum:2127025", - "urn:isbn:0814326951 (alk. paper)", - "urn:lccn: 97025475 ", - "urn:oclc:37260938", - "urn:oclc:ocm37260938", - "urn:undefined:(OCoLC)37260938", - "urn:undefined:(OCoLC)ocm37260938", - "urn:undefined:(NNC)2127025", - "urn:undefined:2127025" - ], - "idIsbn": [ - "0814326951 (alk. paper)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1998" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wilson, Sunnie, 1908-1999.", - "Louis, Joe, 1914-1981.", - "Hotelkeepers -- Detroit -- Biography.", - "African American businesspeople -- Detroit.", - "Detroit (Mich.) -- History." - ], - "titleDisplay": [ - "Toast of the town : the life and times of Sunnie Wilson / Sunnie Wilson with John Cohassey." - ], - "uri": "cb2127025", - "lccClassification": [ - "TX910.5.W58 A3 1998" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Detroit" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0814326951" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 702.54047, - "cb2127025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb2127025", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci2594116", - "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": [ - "TX910.5.W58 A3 1998" - ], - "identifierV2": [ - { - "value": "TX910.5.W58 A3 1998", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU68848080" - } - ], - "physicalLocation": [ - "TX910.5.W58 A3 1998" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU68848080" - ], - "idBarcode": [ - "CU68848080" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aTX910.5.W58 A3 001998" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990092192200203941", - "_score": 699.7302, - "_source": { - "extent": [ - "247 p. ;" - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Slater, Nigel", - "Slater, Nigel -- Childhood and youth", - "Food habits", - "Food habits -- England", - "Food habits -- England -- History", - "Food habits -- England -- History -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fourth Estate" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2003 - ], - "title": [ - "Toast : the story of a boy's hunger / Nigel Slater." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2003" - ], - "creatorLiteral": [ - "Slater, Nigel." - ], - "idLccn": [ - "^^2005533920" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2003 - ], - "idOclc": [ - "52396085", - "SCSB-12424988" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990092192200203941" - }, - { - "type": "bf:Isbn", - "value": "1841152897" - }, - { - "type": "nypl:Oclc", - "value": "52396085" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-12424988" - }, - { - "type": "bf:Lccn", - "value": "^^2005533920" - }, - { - "type": "bf:Identifier", - "value": "(MH)009219220HVD01-Aleph" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)52396085" - } - ], - "updatedAt": 1704687921210, - "publicationStatement": [ - "London ; New York : Fourth Estate, 2003." - ], - "idIsbn": [ - "1841152897" - ], - "identifier": [ - "urn:bnum:990092192200203941", - "urn:isbn:1841152897", - "urn:oclc:52396085", - "urn:oclc:SCSB-12424988", - "urn:lccn:^^2005533920", - "urn:identifier:(MH)009219220HVD01-Aleph", - "urn:identifier:(OCoLC)52396085" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2003" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Slater, Nigel -- Childhood and youth.", - "Food habits -- England -- History -- 20th century." - ], - "titleDisplay": [ - "Toast : the story of a boy's hunger / Nigel Slater." - ], - "uri": "hb990092192200203941", - "lccClassification": [ - "TX357 .S53 2003" - ], - "placeOfPublication": [ - "London ; New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Story of a boy's hunger" - ], - "dimensions": [ - "20 cm." - ], - "idIsbn_clean": [ - "1841152897" - ] - }, - "sort": [ - 699.7302, - "hb990092192200203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990092192200203941", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "HXSKRU" - ], - "identifier": [ - "urn:shelfmark:TX649.S5 A3 2003", - "urn:barcode:HXSKRU" - ], - "identifierV2": [ - { - "value": "TX649.S5 A3 2003", - "type": "bf:ShelfMark" - }, - { - "value": "HXSKRU", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "physicalLocation": [ - "TX649.S5 A3 2003" - ], - "recapCustomerCode": [ - "HW" - ], - "requestable": [ - false - ], - "shelfMark": [ - "TX649.S5 A3 2003" - ], - "shelfMark_sort": "aTX649.S5 A3 002003", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "bf:Item" - ], - "uri": "hi232073168660003941" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-dfee81260e502eca83d48ca93d3afec5.json b/test/fixtures/query-4ac0c4bf3b3f8d9e6cd2b8a84912ae9e.json similarity index 99% rename from test/fixtures/query-dfee81260e502eca83d48ca93d3afec5.json rename to test/fixtures/query-4ac0c4bf3b3f8d9e6cd2b8a84912ae9e.json index 811cd44d..697ffe67 100644 --- a/test/fixtures/query-dfee81260e502eca83d48ca93d3afec5.json +++ b/test/fixtures/query-4ac0c4bf3b3f8d9e6cd2b8a84912ae9e.json @@ -1,6 +1,6 @@ { "body": { - "took": 109, + "took": 155, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json b/test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json deleted file mode 100644 index cc65aa5a..00000000 --- a/test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 73, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 27.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 27.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json b/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json deleted file mode 100644 index df4981da..00000000 --- a/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 89, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-ef9d1951d3e376aa1dfd515398d1fb9a.json b/test/fixtures/query-5b227e80e3dc1b7b953ccb884e058c8b.json similarity index 99% rename from test/fixtures/query-ef9d1951d3e376aa1dfd515398d1fb9a.json rename to test/fixtures/query-5b227e80e3dc1b7b953ccb884e058c8b.json index aeffe6c0..ccf3dc8c 100644 --- a/test/fixtures/query-ef9d1951d3e376aa1dfd515398d1fb9a.json +++ b/test/fixtures/query-5b227e80e3dc1b7b953ccb884e058c8b.json @@ -1,6 +1,6 @@ { "body": { - "took": 31, + "took": 38, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-7a79abcdb33df46496b41afcd9bc5270.json b/test/fixtures/query-7686c367e401cbc1dca32b57d0a9bf77.json similarity index 99% rename from test/fixtures/query-7a79abcdb33df46496b41afcd9bc5270.json rename to test/fixtures/query-7686c367e401cbc1dca32b57d0a9bf77.json index 4c7b7b17..6f454610 100644 --- a/test/fixtures/query-7a79abcdb33df46496b41afcd9bc5270.json +++ b/test/fixtures/query-7686c367e401cbc1dca32b57d0a9bf77.json @@ -1,6 +1,6 @@ { "body": { - "took": 89, + "took": 19, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-778b80c7334a3483277a964a39433c92.json b/test/fixtures/query-778b80c7334a3483277a964a39433c92.json deleted file mode 100644 index 5ce07669..00000000 --- a/test/fixtures/query-778b80c7334a3483277a964a39433c92.json +++ /dev/null @@ -1,27086 +0,0 @@ -{ - "body": { - "took": 488, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 10000, - "relation": "gte" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11826883", - "_score": 820.2756, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Indexed In", - "label": "Applied science & technology index", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Art index", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "R]pertoire international de la littérature de l'art", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Art and archaeology technical abstracts", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Artbibliographies modern", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Avery index to architectural periodicals", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Vols. 1 (1965)-10 (1974). 1 v.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1 (1965)-" - ], - "subjectLiteral_exploded": [ - "Furniture", - "Furniture -- England", - "Furniture -- England -- History", - "Furniture -- England -- History -- Periodicals" - ], - "numItemDatesParsed": [ - 70 - ], - "publisherLiteral": [ - "The Society" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 70 - ], - "createdYear": [ - 1965 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Furniture history : the journal of the Furniture History Society." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-18" - ], - "numItemVolumesParsed": [ - 70 - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "66053650 //r89" - ], - "idIssn": [ - "0016-3058" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Furniture History Society (London, England)" - ], - "dateStartYear": [ - 1965 - ], - "idOclc": [ - "1570335" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-18" - }, - { - "type": "nypl:Bnumber", - "value": "11826883" - }, - { - "type": "nypl:Oclc", - "value": "1570335" - }, - { - "type": "bf:Lccn", - "value": "66053650 //r89" - }, - { - "type": "bf:Issn", - "value": "0016-3058" - }, - { - "type": "bf:Identifier", - "value": "0280126" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1832956" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 30 (1994)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 31 (1995)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 32 (1996)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 33 (1997)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 34 (1998)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 35 (1999)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 26-35 (1990 - 1999)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 36 (2000)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 37 (2001)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 38 (2002)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 39 (2003)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 40 (2004)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 41 (2005)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 42 (2006)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 43 (2007)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 44 (2008)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 45 (2009)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 46 (2010)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 47 (2011)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 48 (2012)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 36-45 (2000 - 2009)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 49 (2013)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 50 (2014)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 51 (2015)", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 52 (2016)", - "position": 25, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 53 (2017)", - "position": 26, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 54 (2018)", - "position": 27, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 55 (2019)", - "position": 28, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 56 (2020)", - "position": 29, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 57 (2021)", - "position": 30, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 58 (2022)", - "position": 31, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(1965)-44(2008)-", - "v. 3636 (2000) - v. 45 (2000); v. 44 (2008); v. 45 (2009); v. 46 (2010); v. 47 (2011); v. 48 (2012); v. 49 (2013); v. 50 (2014); v. 55 (2019)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-18" - } - ], - "physicalLocation": [ - "JQL 08-18" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-18" - ], - "uri": "h1066822" - } - ], - "updatedAt": 1714487263214, - "publicationStatement": [ - "[London] : The Society" - ], - "identifier": [ - "urn:shelfmark:JQL 08-18", - "urn:bnum:11826883", - "urn:oclc:1570335", - "urn:lccn:66053650 //r89", - "urn:issn:0016-3058", - "urn:identifier:0280126", - "urn:identifier:(WaOLN)nyp1832956" - ], - "numCheckinCardItems": [ - 31 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Furniture -- England -- History -- Periodicals." - ], - "titleDisplay": [ - "Furniture history : the journal of the Furniture History Society." - ], - "uri": "b11826883", - "lccClassification": [ - "NK2528 .F8" - ], - "placeOfPublication": [ - "[London]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Furnit. hist.", - "Furniture history" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 820.2756, - "b11826883" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 70, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11826883", - "_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": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "v. 59 (2023)" - ], - "enumerationChronology_sort": [ - " 59-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076530082" - ], - "identifier": [ - "urn:shelfmark:JQL 08-18 v. 59 (2023)", - "urn:barcode:33433076530082" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 59 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076530082", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-18 v. 59 (2023)" - ], - "shelfMark_sort": "aJQL 08-18 v. 000059 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "uri": "i40673104" - }, - "sort": [ - " 59-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11826883", - "_nested": { - "field": "items", - "offset": 69 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology": [ - "No. 58 (2022)" - ], - "enumerationChronology_sort": [ - " 58-2022-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-18" - ], - "shelfMark_sort": "aJQL 08-000018", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1066822-0", - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "volumeRaw": [ - "No. 58" - ] - }, - "sort": [ - " 58-2022-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11826883", - "_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": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "v. 58 (2022)" - ], - "enumerationChronology_sort": [ - " 58-2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076543143" - ], - "identifier": [ - "urn:shelfmark:JQL 08-18 v. 58 (2022)", - "urn:barcode:33433076543143" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 58 (2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076543143", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-18 v. 58 (2022)" - ], - "shelfMark_sort": "aJQL 08-18 v. 000058 (2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "uri": "i39962833" - }, - "sort": [ - " 58-2022" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21506221", - "_score": 35.24536, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A magazine of art, design and architecture.\"", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on: Issue 01 (2007/08); title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: Issue 01 (2007/08)", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Issue 01 (2007-08)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Periodicals" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "Faculty of Art, Design and Architecture, Kingston University" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Kiosk." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 18-4" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "idIssn": [ - "1755-9626" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kingston University (London, England). Faculty of Art, Design and Architecture." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "190792176" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 18-4" - }, - { - "type": "nypl:Bnumber", - "value": "21506221" - }, - { - "type": "nypl:Oclc", - "value": "190792176" - }, - { - "type": "bf:Issn", - "value": "1755-9626" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)190792176" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711593229661, - "publicationStatement": [ - "London : Faculty of Art, Design and Architecture, Kingston University, 2007-" - ], - "genreForm": [ - "Periodicals." - ], - "identifier": [ - "urn:shelfmark:JQL 18-4", - "urn:bnum:21506221", - "urn:oclc:190792176", - "urn:issn:1755-9626", - "urn:identifier:(OCoLC)190792176" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Periodicals.", - "Art." - ], - "titleDisplay": [ - "Kiosk." - ], - "uri": "b21506221", - "lccClassification": [ - "N1 .K56" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm" - ] - }, - "sort": [ - 35.24536, - "b21506221" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21506221", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2008" - } - ], - "enumerationChronology": [ - "issue 1 (2007/08)" - ], - "enumerationChronology_sort": [ - " -2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433116522354" - ], - "identifier": [ - "urn:shelfmark:JQL 18-4 issue 1 (2007/08)", - "urn:barcode:33433116522354" - ], - "identifierV2": [ - { - "value": "JQL 18-4 issue 1 (2007/08)", - "type": "bf:ShelfMark" - }, - { - "value": "33433116522354", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 18-4" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 18-4 issue 1 (2007/08)" - ], - "shelfMark_sort": "aJQL 18-4 issue 1 (2007/08)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i35913145" - }, - "sort": [ - " -2007" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11560439", - "_score": 34.354206, - "_source": { - "extent": [ - "56 volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Source of Description", - "label": "Description based on: Jaarg. 16, nr. 1, published in 1968.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: Jaarg. 56, nr. 4 (2008).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began 1953; ceased in 2008." - ], - "subjectLiteral_exploded": [ - "Rijksmuseum (Netherlands)", - "Rijksmuseum (Netherlands) -- Periodicals", - "Art", - "Art -- Periodicals", - "Art -- Netherlands", - "Art -- Netherlands -- Amsterdam", - "Art -- Netherlands -- Amsterdam -- Periodicals", - "Art -- Netherlands -- Amsterdam -- Periodicals -- Art", - "Netherlands", - "Netherlands -- Amsterdam" - ], - "numItemDatesParsed": [ - 28 - ], - "publisherLiteral": [ - "Rijks-Museum" - ], - "language": [ - { - "id": "lang:dut", - "label": "Dutch" - } - ], - "numItemsTotal": [ - 28 - ], - "createdYear": [ - 1953 - ], - "dateEndString": [ - "2008" - ], - "title": [ - "Bulletin van het Rijksmuseum." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-19" - ], - "numItemVolumesParsed": [ - 28 - ], - "createdString": [ - "1953" - ], - "creatorLiteral": [ - "Rijksmuseum (Netherlands)" - ], - "idLccn": [ - "2009219042" - ], - "idIssn": [ - "0165-9510" - ], - "numElectronicResources": [ - 2 - ], - "dateStartYear": [ - 1953 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "4272788" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-19" - }, - { - "type": "nypl:Bnumber", - "value": "11560439" - }, - { - "type": "nypl:Oclc", - "value": "4272788" - }, - { - "type": "bf:Lccn", - "value": "2009219042" - }, - { - "type": "bf:Issn", - "value": "0165-9510" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4272788" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1481032 (OCoLC)646828412 (OCoLC)1001937252 (OCoLC)1036735109 (OCoLC)1052909875 (OCoLC)1064861871" - } - ], - "dateEndYear": [ - 2008 - ], - "updatedAt": 1713883991037, - "publicationStatement": [ - "Amsterdam : Rijks-Museum, -©2008." - ], - "genreForm": [ - "Catalogs.", - "Periodicals.", - "Art." - ], - "identifier": [ - "urn:shelfmark:JQL 08-19", - "urn:bnum:11560439", - "urn:oclc:4272788", - "urn:lccn:2009219042", - "urn:issn:0165-9510", - "urn:identifier:(OCoLC)4272788", - "urn:identifier:(OCoLC)1481032 (OCoLC)646828412 (OCoLC)1001937252 (OCoLC)1036735109 (OCoLC)1052909875 (OCoLC)1064861871" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rijksmuseum (Netherlands) -- Periodicals.", - "Rijksmuseum (Netherlands)", - "Art -- Periodicals.", - "Art -- Netherlands -- Amsterdam -- Periodicals -- Art.", - "Art.", - "Netherlands -- Amsterdam." - ], - "titleDisplay": [ - "Bulletin van het Rijksmuseum." - ], - "uri": "b11560439", - "lccClassification": [ - "N2460 .A3" - ], - "electronicResources": [ - { - "url": "http://www.rijksmuseum.nl/bulletin?lang=en" - }, - { - "url": "http://www.jstor.org/journals/01659510.html" - } - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Bull. Rÿksmus.", - "Bulletin van het Rÿksmuseum" - ], - "dimensions": [ - "24 cm" - ] - }, - "sort": [ - 34.354206, - "b11560439" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 28, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11560439", - "_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": "2008", - "lte": "2008" - } - ], - "enumerationChronology": [ - "v. 56 (2008) & Index" - ], - "enumerationChronology_sort": [ - " 56-2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433099607917" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 56 (2008) & Index", - "urn:barcode:33433099607917" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 56 (2008) & Index", - "type": "bf:ShelfMark" - }, - { - "value": "33433099607917", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-19 v. 56 (2008) & Index" - ], - "shelfMark_sort": "aJQL 08-19 v. 000056 (2008) & Index", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 56, - "lte": 56 - } - ], - "uri": "i28757051" - }, - "sort": [ - " 56-2008" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11560439", - "_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": "2007", - "lte": "2007" - } - ], - "enumerationChronology": [ - "v. 55 (2007) & Index" - ], - "enumerationChronology_sort": [ - " 55-2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433099608063" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 55 (2007) & Index", - "urn:barcode:33433099608063" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 55 (2007) & Index", - "type": "bf:ShelfMark" - }, - { - "value": "33433099608063", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-19 v. 55 (2007) & Index" - ], - "shelfMark_sort": "aJQL 08-19 v. 000055 (2007) & Index", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 55, - "lte": 55 - } - ], - "uri": "i28756751" - }, - "sort": [ - " 55-2007" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11560439", - "_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": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "v. 54 (2006) & Index" - ], - "enumerationChronology_sort": [ - " 54-2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433099608188" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 54 (2006) & Index", - "urn:barcode:33433099608188" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 54 (2006) & Index", - "type": "bf:ShelfMark" - }, - { - "value": "33433099608188", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-19 v. 54 (2006) & Index" - ], - "shelfMark_sort": "aJQL 08-19 v. 000054 (2006) & Index", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 54, - "lte": 54 - } - ], - "uri": "i28756731" - }, - "sort": [ - " 54-2006" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16775643", - "_score": 33.489655, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "No. 16 (fall 1982)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Research", - "Art -- Research -- Periodicals" - ], - "numItemDatesParsed": [ - 10 - ], - "publisherLiteral": [ - "University of Illinois Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 10 - ], - "createdYear": [ - 1982 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Visual arts research." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-3" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83644328" - ], - "idIssn": [ - "0736-0770" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "idOclc": [ - "9069635" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-3" - }, - { - "type": "nypl:Bnumber", - "value": "16775643" - }, - { - "type": "nypl:Oclc", - "value": "9069635" - }, - { - "type": "bf:Lccn", - "value": "83644328" - }, - { - "type": "bf:Issn", - "value": "0736-0770" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "0160-3221" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)9069635" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S240000007" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "9(1983)-27(2001)-" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-3" - } - ], - "physicalLocation": [ - "JQL 08-3" - ], - "location": [ - { - "code": "loc:mab82", - "label": "Schwarzman Building M1 - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-3" - ], - "uri": "h1090282" - } - ], - "updatedAt": 1711226746443, - "publicationStatement": [ - "[Champaign, Ill.] : University of Illinois Press, c1982-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-3", - "urn:bnum:16775643", - "urn:oclc:9069635", - "urn:lccn:83644328", - "urn:issn:0736-0770", - "urn:issn:0160-3221", - "urn:identifier:(OCoLC)9069635", - "urn:identifier:(WaOLN)S240000007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Research -- Periodicals." - ], - "titleDisplay": [ - "Visual arts research." - ], - "uri": "b16775643", - "lccClassification": [ - "N81 .R49" - ], - "placeOfPublication": [ - "[Champaign, Ill.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Vis. arts res.", - "Visual arts research" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 33.489655, - "b16775643" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 10, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16775643", - "_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": "2012", - "lte": "2012" - } - ], - "enumerationChronology": [ - "v. 38, no. 1, Issue 74 (Sum. 2012)" - ], - "enumerationChronology_sort": [ - " 38-2012" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433115147914" - ], - "identifier": [ - "urn:shelfmark:JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)", - "urn:barcode:33433115147914" - ], - "identifierV2": [ - { - "value": "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)", - "type": "bf:ShelfMark" - }, - { - "value": "33433115147914", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)" - ], - "shelfMark_sort": "aJQL 08-3 v. 000038, no. 1, Issue 74 (Sum. 2012)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 38 - } - ], - "uri": "i29405160" - }, - "sort": [ - " 38-2012" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16775643", - "_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": "1989", - "lte": "1990" - } - ], - "enumerationChronology": [ - "v. 15-16 (1989-90)" - ], - "enumerationChronology_sort": [ - " 15-1989" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433105255586" - ], - "identifier": [ - "urn:shelfmark:JQL 08-3 v. 15-16 (1989-90)", - "urn:barcode:33433105255586" - ], - "identifierV2": [ - { - "value": "JQL 08-3 v. 15-16 (1989-90)", - "type": "bf:ShelfMark" - }, - { - "value": "33433105255586", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-3 v. 15-16 (1989-90)" - ], - "shelfMark_sort": "aJQL 08-3 v. 000015-16 (1989-90)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 15, - "lte": 16 - } - ], - "uri": "i29627807" - }, - "sort": [ - " 15-1989" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16775643", - "_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": "2000", - "lte": "2001" - } - ], - "enumerationChronology": [ - "26-27 (2000-2001)" - ], - "enumerationChronology_sort": [ - " -2000" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433074083142" - ], - "identifier": [ - "urn:shelfmark:JQL 08-3 26-27 (2000-2001)", - "urn:barcode:33433074083142" - ], - "identifierV2": [ - { - "value": "JQL 08-3 26-27 (2000-2001)", - "type": "bf:ShelfMark" - }, - { - "value": "33433074083142", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-3 26-27 (2000-2001)" - ], - "shelfMark_sort": "aJQL 08-3 26-27 (2000-2001)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17662016" - }, - "sort": [ - " -2000" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12525718", - "_score": 33.4438, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published: Fratelli Palombi Editori, 1954-1984; L'Erma di Bretschneider, 1985- .", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "RILA. Répertoire international de la littérature de l'art", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Anno 25 (1978)-27 (1980) combined.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Anno 1, n. 1-2 (1954)-anno 32 (1985) ; nuova serie, 1 (1987)-" - ], - "subjectLiteral_exploded": [ - "Rome (Italy)", - "Rome (Italy) -- Galleries and museums" - ], - "numItemDatesParsed": [ - 45 - ], - "publisherLiteral": [ - "Gli Amici" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 45 - ], - "createdYear": [ - 1954 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Bollettino dei Musei comunali di Roma" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-17" - ], - "numItemVolumesParsed": [ - 45 - ], - "createdString": [ - "1954" - ], - "idLccn": [ - "64036787 //r882" - ], - "idIssn": [ - "0523-9346" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Amici dei musei di Roma (Italy)" - ], - "dateStartYear": [ - 1954 - ], - "idOclc": [ - "2785323" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-17" - }, - { - "type": "nypl:Bnumber", - "value": "12525718" - }, - { - "type": "nypl:Oclc", - "value": "2785323" - }, - { - "type": "bf:Lccn", - "value": "64036787 //r882" - }, - { - "type": "bf:Issn", - "value": "0523-9346" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S010000043" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 7 (1993)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 8 (1994)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9 (1995)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 10 (1996)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11 (1997)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12 (1998)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 13 (1999)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 14 (2000)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 15 (2001)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 16 (2002)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 17 (2003)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 18 (2004)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 19 (2005)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 20 (2006)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 21 (2007)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 22 (2008)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 23 (2009)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 24 (2010)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 25 (2011)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 26 (2012)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 27 (2013)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 28 (2014)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 29 (2015)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 30 (2018)", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 31 (2019)", - "position": 25, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 32 (2018)", - "position": 26, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 33 (2021)", - "position": 27, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 34 (2022)", - "position": 28, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(1954)-6(1959),8(1961)-32(1985) [N.S] 1(1987)-18(2004),25(2011)28(2014),32(2018)-", - "v. 25 (2011) - v. 28 (2014); v. 32 (2020)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-17" - } - ], - "notes": [ - "Order transferred from GRD to ART per CCK/ART 7/29/04 ?EP" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-17" - ], - "uri": "h1069076" - } - ], - "updatedAt": 1711342513715, - "publicationStatement": [ - "[Roma] : Gli Amici, [1954]-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-17", - "urn:bnum:12525718", - "urn:oclc:2785323", - "urn:lccn:64036787 //r882", - "urn:issn:0523-9346", - "urn:identifier:(WaOLN)S010000043" - ], - "numCheckinCardItems": [ - 28 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rome (Italy) -- Galleries and museums." - ], - "titleDisplay": [ - "Bollettino dei Musei comunali di Roma / a cura degli Amici dei musei di Roma." - ], - "uri": "b12525718", - "lccClassification": [ - "AM55.R6 B6" - ], - "placeOfPublication": [ - "[Roma]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Boll. Mus. comunali Roma", - "Bollettino dei Musei comunali di Roma" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 33.4438, - "b12525718" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 45, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12525718", - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology": [ - "No. 34 (2022)" - ], - "enumerationChronology_sort": [ - " 34-2022-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-17" - ], - "shelfMark_sort": "aJQL 08-000017", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1069076-0", - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "volumeRaw": [ - "No. 34" - ] - }, - "sort": [ - " 34-2022-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12525718", - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology": [ - "No. 33 (2021)" - ], - "enumerationChronology_sort": [ - " 33-2021-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-17" - ], - "shelfMark_sort": "aJQL 08-000017", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1069076-1", - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "volumeRaw": [ - "No. 33" - ] - }, - "sort": [ - " 33-2021-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12525718", - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology": [ - "No. 32 (2018)" - ], - "enumerationChronology_sort": [ - " 32-2018-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-17" - ], - "shelfMark_sort": "aJQL 08-000017", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1069076-2", - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "volumeRaw": [ - "No. 32" - ] - }, - "sort": [ - " 32-2018-01-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11482689", - "_score": 19.373138, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"The annual exhibition guide.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Description based on: 1991.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and Italian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Exhibitions", - "Art -- Exhibitions -- Directories", - "Art museums", - "Art museums -- Exhibitions", - "Art museums -- Exhibitions -- Directories" - ], - "numItemDatesParsed": [ - 15 - ], - "publisherLiteral": [ - "Hopefulmonster editore" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 15 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Artyear." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-26" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "NYPG91-S4881" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-26" - }, - { - "type": "nypl:Bnumber", - "value": "11482689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG91-S4881" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1490936" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "2001", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-26" - ], - "status": "Bound" - }, - { - "coverage": "2002", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-26" - ], - "status": "Bound" - } - ], - "holdingStatement": [ - "1991-2002-" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-26" - } - ], - "physicalLocation": [ - "JQL 08-26" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-26" - ], - "uri": "h1060290" - } - ], - "updatedAt": 1710982596462, - "publicationStatement": [ - "Torino, Italy : Hopefulmonster editore" - ], - "identifier": [ - "urn:shelfmark:JQL 08-26", - "urn:bnum:11482689", - "urn:oclc:NYPG91-S4881", - "urn:identifier:(WaOLN)nyp1490936" - ], - "numCheckinCardItems": [ - 2 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Exhibitions -- Directories.", - "Art museums -- Exhibitions -- Directories." - ], - "titleDisplay": [ - "Artyear." - ], - "uri": "b11482689", - "placeOfPublication": [ - "Torino, Italy" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Art year" - ], - "dimensions": [ - "25 x 11 cm." - ] - }, - "sort": [ - 19.373138, - "b11482689" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 15, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11482689", - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2002-01-01", - "lte": "2002-01-01" - } - ], - "enumerationChronology": [ - "2002" - ], - "enumerationChronology_sort": [ - " -2002-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-26", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-26" - ], - "shelfMark_sort": "aJQL 08-000026", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1060290-1" - }, - "sort": [ - " -2002-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11482689", - "_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": "2002", - "lte": "2002" - } - ], - "enumerationChronology": [ - "2002" - ], - "enumerationChronology_sort": [ - " -2002" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433015935228" - ], - "identifier": [ - "urn:shelfmark:JQL 08-26 2002", - "urn:barcode:33433015935228" - ], - "identifierV2": [ - { - "value": "JQL 08-26 2002", - "type": "bf:ShelfMark" - }, - { - "value": "33433015935228", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-26" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-26 2002" - ], - "shelfMark_sort": "aJQL 08-26 002002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11141344" - }, - "sort": [ - " -2002" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11482689", - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2001-01-01" - } - ], - "enumerationChronology": [ - "2001" - ], - "enumerationChronology_sort": [ - " -2001-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-26", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-26" - ], - "shelfMark_sort": "aJQL 08-000026", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1060290-0" - }, - "sort": [ - " -2001-01-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16810333", - "_score": 19.373138, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "First ed. 1994, now revised, updated and enlarged.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Canova, Antonio, 1757-1822" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Salerno Editrice" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Edizione nazionale delle opere di Antonio Canova" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-6" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Canova, Antonio, 1757-1822." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Honour, Hugh.", - "Mariuz, Paolo." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "213892009" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-6" - }, - { - "type": "nypl:Bnumber", - "value": "16810333" - }, - { - "type": "bf:Isbn", - "value": "8884025907 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "9788884025906 (v. 1)" - }, - { - "type": "nypl:Oclc", - "value": "213892009" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)213892009" - } - ], - "uniformTitle": [ - "Works. 2007" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711465519166, - "publicationStatement": [ - "Roma : Salerno Editrice, c2007-" - ], - "idIsbn": [ - "8884025907 (v. 1)", - "9788884025906 (v. 1)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-6", - "urn:bnum:16810333", - "urn:isbn:8884025907 (v. 1)", - "urn:isbn:9788884025906 (v. 1)", - "urn:oclc:213892009", - "urn:identifier:(OCoLC)213892009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Canova, Antonio, 1757-1822." - ], - "titleDisplay": [ - "Edizione nazionale delle opere di Antonio Canova / a cura di Hugh Honour e Paolo Mariuz." - ], - "uri": "b16810333", - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Works. 2007" - ], - "tableOfContents": [ - "1. Scritti." - ], - "dimensions": [ - "25 cm." - ], - "idIsbn_clean": [ - "88840259071", - "97888840259061" - ] - }, - "sort": [ - 19.373138, - "b16810333" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16810333", - "_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" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433080536703" - ], - "identifier": [ - "urn:shelfmark:JQL 08-6 v. 1", - "urn:barcode:33433080536703" - ], - "identifierV2": [ - { - "value": "JQL 08-6 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433080536703", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 08-6" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-6 v. 1" - ], - "shelfMark_sort": "aJQL 08-6 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17687358" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17058420", - "_score": 19.373138, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Latest issue consulted: Center 26 (June 2005/May 2006).", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Each report covers June 1-May 31.", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Also issued online.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "12 (June 1991-May 1992)-" - ], - "subjectLiteral_exploded": [ - "Center for Advanced Study in the Visual Arts (U.S.)", - "Center for Advanced Study in the Visual Arts (U.S.) -- Periodicals", - "Art", - "Art -- Study and teaching", - "Art -- Study and teaching -- Washington (D.C.)", - "Art -- Study and teaching -- Washington (D.C.) -- Periodicals" - ], - "numItemDatesParsed": [ - 5 - ], - "publisherLiteral": [ - "The Gallery" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 5 - ], - "createdYear": [ - 1992 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Center ... record of activities and research reports" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-21" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1992" - ], - "creatorLiteral": [ - "Center for Advanced Study in the Visual Arts (U.S.)" - ], - "idLccn": [ - "95646992" - ], - "idIssn": [ - "1557-198X" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "National Gallery of Art (U.S.)" - ], - "dateStartYear": [ - 1992 - ], - "idOclc": [ - "29217841" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-21" - }, - { - "type": "nypl:Bnumber", - "value": "17058420" - }, - { - "type": "nypl:Oclc", - "value": "29217841" - }, - { - "type": "bf:Lccn", - "value": "95646992" - }, - { - "type": "bf:Issn", - "value": "1557-198X" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "1557-1998 1557-1988" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)29217841" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-21" - } - ], - "physicalLocation": [ - "JQL 08-21" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-21" - ], - "uri": "h1090780" - } - ], - "updatedAt": 1712723782300, - "publicationStatement": [ - "Washington, DC : The Gallery, 1992-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-21", - "urn:bnum:17058420", - "urn:oclc:29217841", - "urn:lccn:95646992", - "urn:issn:1557-198X", - "urn:issn:1557-1998 1557-1988", - "urn:identifier:(OCoLC)29217841" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1992" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Center for Advanced Study in the Visual Arts (U.S.) -- Periodicals.", - "Art -- Study and teaching -- Washington (D.C.) -- Periodicals." - ], - "titleDisplay": [ - "Center ... record of activities and research reports / National Gallery of Art, Center for Advanced Study in the Visual Arts." - ], - "uri": "b17058420", - "lccClassification": [ - "N330.W3 C457a" - ], - "electronicResources": [ - { - "url": "http://www.nga.gov/resources/casva.htm" - } - ], - "placeOfPublication": [ - "Washington, DC" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Center ... record of activities and research reports", - "Center" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.373138, - "b17058420" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 5, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17058420", - "_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": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "29 [2009]" - ], - "enumerationChronology_sort": [ - " -2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433066849898" - ], - "identifier": [ - "urn:shelfmark:JQL 08-21 29 [2009]", - "urn:barcode:33433066849898" - ], - "identifierV2": [ - { - "value": "JQL 08-21 29 [2009]", - "type": "bf:ShelfMark" - }, - { - "value": "33433066849898", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-21" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-21 29 [2009]" - ], - "shelfMark_sort": "aJQL 08-21 29 [2009]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24628208" - }, - "sort": [ - " -2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17058420", - "_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:33", - "label": "google project, serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:33||google project, serial" - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "dueDate": [ - "2024-05-20" - ], - "enumerationChronology": [ - "28 [2008]" - ], - "enumerationChronology_sort": [ - " -2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433083743579" - ], - "identifier": [ - "urn:shelfmark:JQL 08-21 28 [2008]", - "urn:barcode:33433083743579" - ], - "identifierV2": [ - { - "value": "JQL 08-21 28 [2008]", - "type": "bf:ShelfMark" - }, - { - "value": "33433083743579", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-21" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-21 28 [2008]" - ], - "shelfMark_sort": "aJQL 08-21 28 [2008]", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "type": [ - "bf:Item" - ], - "uri": "i23163795" - }, - "sort": [ - " -2008" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17058420", - "_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": "2007", - "lte": "2007" - } - ], - "enumerationChronology": [ - "27 [2007]" - ], - "enumerationChronology_sort": [ - " -2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433083248157" - ], - "identifier": [ - "urn:shelfmark:JQL 08-21 27 [2007]", - "urn:barcode:33433083248157" - ], - "identifierV2": [ - { - "value": "JQL 08-21 27 [2007]", - "type": "bf:ShelfMark" - }, - { - "value": "33433083248157", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-21" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-21 27 [2007]" - ], - "shelfMark_sort": "aJQL 08-21 27 [2007]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17758796" - }, - "sort": [ - " -2007" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b23199586", - "_score": 19.373138, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Vol. 57, no. 1 (2009).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 57, no. 1 (2009)-" - ], - "subjectLiteral_exploded": [ - "Rijksmuseum (Netherlands)", - "Rijksmuseum (Netherlands) -- Periodicals", - "Art", - "Art -- Periodicals", - "Art -- Netherlands", - "Art -- Netherlands -- Amsterdam", - "Art -- Netherlands -- Amsterdam -- Periodicals", - "Art -- Netherlands -- Amsterdam -- Periodicals -- Art", - "Netherlands", - "Netherlands -- Amsterdam" - ], - "numItemDatesParsed": [ - 47 - ], - "publisherLiteral": [ - "Rijks-Museum" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 47 - ], - "createdYear": [ - 2009 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "The Rijksmuseum bulletin." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-19" - ], - "numItemVolumesParsed": [ - 47 - ], - "createdString": [ - "2009" - ], - "creatorLiteral": [ - "Rijksmuseum (Netherlands)" - ], - "idLccn": [ - "2008264061" - ], - "idIssn": [ - "1877-8127" - ], - "numElectronicResources": [ - 2 - ], - "dateStartYear": [ - 2009 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "320188858" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-19" - }, - { - "type": "nypl:Bnumber", - "value": "23199586" - }, - { - "type": "nypl:Oclc", - "value": "320188858" - }, - { - "type": "bf:Lccn", - "value": "2008264061" - }, - { - "type": "bf:Issn", - "value": "1877-8127" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "0165-9510" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)320188858" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1058329514" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Vol. 66 No. 1 (2018)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 2 (2018)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 3 (2018)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 4 (2018)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 1 (2019)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 2 (2019)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 3 (2019)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 4 (2019)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 68 No. 1 (2020)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Missing" - }, - { - "coverage": "Vol. 68 No. 2 (2020)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 3 (2020)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 4 (2020)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 69 No. 1 (2021)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Missing" - }, - { - "coverage": "Vol. 69 No. 2 (2021)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 69 No. 3 (2021)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 69 No. 4 (2021)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 1 (2022)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 2 (2022)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 70 No. 3 (2022)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 70 No. 4 (2022)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 71 No. 1 (2023)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 71 No. 2 (2023)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 71 No. 3 (2023)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 71 No. 4 (2023)", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 72 No. 1 (2024)", - "position": 25, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 72 No. 2 (2024)", - "position": 26, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "57(2009)-67:3(2019), 68:2(2020)-68:3(2020), 69:2(2021)-69:3(2021), 70:2(2022)-70:3(2022), 71:1(2023), 71:3(2023)-72:1(2024)-", - "v. 66, no. 1 (2018); v. 66, no. 4 (2018) - v. 67, no. 3 (2019); v. 68, no. 1 (2020) - no. 3 (2020); v. 69, no. 2 (2021) - no. 3 (2021); v. 70, no. 2 (2022) - no. 3 (2022); v. 71, no. 4 (2023)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-19" - } - ], - "physicalLocation": [ - "JQL 08-19" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-19" - ], - "uri": "h1059577" - } - ], - "updatedAt": 1715201659843, - "publicationStatement": [ - "Amsterdam : Rijks-Museum, 2009-" - ], - "genreForm": [ - "Periodicals.", - "Art." - ], - "identifier": [ - "urn:shelfmark:JQL 08-19", - "urn:bnum:23199586", - "urn:oclc:320188858", - "urn:lccn:2008264061", - "urn:issn:1877-8127", - "urn:issn:0165-9510", - "urn:identifier:(OCoLC)320188858", - "urn:identifier:(OCoLC)1058329514" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2009" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rijksmuseum (Netherlands) -- Periodicals.", - "Rijksmuseum (Netherlands)", - "Art -- Periodicals.", - "Art -- Netherlands -- Amsterdam -- Periodicals -- Art.", - "Art.", - "Netherlands -- Amsterdam." - ], - "titleDisplay": [ - "The Rijksmuseum bulletin." - ], - "uri": "b23199586", - "lccClassification": [ - "N2460 .A3" - ], - "electronicResources": [ - { - "url": "https://bulletin.rijksmuseum.nl/" - }, - { - "url": "http://www.jstor.org/action/showPublication?journalCode=rijkbull" - } - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "The Rijksmuseum bulletin", - "Rijks Museum bulletin" - ], - "dimensions": [ - "24 cm" - ] - }, - "sort": [ - 19.373138, - "b23199586" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 47, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b23199586", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2024", - "lte": "2024" - } - ], - "enumerationChronology": [ - "v. 72, no. 1 (2024)" - ], - "enumerationChronology_sort": [ - " 72-2024" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129973537" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 72, no. 1 (2024)", - "urn:barcode:33433129973537" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 72, no. 1 (2024)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129973537", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 08-19" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-19 v. 72, no. 1 (2024)" - ], - "shelfMark_sort": "aJQL 08-19 v. 000072, no. 1 (2024)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "uri": "i40933342" - }, - "sort": [ - " 72-2024" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b23199586", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "v. 71, no. 4 (2023)" - ], - "enumerationChronology_sort": [ - " 71-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433128637521" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 71, no. 4 (2023)", - "urn:barcode:33433128637521" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 71, no. 4 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433128637521", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 08-19" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-19 v. 71, no. 4 (2023)" - ], - "shelfMark_sort": "aJQL 08-19 v. 000071, no. 4 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "uri": "i40738749" - }, - "sort": [ - " 71-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b23199586", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "v. 71, no. 3 (2023)" - ], - "enumerationChronology_sort": [ - " 71-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129967299" - ], - "identifier": [ - "urn:shelfmark:JQL 08-19 v. 71, no. 3 (2023)", - "urn:barcode:33433129967299" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 71, no. 3 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129967299", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 08-19" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-19 v. 71, no. 3 (2023)" - ], - "shelfMark_sort": "aJQL 08-19 v. 000071, no. 3 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "uri": "i40657976" - }, - "sort": [ - " 71-2023" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16872975", - "_score": 19.305777, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Issued By", - "label": "Issued by: Università degli studi di Roma \"La Sapienza,\" Dipartimento di storia dell'architettura, restauro e conservazione dei beni architettonici.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1 (2006)-" - ], - "subjectLiteral_exploded": [ - "Architecture", - "Architecture -- Italy", - "Architecture -- Italy -- History", - "Architecture -- Italy -- History -- Periodicals", - "Architecture -- Periodicals" - ], - "numItemDatesParsed": [ - 2 - ], - "publisherLiteral": [ - "Nuova Argos" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2006 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Colloqui d'architettura." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-12" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "2006" - ], - "idLccn": [ - "2008205269" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Simposio" - ], - "contributorLiteral": [ - "Università degli studi di Roma \"La Sapienza.\" Dipartimento di storia dell'architettura, restauro e conservazione dei beni architettonici." - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "123434107" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-12" - }, - { - "type": "nypl:Bnumber", - "value": "16872975" - }, - { - "type": "nypl:Oclc", - "value": "123434107" - }, - { - "type": "bf:Lccn", - "value": "2008205269" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)123434107" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 1 (2006)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-12" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-12" - } - ], - "physicalLocation": [ - "JQL 08-12" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-12" - ], - "uri": "h1056769" - } - ], - "updatedAt": 1711125378839, - "publicationStatement": [ - "Roma : Nuova Argos, 2006-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-12", - "urn:bnum:16872975", - "urn:oclc:123434107", - "urn:lccn:2008205269", - "urn:identifier:(OCoLC)123434107" - ], - "numCheckinCardItems": [ - 1 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Architecture -- Italy -- History -- Periodicals.", - "Architecture -- Periodicals." - ], - "titleDisplay": [ - "Colloqui d'architettura." - ], - "uri": "b16872975", - "lccClassification": [ - "NA1111 .C64" - ], - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 19.305777, - "b16872975" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16872975", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2006-01-01", - "lte": "2006-01-01" - } - ], - "enumerationChronology": [ - "No. 1 (2006)" - ], - "enumerationChronology_sort": [ - " 1-2006-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-12", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-12" - ], - "shelfMark_sort": "aJQL 08-000012", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1056769-0", - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "volumeRaw": [ - "No. 1" - ] - }, - "sort": [ - " 1-2006-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16872975", - "_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": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "1 (2006)" - ], - "enumerationChronology_sort": [ - " -2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433074089354" - ], - "identifier": [ - "urn:shelfmark:JQL 08-12 1 (2006)", - "urn:barcode:33433074089354" - ], - "identifierV2": [ - { - "value": "JQL 08-12 1 (2006)", - "type": "bf:ShelfMark" - }, - { - "value": "33433074089354", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-12" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-12 1 (2006)" - ], - "shelfMark_sort": "aJQL 08-12 1 (2006)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17726658" - }, - "sort": [ - " -2006" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874020", - "_score": 19.305777, - "_source": { - "extent": [ - "col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: '07; title from title page.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with '07." - ], - "subjectLiteral_exploded": [ - "Asian Contemporary Art Fair", - "Asian Contemporary Art Fair -- Catalogs", - "Art, Asian", - "Art, Asian -- Exhibitions", - "Art", - "Art -- New York (State)", - "Art -- New York (State) -- New York", - "Art -- New York (State) -- New York -- Exhibitions", - "Art, Modern", - "Art, Modern -- 21st century", - "Art, Modern -- 21st century -- Exhibitions" - ], - "numItemDatesParsed": [ - 25 - ], - "publisherLiteral": [ - "Asian Art Works, Inc." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 25 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Asian Contemporary Art Fair : ACAF NY : [catalog]." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-15" - ], - "numItemVolumesParsed": [ - 24 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Asian Contemporary Art Fair." - ], - "idLccn": [ - "2008248228" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Asian Art Works, Inc." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "263685907" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-15" - }, - { - "type": "nypl:Bnumber", - "value": "16874020" - }, - { - "type": "nypl:Oclc", - "value": "263685907" - }, - { - "type": "bf:Lccn", - "value": "2008248228" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)263685907" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 1st (2007)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Arrived" - }, - { - "coverage": "No. 2nd (2008)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 3rd (2009)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 4th (2010)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 5th (2011)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 6th (2012)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 7th (2013)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 8th (2014)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 9th (2015)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 10th (2016)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 11th (2017)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 12th (2018)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 13th (2019)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 14th (2020)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 15th (2021)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 16th (2022)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 17th (2023)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 18th (2024)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 19th (2025)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 20th (2026)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 21st (2027)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 22nd (2028)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 23rd (2029)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - }, - { - "coverage": "No. 24th (2030)", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-15" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(2007)-" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-15" - } - ], - "physicalLocation": [ - "JQL 08-15" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 08-15" - ], - "uri": "h1056773" - } - ], - "updatedAt": 1711468288615, - "publicationStatement": [ - "New York, NY : Asian Art Works, Inc." - ], - "identifier": [ - "urn:shelfmark:JQL 08-15", - "urn:bnum:16874020", - "urn:oclc:263685907", - "urn:lccn:2008248228", - "urn:identifier:(OCoLC)263685907" - ], - "numCheckinCardItems": [ - 24 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Asian Contemporary Art Fair -- Catalogs.", - "Art, Asian -- Exhibitions.", - "Art -- New York (State) -- New York -- Exhibitions.", - "Art, Modern -- 21st century -- Exhibitions." - ], - "titleDisplay": [ - "Asian Contemporary Art Fair : ACAF NY : [catalog]." - ], - "uri": "b16874020", - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "supplementaryContent": [ - { - "label": "ACAF's Web-site.", - "url": "http://www.acafny.com" - } - ], - "titleAlt": [ - "ACAF NY" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 19.305777, - "b16874020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 25, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16874020", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2030-01-01", - "lte": "2030-01-01" - } - ], - "enumerationChronology": [ - "No. 24th (2030)" - ], - "enumerationChronology_sort": [ - " 24-2030-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-15", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-15" - ], - "shelfMark_sort": "aJQL 08-000015", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1056773-23", - "volumeRange": [ - { - "gte": 24, - "lte": 24 - } - ], - "volumeRaw": [ - "No. 24th" - ] - }, - "sort": [ - " 24-2030-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874020", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2029-01-01", - "lte": "2029-01-01" - } - ], - "enumerationChronology": [ - "No. 23rd (2029)" - ], - "enumerationChronology_sort": [ - " 23-2029-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-15", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-15" - ], - "shelfMark_sort": "aJQL 08-000015", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1056773-22", - "volumeRange": [ - { - "gte": 23, - "lte": 23 - } - ], - "volumeRaw": [ - "No. 23rd" - ] - }, - "sort": [ - " 23-2029-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874020", - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2028-01-01", - "lte": "2028-01-01" - } - ], - "enumerationChronology": [ - "No. 22nd (2028)" - ], - "enumerationChronology_sort": [ - " 22-2028-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 08-15", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 08-15" - ], - "shelfMark_sort": "aJQL 08-000015", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1056773-21", - "volumeRange": [ - { - "gte": 22, - "lte": 22 - } - ], - "volumeRaw": [ - "No. 22nd" - ] - }, - "sort": [ - " 22-2028-01-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874738", - "_score": 19.305777, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Latest issue consulted: 9 (2005, 1 dalis).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1-" - ], - "subjectLiteral_exploded": [ - "Lietuvos Dailės muziejus", - "Lietuvos Dailės muziejus -- Periodicals", - "Art, Lithuanian", - "Art, Lithuanian -- Periodicals" - ], - "numItemDatesParsed": [ - 4 - ], - "publisherLiteral": [ - "Muziejus" - ], - "language": [ - { - "id": "lang:lit", - "label": "Lithuanian" - } - ], - "numItemsTotal": [ - 4 - ], - "createdYear": [ - 1996 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Metraštis" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-30" - ], - "numItemVolumesParsed": [ - 4 - ], - "createdString": [ - "1996" - ], - "creatorLiteral": [ - "Lietuvos Dailės muziejus." - ], - "idLccn": [ - "00205100" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1996 - ], - "idOclc": [ - "43317427" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-30" - }, - { - "type": "nypl:Bnumber", - "value": "16874738" - }, - { - "type": "nypl:Oclc", - "value": "43317427" - }, - { - "type": "bf:Lccn", - "value": "00205100" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)43317427" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1-11- ", - "v. 12 (2007)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-30" - } - ], - "physicalLocation": [ - "JQL 08-30" - ], - "location": [ - { - "code": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "shelfMark": [ - "JQL 08-30" - ], - "uri": "h1090803" - } - ], - "updatedAt": 1710982667627, - "publicationStatement": [ - "Vilnius : Muziejus, 1996-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-30", - "urn:bnum:16874738", - "urn:oclc:43317427", - "urn:lccn:00205100", - "urn:identifier:(OCoLC)43317427" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1996" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lietuvos Dailės muziejus -- Periodicals.", - "Art, Lithuanian -- Periodicals." - ], - "titleDisplay": [ - "Metraštis / Lietuvos Dailės muziejus." - ], - "uri": "b16874738", - "lccClassification": [ - "N7255.L57 L54a" - ], - "placeOfPublication": [ - "Vilnius" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 19.305777, - "b16874738" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 4, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16874738", - "_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": "2007", - "lte": "2007" - } - ], - "enumerationChronology": [ - "v. 12 (2007)" - ], - "enumerationChronology_sort": [ - " 12-2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433084525975" - ], - "identifier": [ - "urn:shelfmark:JQL 08-30 v. 12 (2007)", - "urn:barcode:33433084525975" - ], - "identifierV2": [ - { - "value": "JQL 08-30 v. 12 (2007)", - "type": "bf:ShelfMark" - }, - { - "value": "33433084525975", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-30" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-30 v. 12 (2007)" - ], - "shelfMark_sort": "aJQL 08-30 v. 000012 (2007)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "uri": "i24378432" - }, - "sort": [ - " 12-2007" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874738", - "_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": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "v. 11 (2006)" - ], - "enumerationChronology_sort": [ - " 11-2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433084525850" - ], - "identifier": [ - "urn:shelfmark:JQL 08-30 v. 11 (2006)", - "urn:barcode:33433084525850" - ], - "identifierV2": [ - { - "value": "JQL 08-30 v. 11 (2006)", - "type": "bf:ShelfMark" - }, - { - "value": "33433084525850", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-30" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-30 v. 11 (2006)" - ], - "shelfMark_sort": "aJQL 08-30 v. 000011 (2006)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ], - "uri": "i23247778" - }, - "sort": [ - " 11-2006" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874738", - "_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": "2005", - "lte": "2005" - } - ], - "enumerationChronology": [ - "v. 10, dalis 2 (2005)" - ], - "enumerationChronology_sort": [ - " 10-2005" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433084525744" - ], - "identifier": [ - "urn:shelfmark:JQL 08-30 v. 10, dalis 2 (2005)", - "urn:barcode:33433084525744" - ], - "identifierV2": [ - { - "value": "JQL 08-30 v. 10, dalis 2 (2005)", - "type": "bf:ShelfMark" - }, - { - "value": "33433084525744", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-30" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-30 v. 10, dalis 2 (2005)" - ], - "shelfMark_sort": "aJQL 08-30 v. 000010, dalis 2 (2005)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ], - "uri": "i23247777" - }, - "sort": [ - " 10-2005" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061026", - "_score": 19.305777, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "Chiefly in Italian; some articles in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "N. 1 (2007)-" - ], - "subjectLiteral_exploded": [ - "Manifattura Ginori (Sesto Fiorentino, Italy)", - "Manifattura Ginori (Sesto Fiorentino, Italy) -- Periodicals", - "Porcelain, Italian", - "Porcelain, Italian -- Italy", - "Porcelain, Italian -- Italy -- Sesto Fiorentino", - "Porcelain, Italian -- Italy -- Sesto Fiorentino -- Periodicals" - ], - "numItemDatesParsed": [ - 13 - ], - "publisherLiteral": [ - "Ed. Polistampa" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 13 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Quaderni" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-31" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "idLccn": [ - "2008205236" - ], - "idIssn": [ - "1973-9354" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Amici di Doccia." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "224033296" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-31" - }, - { - "type": "nypl:Bnumber", - "value": "17061026" - }, - { - "type": "nypl:Oclc", - "value": "224033296" - }, - { - "type": "bf:Lccn", - "value": "2008205236" - }, - { - "type": "bf:Issn", - "value": "1973-9354" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)224033296" - } - ], - "uniformTitle": [ - "Quaderni (Amici di Doccia)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 1 (2007)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Bound" - }, - { - "coverage": "No. 2 (2008)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Bound" - }, - { - "coverage": "No. 3 (2009)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Bound" - }, - { - "coverage": "No. 4 (2010)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Bound" - }, - { - "coverage": "No. 5 (2011)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Bound" - }, - { - "coverage": "No. 6 (2012)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 7 (2013)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 8 (2014)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9 (2016)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 10 (2017)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11 (2018)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12 (2019)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Expected" - }, - { - "coverage": "No. 13 (2020)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 14 (2021)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Arrived" - }, - { - "coverage": "No. 15 (2022)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-31" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1-11,13", - "Anno 14 (2021)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-31" - } - ], - "physicalLocation": [ - "JQL 08-31" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-31" - ], - "uri": "h1057012" - } - ], - "updatedAt": 1711577156205, - "publicationStatement": [ - "Firenze : Ed. Polistampa, 2007-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-31", - "urn:bnum:17061026", - "urn:oclc:224033296", - "urn:lccn:2008205236", - "urn:issn:1973-9354", - "urn:identifier:(OCoLC)224033296" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Manifattura Ginori (Sesto Fiorentino, Italy) -- Periodicals.", - "Porcelain, Italian -- Italy -- Sesto Fiorentino -- Periodicals." - ], - "titleDisplay": [ - "Quaderni / Amici di Doccia." - ], - "uri": "b17061026", - "lccClassification": [ - "NK4210.M27 Q33" - ], - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 19.305777, - "b17061026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 13, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17061026", - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2021", - "lte": "2021" - } - ], - "enumerationChronology": [ - "Anno 14 (2021)" - ], - "enumerationChronology_sort": [ - " -2021" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433136664426" - ], - "identifier": [ - "urn:shelfmark:JQL 08-31 Anno 14 (2021)", - "urn:barcode:33433136664426" - ], - "identifierV2": [ - { - "value": "JQL 08-31 Anno 14 (2021)", - "type": "bf:ShelfMark" - }, - { - "value": "33433136664426", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-31" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-31 Anno 14 (2021)" - ], - "shelfMark_sort": "aJQL 08-31 Anno 14 (2021)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40179359" - }, - "sort": [ - " -2021" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061026", - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology": [ - "Anno 13 (2020)" - ], - "enumerationChronology_sort": [ - " -2020" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433133822951" - ], - "identifier": [ - "urn:shelfmark:JQL 08-31 Anno 13 (2020)", - "urn:barcode:33433133822951" - ], - "identifierV2": [ - { - "value": "JQL 08-31 Anno 13 (2020)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133822951", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-31" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-31 Anno 13 (2020)" - ], - "shelfMark_sort": "aJQL 08-31 Anno 13 (2020)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i39601798" - }, - "sort": [ - " -2020" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061026", - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology": [ - "Anno 11 (2018)" - ], - "enumerationChronology_sort": [ - " -2018" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121740777" - ], - "identifier": [ - "urn:shelfmark:JQL 08-31 Anno 11 (2018)", - "urn:barcode:33433121740777" - ], - "identifierV2": [ - { - "value": "JQL 08-31 Anno 11 (2018)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121740777", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-31" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-31 Anno 11 (2018)" - ], - "shelfMark_sort": "aJQL 08-31 Anno 11 (2018)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37660392" - }, - "sort": [ - " -2018" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17070222", - "_score": 19.305777, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tzigara-Samurcas, Al. 1872-1952", - "Art historians", - "Art historians -- Romania", - "Art historians -- Romania -- Biography", - "Art museum directors", - "Art museum directors -- Romania", - "Art museum directors -- Romania -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editura \"Grai si Suflet--Cultura Natională\"" - ], - "language": [ - { - "id": "lang:rum", - "label": "Romanian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Memorii" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-24" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1999" - ], - "creatorLiteral": [ - "Tzigara-Samurcas, Al. (Alexandru), 1872-1952." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Colectia \"Memoriale\"" - ], - "contributorLiteral": [ - "Serb, Ioan.", - "Serb, Florica." - ], - "dateStartYear": [ - 1999 - ], - "idOclc": [ - "276778174" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-24" - }, - { - "type": "nypl:Bnumber", - "value": "17070222" - }, - { - "type": "bf:Isbn", - "value": "973954052X" - }, - { - "type": "bf:Isbn", - "value": "9789739540520" - }, - { - "type": "bf:Isbn", - "value": "9739540511" - }, - { - "type": "bf:Isbn", - "value": "9789739540513" - }, - { - "type": "nypl:Oclc", - "value": "276778174" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)276778174" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711516248060, - "publicationStatement": [ - "Bucuresti : Editura \"Grai si Suflet--Cultura Natională\", 1999-" - ], - "idIsbn": [ - "973954052X", - "9789739540520", - "9739540511", - "9789739540513" - ], - "identifier": [ - "urn:shelfmark:JQL 08-24", - "urn:bnum:17070222", - "urn:isbn:973954052X", - "urn:isbn:9789739540520", - "urn:isbn:9739540511", - "urn:isbn:9789739540513", - "urn:oclc:276778174", - "urn:identifier:(OCoLC)276778174" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tzigara-Samurcas, Al. 1872-1952.", - "Art historians -- Romania -- Biography.", - "Art museum directors -- Romania -- Biography." - ], - "titleDisplay": [ - "Memorii / Al. Tzigara-Samurcas ; editie critică de Ioan Serb si Florica Serb ; prefată de Dan Grigorescu." - ], - "uri": "b17070222", - "placeOfPublication": [ - "Bucuresti" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. 1872-1910 -- 2. 1910-1918 -- 3. 1919-1930." - ], - "dimensions": [ - "24 cm." - ], - "idIsbn_clean": [ - "973954052X", - "9789739540520", - "9739540511", - "9789739540513" - ] - }, - "sort": [ - 19.305777, - "b17070222" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17070222", - "_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" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433082744172" - ], - "identifier": [ - "urn:shelfmark:JQL 08-24 v. 2", - "urn:barcode:33433082744172" - ], - "identifierV2": [ - { - "value": "JQL 08-24 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433082744172", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 08-24" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-24 v. 2" - ], - "shelfMark_sort": "aJQL 08-24 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17767291" - }, - "sort": [ - " 2-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14921492", - "_score": 19.179506, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: 1990-1993.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Städtische Galerie im Lenbachhaus München", - "Städtische Galerie im Lenbachhaus München -- Periodicals", - "Art museums", - "Art museums -- Exhibitions", - "Art museums -- Exhibitions -- Germany", - "Art museums -- Exhibitions -- Germany -- Periodicals" - ], - "numItemDatesParsed": [ - 4 - ], - "publisherLiteral": [ - "Städtische Galerie im Lenbachhaus" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 12 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Jahresbericht." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 05-18" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "creatorLiteral": [ - "Städtische Galerie im Lenbachhaus München." - ], - "idLccn": [ - "96652074" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "34509862" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 05-18" - }, - { - "type": "nypl:Bnumber", - "value": "14921492" - }, - { - "type": "nypl:Oclc", - "value": "34509862" - }, - { - "type": "bf:Lccn", - "value": "96652074" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)34509862" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S070000001" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "2001 - 2002", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Unavailable" - }, - { - "coverage": "2003", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - }, - { - "coverage": "Day 0 of 2007 - Day 0 of 2009", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 05-18" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "2001/2002-", - "2007" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 05-18" - } - ], - "physicalLocation": [ - "JQL 05-18" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 05-18" - ], - "uri": "h1087807" - } - ], - "updatedAt": 1711524515188, - "publicationStatement": [ - "München : Städtische Galerie im Lenbachhaus" - ], - "identifier": [ - "urn:shelfmark:JQL 05-18", - "urn:bnum:14921492", - "urn:oclc:34509862", - "urn:lccn:96652074", - "urn:identifier:(OCoLC)34509862", - "urn:identifier:(WaOLN)S070000001" - ], - "numCheckinCardItems": [ - 10 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Städtische Galerie im Lenbachhaus München -- Periodicals.", - "Art museums -- Exhibitions -- Germany -- Periodicals." - ], - "titleDisplay": [ - "Jahresbericht." - ], - "uri": "b14921492", - "lccClassification": [ - "N2339.S7 A3" - ], - "placeOfPublication": [ - "München" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 19.179506, - "b14921492" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 12, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14921492", - "_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": "2007", - "lte": "2009" - } - ], - "enumerationChronology": [ - "(2007-09)" - ], - "enumerationChronology_sort": [ - " -2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433088868009" - ], - "identifier": [ - "urn:shelfmark:JQL 05-18 (2007-09)", - "urn:barcode:33433088868009" - ], - "identifierV2": [ - { - "value": "JQL 05-18 (2007-09)", - "type": "bf:ShelfMark" - }, - { - "value": "33433088868009", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 05-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 05-18 (2007-09)" - ], - "shelfMark_sort": "aJQL 05-18 (2007-09)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i25864557" - }, - "sort": [ - " -2007" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14921492", - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2003-01-01", - "lte": "2003-01-01" - } - ], - "enumerationChronology": [ - "2003" - ], - "enumerationChronology_sort": [ - " -2003-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 05-18", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 05-18" - ], - "shelfMark_sort": "aJQL 05-000018", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1087807-2" - }, - "sort": [ - " -2003-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14921492", - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2002-01-01" - } - ], - "enumerationChronology": [ - "2001 - 2002" - ], - "enumerationChronology_sort": [ - " -2001-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 05-18", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 05-18" - ], - "shelfMark_sort": "aJQL 05-000018", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1087807-0" - }, - "sort": [ - " -2001-01-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18844289", - "_score": 19.179506, - "_source": { - "extent": [ - "v. <1-3> : ill. ;" - ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "Москва ; Санкт-Петербург : Издательский дом \"Коло\", 2010-<2013>" - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "Москва ; Санкт-Петербург" - }, - { - "fieldName": "tableOfContents", - "index": 0, - "value": "вып. 1. Новые исследования и открытия -- вып. 2-3. Новые материалы и открытия." - }, - { - "fieldName": "note", - "index": 0, - "value": "At head of title, vol. 1- : Роcсийская академия архитектуры и строительных наук. Научно-исследовательский институт теории и истории архитектуры и градостроительства." - } - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title, vol. 1- : Rossiĭskai︠a︡ akademii︠a︡ arkhitektury i stroitelʹnykh nauk. Nauchno-issledovatelʹskiĭ institut teorii i istorii arkhitektury i gradostroitelʹstva.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Building, Wooden", - "Building, Wooden -- Russia (Federation)", - "Wooden churches", - "Wooden churches -- Russia (Federation)", - "Stave churches", - "Stave churches -- Russia (Federation)", - "Vernacular architecture", - "Vernacular architecture -- Russia (Federation)", - "Russia (Federation)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Izdatelʹskiĭ dom \"Kolo\"" - ], - "parallelPublisherLiteral": [ - "Издательский дом \"Коло\"" - ], - "language": [ - { - "id": "lang:rus", - "label": "Russian" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2010 - ], - "dateEndString": [ - "9999" - ], - "parallelTitle": [ - "Деревянное зодчество" - ], - "title": [ - "Derevi︠a︡nnoe zodchestvo" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 10-18" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2010" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bodė, A. B. (Andreĭ Borisovich)", - "Nauchno-issledovatelʹskiĭ institut teorii i istorii arkhitektury i gradostroitelʹstva (Rossiĭskai︠a︡ akademii︠a︡ arkhitektury i stroitelʹnykh nauk)" - ], - "dateStartYear": [ - 2010 - ], - "idOclc": [ - "698194166" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 10-18" - }, - { - "type": "nypl:Bnumber", - "value": "18844289" - }, - { - "type": "bf:Isbn", - "value": "9785901841723 (vyp. 1)" - }, - { - "type": "bf:Isbn", - "value": "5901841727 (vyp. 1)" - }, - { - "type": "bf:Isbn", - "value": "9785901841884 (vyp. 2)" - }, - { - "type": "bf:Isbn", - "value": "5901841883 (vyp. 2)" - }, - { - "type": "bf:Isbn", - "value": "9785446200054 (vyp. 3)" - }, - { - "type": "bf:Isbn", - "value": "5446200055 (vyp. 3)" - }, - { - "type": "nypl:Oclc", - "value": "698194166" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)698194166" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711423819083, - "publicationStatement": [ - "Moskva ; Sankt-Peterburg : Izdatelʹskiĭ dom \"Kolo\", 2010-<2013>" - ], - "idIsbn": [ - "9785901841723 (vyp. 1)", - "5901841727 (vyp. 1)", - "9785901841884 (vyp. 2)", - "5901841883 (vyp. 2)", - "9785446200054 (vyp. 3)", - "5446200055 (vyp. 3)" - ], - "identifier": [ - "urn:shelfmark:JQL 10-18", - "urn:bnum:18844289", - "urn:isbn:9785901841723 (vyp. 1)", - "urn:isbn:5901841727 (vyp. 1)", - "urn:isbn:9785901841884 (vyp. 2)", - "urn:isbn:5901841883 (vyp. 2)", - "urn:isbn:9785446200054 (vyp. 3)", - "urn:isbn:5446200055 (vyp. 3)", - "urn:oclc:698194166", - "urn:identifier:(OCoLC)698194166" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Building, Wooden -- Russia (Federation)", - "Building, Wooden.", - "Wooden churches -- Russia (Federation)", - "Wooden churches.", - "Stave churches -- Russia (Federation)", - "Stave churches.", - "Vernacular architecture -- Russia (Federation)", - "Vernacular architecture.", - "Russia (Federation)" - ], - "titleDisplay": [ - "Derevi︠a︡nnoe zodchestvo / [redkollegii︠a︡, A.B. Bodė (otv. red.) ... et al.]." - ], - "uri": "b18844289", - "lccClassification": [ - "NA4110 .D47 2010" - ], - "parallelContributorLiteral": [ - "Бодэ, А. Б. (Андрей Борисович)", - "Научно-исследовательский институт теории и истории архитектуры и градостроительства (Российская академия архитектуры и строительных наук)" - ], - "parallelTitleDisplay": [ - "Деревянное зодчество / [редколлегия, А.Б. Бодэ (отв. ред.) ... еt al.]." - ], - "placeOfPublication": [ - "Moskva ; Sankt-Peterburg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "vyp. 1. Novye issledovanii︠a︡ i otkrytii︠a︡ -- vyp. 2-3. Novye materialy i otkrytii︠a︡." - ], - "dimensions": [ - "22 cm" - ], - "idIsbn_clean": [ - "97859018417231", - "59018417271", - "97859018418842", - "59018418832", - "97854462000543", - "54462000553" - ] - }, - "sort": [ - 19.179506, - "b18844289" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18844289", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "enumerationChronology": [ - "v. 3" - ], - "enumerationChronology_sort": [ - " 3-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433112707983" - ], - "identifier": [ - "urn:shelfmark:JQL 10-18 v. 3", - "urn:barcode:33433112707983" - ], - "identifierV2": [ - { - "value": "JQL 10-18 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433112707983", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 10-18" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 10-18 v. 3" - ], - "shelfMark_sort": "aJQL 10-18 v. 000003", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "uri": "i32242168" - }, - "sort": [ - " 3-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b18844289", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433090571609" - ], - "identifier": [ - "urn:shelfmark:JQL 10-18 v. 1", - "urn:barcode:33433090571609" - ], - "identifierV2": [ - { - "value": "JQL 10-18 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433090571609", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 10-18" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 10-18 v. 1" - ], - "shelfMark_sort": "aJQL 10-18 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i26238490" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21496833", - "_score": 19.179506, - "_source": { - "extent": [ - "6 v. : col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A PictureBox book.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Some issues also have distinctive titles.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Imprint varies.", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Issue 6 also called 7 on cover.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Final issue accompanied by unnumbered DVD with title: Problem solvers.", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Also issued online.", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Published in association with PictureBox, Inc., <2005>-2008.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on: 4, copyrighted 2005; title from colophon.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 4, copyrighted 2005.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Comic books, strips, etc.", - "Comic books, strips, etc. -- United States", - "Comic books, strips, etc. -- United States -- Periodicals", - "United States" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "Gingko Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 200 - ], - "dateEndString": [ - "2008" - ], - "title": [ - "The Ganzfeld." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 18-3" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "200" - ], - "idLccn": [ - "2005237709" - ], - "idIssn": [ - "1933-4389" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "PictureBox, Inc." - ], - "dateStartYear": [ - 200 - ], - "idOclc": [ - "49732554" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 18-3" - }, - { - "type": "nypl:Bnumber", - "value": "21496833" - }, - { - "type": "nypl:Oclc", - "value": "49732554" - }, - { - "type": "bf:Lccn", - "value": "2005237709" - }, - { - "type": "bf:Issn", - "value": "1933-4389" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)49732554" - } - ], - "dateEndYear": [ - 2008 - ], - "updatedAt": 1711452800270, - "publicationStatement": [ - "Corte Madora, CA : Gingko Press" - ], - "genreForm": [ - "Comics (Graphic works)", - "Periodicals." - ], - "identifier": [ - "urn:shelfmark:JQL 18-3", - "urn:bnum:21496833", - "urn:oclc:49732554", - "urn:lccn:2005237709", - "urn:issn:1933-4389", - "urn:identifier:(OCoLC)49732554" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "200" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Comic books, strips, etc. -- United States -- Periodicals.", - "United States." - ], - "titleDisplay": [ - "The Ganzfeld." - ], - "uri": "b21496833", - "lccClassification": [ - "PN6700 .G36" - ], - "placeOfPublication": [ - "Corte Madora, CA" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "The Ganzfeld" - ], - "dimensions": [ - "25 cm", - "25 cm." - ] - }, - "sort": [ - 19.179506, - "b21496833" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21496833", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology": [ - "4 (2005)" - ], - "enumerationChronology_sort": [ - " -2005" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433122302064" - ], - "identifier": [ - "urn:shelfmark:JQL 18-3 4 (2005)", - "urn:barcode:33433122302064" - ], - "identifierV2": [ - { - "value": "JQL 18-3 4 (2005)", - "type": "bf:ShelfMark" - }, - { - "value": "33433122302064", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 18-3" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 18-3 4 (2005)" - ], - "shelfMark_sort": "aJQL 18-3 4 (2005)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i35876076" - }, - "sort": [ - " -2005" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11074746", - "_score": 19.11943, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Only issue n. 70 published in 2008.", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Suspended following n. 71 (2009). Resumed with nuova serie, n. 01 (nov. 2016).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Italian; summaries in English.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: nuova serie, n. 06 (apr. 2019).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "No. 1/2 (apr.-ag. 1985)-" - ], - "subjectLiteral_exploded": [ - "Architecture", - "Architecture -- Conservation and restoration", - "Architecture -- Conservation and restoration -- Italy", - "Architecture -- Conservation and restoration -- Italy -- Periodicals", - "Buildings", - "Buildings -- Remodeling for other use", - "Buildings -- Remodeling for other use -- Italy", - "Buildings -- Remodeling for other use -- Italy -- Periodicals", - "Italy" - ], - "numItemDatesParsed": [ - 36 - ], - "publisherLiteral": [ - "R. De Nicola" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 36 - ], - "createdYear": [ - 1985 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Metamorfosi : M." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 11-18" - ], - "numItemVolumesParsed": [ - 36 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86649715" - ], - "idIssn": [ - "1590-1394" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1985 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "14369861" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 11-18" - }, - { - "type": "nypl:Bnumber", - "value": "11074746" - }, - { - "type": "nypl:Oclc", - "value": "14369861" - }, - { - "type": "bf:Lccn", - "value": "86649715" - }, - { - "type": "bf:Issn", - "value": "1590-1394" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)14369861" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)175308315" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 1 (Nov. 2016)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 2 (Sep. 2017)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 3 (Dec. 2017)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 4 (Sep. 2018)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 5 (Nov. 2018)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 6 (Apr. 2019)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 7 (May. 2020)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 8 (Oct. 2020)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9/10 (Sep. 2021)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11 (Jul. 2022)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12 (Sep. 2022)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-18" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "n.s., n. 01 (nov. 2016)-11(2022)-", - "1/2(1985)-64(2007), 66(2007), 68/69(2007)-71(2009)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 11-18" - } - ], - "physicalLocation": [ - "JQL 11-18" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 11-18" - ], - "uri": "h1003728" - } - ], - "updatedAt": 1711485766881, - "publicationStatement": [ - "[Roma] : R. De Nicola, 1985-" - ], - "genreForm": [ - "Periodicals." - ], - "identifier": [ - "urn:shelfmark:JQL 11-18", - "urn:bnum:11074746", - "urn:oclc:14369861", - "urn:lccn:86649715", - "urn:issn:1590-1394", - "urn:identifier:(OCoLC)14369861", - "urn:identifier:(OCoLC)175308315" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Architecture -- Conservation and restoration -- Italy -- Periodicals.", - "Buildings -- Remodeling for other use -- Italy -- Periodicals.", - "Architecture -- Conservation and restoration.", - "Buildings -- Remodeling for other use.", - "Italy." - ], - "titleDisplay": [ - "Metamorfosi : M." - ], - "uri": "b11074746", - "lccClassification": [ - "NA109.I8 M48" - ], - "placeOfPublication": [ - "[Roma]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "M", - "Metamorfosi, quaderni di architettura" - ], - "dimensions": [ - "25 cm" - ] - }, - "sort": [ - 19.11943, - "b11074746" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 36, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11074746", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "no. 71 (2009)" - ], - "enumerationChronology_sort": [ - " 71-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121037372" - ], - "identifier": [ - "urn:shelfmark:JQL 11-18 no. 71 (2009)", - "urn:barcode:33433121037372" - ], - "identifierV2": [ - { - "value": "JQL 11-18 no. 71 (2009)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121037372", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-18" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-18 no. 71 (2009)" - ], - "shelfMark_sort": "aJQL 11-18 no. 000071 (2009)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "uri": "i36547916" - }, - "sort": [ - " 71-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11074746", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology": [ - "no. 70 (2008)" - ], - "enumerationChronology_sort": [ - " 70-2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121037380" - ], - "identifier": [ - "urn:shelfmark:JQL 11-18 no. 70 (2008)", - "urn:barcode:33433121037380" - ], - "identifierV2": [ - { - "value": "JQL 11-18 no. 70 (2008)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121037380", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-18" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-18 no. 70 (2008)" - ], - "shelfMark_sort": "aJQL 11-18 no. 000070 (2008)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "uri": "i36547915" - }, - "sort": [ - " 70-2008" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11074746", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology": [ - "no. 68-69 (Sept-Dec 2007)" - ], - "enumerationChronology_sort": [ - " 68-2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121037398" - ], - "identifier": [ - "urn:shelfmark:JQL 11-18 no. 68-69 (Sept-Dec 2007)", - "urn:barcode:33433121037398" - ], - "identifierV2": [ - { - "value": "JQL 11-18 no. 68-69 (Sept-Dec 2007)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121037398", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-18" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-18 no. 68-69 (Sept-Dec 2007)" - ], - "shelfMark_sort": "aJQL 11-18 no. 000068-69 (Sept-Dec 2007)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 69 - } - ], - "uri": "i36547914" - }, - "sort": [ - " 68-2007" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21485411", - "_score": 19.11943, - "_source": { - "extent": [ - "v. : chiefly ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published by Sheperd & Derom Galleries, <1999->", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on: Fall exhibition 1994; title from title page.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: Spring exhibition 2005.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "1800-1899", - "Art, European", - "Art, European -- 19th century", - "Art, European -- 19th century -- Exhibitions", - "Art, European -- 19th century -- Exhibitions -- Periodicals", - "Art, European -- Exhibitions" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "Shepherd Gallery" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Nineteenth century European paintings, drawings and sculpture." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 18-1" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shepherd Gallery.", - "Shepherd & Derom Galleries." - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "70169230" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 18-1" - }, - { - "type": "nypl:Bnumber", - "value": "21485411" - }, - { - "type": "nypl:Oclc", - "value": "70169230" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)70169230" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711118599366, - "publicationStatement": [ - "New York, N.Y. : Shepherd Gallery" - ], - "genreForm": [ - "Periodicals." - ], - "identifier": [ - "urn:shelfmark:JQL 18-1", - "urn:bnum:21485411", - "urn:oclc:70169230", - "urn:identifier:(OCoLC)70169230" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "1800-1899", - "Art, European -- 19th century -- Exhibitions -- Periodicals.", - "Art, European -- Exhibitions." - ], - "titleDisplay": [ - "Nineteenth century European paintings, drawings and sculpture." - ], - "uri": "b21485411", - "placeOfPublication": [ - "New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm" - ] - }, - "sort": [ - 19.11943, - "b21485411" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21485411", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology": [ - "spring 2005" - ], - "enumerationChronology_sort": [ - " -2005" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433105583011" - ], - "identifier": [ - "urn:shelfmark:JQL 18-1 spring 2005", - "urn:barcode:33433105583011" - ], - "identifierV2": [ - { - "value": "JQL 18-1 spring 2005", - "type": "bf:ShelfMark" - }, - { - "value": "33433105583011", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 18-1" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 18-1 spring 2005" - ], - "shelfMark_sort": "aJQL 18-1 spring 002005", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i35823159" - }, - "sort": [ - " -2005" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11660630", - "_score": 17.373138, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Issued By", - "label": "Journal of the Historical Society of Early American Decoration, inc., and the Esther Stevens Brazer Guild.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "v. 1- 0ct. 1946-" - ], - "subjectLiteral_exploded": [ - "Decoration and ornament", - "Decoration and ornament -- Periodicals", - "Decoration and ornament -- United States", - "Decoration and ornament -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 13 - ], - "publisherLiteral": [ - "Historical Society of Early American Decoration" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 13 - ], - "createdYear": [ - 1946 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "The Decorator." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-25" - ], - "numItemVolumesParsed": [ - 12 - ], - "createdString": [ - "1946" - ], - "idLccn": [ - "53033867" - ], - "idIssn": [ - "0277-1160" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Historical Society of Early American Decoration.", - "Esther Stevens Brazer Guild." - ], - "dateStartYear": [ - 1946 - ], - "donor": [ - "Gift of William Randolph Hearst Foundation" - ], - "idOclc": [ - "4347995", - "NYPG93-S78" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-25" - }, - { - "type": "nypl:Bnumber", - "value": "11660630" - }, - { - "type": "nypl:Oclc", - "value": "4347995" - }, - { - "type": "nypl:Oclc", - "value": "NYPG93-S78" - }, - { - "type": "bf:Lccn", - "value": "53033867" - }, - { - "type": "bf:Issn", - "value": "0277-1160" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0344583" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4347995" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Fall 2015", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "Summer 2016", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "Spring 2017 - Fall 2019", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Expected" - }, - { - "coverage": "No. 75 (Fall 2019)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "No. 76 (Fall 2021)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "No. 77 (Fall 2022)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "No. 78 (Spring 2023)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "No. 79 (Fall 2023)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Arrived" - }, - { - "coverage": "No. 80 (Spring 2024)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-25" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "16(1961/62)-Sum(2016)-", - "v. 77 (2022-23)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-25" - } - ], - "physicalLocation": [ - "JQL 08-25" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-25" - ], - "uri": "h1057750" - } - ], - "updatedAt": 1711633580350, - "publicationStatement": [ - "Glens Falls, N.Y. [etc.] Historical Society of Early American Decoration, 1946-" - ], - "identifier": [ - "urn:shelfmark:JQL 08-25", - "urn:bnum:11660630", - "urn:oclc:4347995", - "urn:oclc:NYPG93-S78", - "urn:lccn:53033867", - "urn:issn:0277-1160", - "urn:identifier:(WaOLN)nyp0344583", - "urn:identifier:(OCoLC)4347995" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1946" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Decoration and ornament -- Periodicals.", - "Decoration and ornament -- United States -- Periodicals." - ], - "titleDisplay": [ - "The Decorator." - ], - "uri": "b11660630", - "lccClassification": [ - "NK1160 .H533" - ], - "placeOfPublication": [ - "Glens Falls, N.Y. [etc.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Decorator (Glens Falls, N.Y.)", - "The Decorator (Glens Falls, N.Y.)" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 17.373138, - "b11660630" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 13, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11660630", - "_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": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "v. 77 (Fal 2022)" - ], - "enumerationChronology_sort": [ - " 77-2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433133819312" - ], - "identifier": [ - "urn:shelfmark:JQL 08-25 v. 77 (Fal 2022)", - "urn:barcode:33433133819312" - ], - "identifierV2": [ - { - "value": "JQL 08-25 v. 77 (Fal 2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133819312", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-25" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-25 v. 77 (Fal 2022)" - ], - "shelfMark_sort": "aJQL 08-25 v. 000077 (Fal 2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "uri": "i40134141" - }, - "sort": [ - " 77-2022" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11660630", - "_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. 76 (Fall 2021)" - ], - "enumerationChronology_sort": [ - " 76-2021" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433072300001" - ], - "identifier": [ - "urn:shelfmark:JQL 08-25 v. 76 (Fall 2021)", - "urn:barcode:33433072300001" - ], - "identifierV2": [ - { - "value": "JQL 08-25 v. 76 (Fall 2021)", - "type": "bf:ShelfMark" - }, - { - "value": "33433072300001", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-25" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-25 v. 76 (Fall 2021)" - ], - "shelfMark_sort": "aJQL 08-25 v. 000076 (Fall 2021)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "uri": "i39175570" - }, - "sort": [ - " 76-2021" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11660630", - "_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": "2019", - "lte": "2019" - } - ], - "enumerationChronology": [ - "v. 75 (fall 2019)" - ], - "enumerationChronology_sort": [ - " 75-2019" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076528771" - ], - "identifier": [ - "urn:shelfmark:JQL 08-25 v. 75 (fall 2019)", - "urn:barcode:33433076528771" - ], - "identifierV2": [ - { - "value": "JQL 08-25 v. 75 (fall 2019)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076528771", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-25" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-25 v. 75 (fall 2019)" - ], - "shelfMark_sort": "aJQL 08-25 v. 000075 (fall 2019)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "uri": "i38877441" - }, - "sort": [ - " 75-2019" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11800305", - "_score": 17.373138, - "_source": { - "extent": [ - "17 v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Published by the Center under it later name, Bard Graduate Center for Studies in the Decorative Arts, Design, and Culture, -2009/2010.", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "\"List of contents 1993-2009\" in v. 17, no. 1.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1, no. 1 (fall 1993)-v. 17, no. 1 (fall/winter 2009/2010)." - ], - "subjectLiteral_exploded": [ - "Decorative arts", - "Decorative arts -- Periodicals" - ], - "numItemDatesParsed": [ - 16 - ], - "publisherLiteral": [ - "Bard Graduate Center for Studies in the Decorative Arts" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 16 - ], - "createdYear": [ - 1993 - ], - "dateEndString": [ - "2010" - ], - "title": [ - "Studies in the decorative arts." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-7" - ], - "numItemVolumesParsed": [ - 16 - ], - "createdString": [ - "1993" - ], - "idLccn": [ - "94641869" - ], - "idIssn": [ - "1069-8825" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bard Graduate Center for Studies in the Decorative Arts.", - "Bard Graduate Center for Studies in the Decorative Arts, Design, and Culture." - ], - "dateStartYear": [ - 1993 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "28177905" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-7" - }, - { - "type": "nypl:Bnumber", - "value": "11800305" - }, - { - "type": "nypl:Oclc", - "value": "28177905" - }, - { - "type": "bf:Lccn", - "value": "94641869" - }, - { - "type": "bf:Issn", - "value": "1069-8825" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)28177905" - } - ], - "dateEndYear": [ - 2010 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1993/94)-17:1(2010)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-7" - } - ], - "physicalLocation": [ - "JQL 08-7" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-7" - ], - "uri": "h1019080" - } - ], - "updatedAt": 1711095044266, - "publicationStatement": [ - "New York, NY : Bard Graduate Center for Studies in the Decorative Arts, c1993-c2009." - ], - "identifier": [ - "urn:shelfmark:JQL 08-7", - "urn:bnum:11800305", - "urn:oclc:28177905", - "urn:lccn:94641869", - "urn:issn:1069-8825", - "urn:identifier:(OCoLC)28177905" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1993" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Decorative arts -- Periodicals." - ], - "titleDisplay": [ - "Studies in the decorative arts." - ], - "uri": "b11800305", - "lccClassification": [ - "NK1 .S78" - ], - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Stud. decor. arts", - "Studies in the decorative arts", - "Decorative arts" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 17.373138, - "b11800305" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 16, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11800305", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2010" - } - ], - "enumerationChronology": [ - "v. 17, no. 1 (Fall-Win 2009-2010)" - ], - "enumerationChronology_sort": [ - " 17-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433103931089" - ], - "identifier": [ - "urn:shelfmark:JQL 08-7 v. 17, no. 1 (Fall-Win 2009-2010)", - "urn:barcode:33433103931089" - ], - "identifierV2": [ - { - "value": "JQL 08-7 v. 17, no. 1 (Fall-Win 2009-2010)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103931089", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-7" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-7 v. 17, no. 1 (Fall-Win 2009-2010)" - ], - "shelfMark_sort": "aJQL 08-7 v. 000017, no. 1 (Fall-Win 2009-2010)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 17, - "lte": 17 - } - ], - "uri": "i29106550" - }, - "sort": [ - " 17-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11800305", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "v. 16, no. 2 (Spr-Sum 2009)" - ], - "enumerationChronology_sort": [ - " 16-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433103931071" - ], - "identifier": [ - "urn:shelfmark:JQL 08-7 v. 16, no. 2 (Spr-Sum 2009)", - "urn:barcode:33433103931071" - ], - "identifierV2": [ - { - "value": "JQL 08-7 v. 16, no. 2 (Spr-Sum 2009)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103931071", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-7" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-7 v. 16, no. 2 (Spr-Sum 2009)" - ], - "shelfMark_sort": "aJQL 08-7 v. 000016, no. 2 (Spr-Sum 2009)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 16 - } - ], - "uri": "i29106549" - }, - "sort": [ - " 16-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11800305", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2009" - } - ], - "enumerationChronology": [ - "v. 16, no. 1 (Fall-Win 2008-2009)" - ], - "enumerationChronology_sort": [ - " 16-2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433103931063" - ], - "identifier": [ - "urn:shelfmark:JQL 08-7 v. 16, no. 1 (Fall-Win 2008-2009)", - "urn:barcode:33433103931063" - ], - "identifierV2": [ - { - "value": "JQL 08-7 v. 16, no. 1 (Fall-Win 2008-2009)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103931063", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-7" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-7 v. 16, no. 1 (Fall-Win 2008-2009)" - ], - "shelfMark_sort": "aJQL 08-7 v. 000016, no. 1 (Fall-Win 2008-2009)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 16 - } - ], - "uri": "i29106548" - }, - "sort": [ - " 16-2008" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16796645", - "_score": 17.373138, - "_source": { - "extent": [ - "v. : ill. (mostly color) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Con el auspicio de FONSAL/Quito\"--t.p. verso.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Ecuador", - "Art -- Ecuador -- History", - "Christianity and art", - "Christianity and art -- Catholic Church", - "Architecture", - "Architecture -- Ecuador", - "Architecture -- Ecuador -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trama" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2007 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Contribuciones a la historia del arte en el Ecuador" - ], - "shelfMark": [ - "JQL 08-16" - ], - "numItemVolumesParsed": [ - 2 - ], - "creatorLiteral": [ - "Navarro, José Gabriel, 1881-1965." - ], - "createdString": [ - "2007" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Fondo de Salvamento del Patrimonio Cultural de Quito." - ], - "dateStartYear": [ - 2007 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-16" - }, - { - "type": "nypl:Bnumber", - "value": "16796645" - }, - { - "type": "bf:Isbn", - "value": "9789978300640 (set)" - }, - { - "type": "bf:Isbn", - "value": "9978300643 (set)" - }, - { - "type": "bf:Isbn", - "value": "9789978300657 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "9978300651 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "9789978300664 (v. 2)" - }, - { - "type": "bf:Isbn", - "value": "997830066X (v. 2)" - }, - { - "type": "bf:Isbn", - "value": "9789978300671 (v. 3)" - }, - { - "type": "bf:Isbn", - "value": "9978300678 (v. 3)" - }, - { - "type": "bf:Isbn", - "value": "9789978300688 (v. 4)" - }, - { - "type": "bf:Isbn", - "value": "9978300686 (v. 4)" - }, - { - "type": "nypl:Oclc", - "value": "157000709" - }, - { - "type": "nypl:Oclc", - "value": "157000709" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)157000709" - } - ], - "idOclc": [ - "157000709" - ], - "holdings": [], - "updatedAt": 1671736942918, - "publicationStatement": [ - "Quito : Trama, 2007." - ], - "identifier": [ - "urn:bnum:16796645", - "urn:isbn:9789978300640 (set)", - "urn:isbn:9978300643 (set)", - "urn:isbn:9789978300657 (v. 1)", - "urn:isbn:9978300651 (v. 1)", - "urn:isbn:9789978300664 (v. 2)", - "urn:isbn:997830066X (v. 2)", - "urn:isbn:9789978300671 (v. 3)", - "urn:isbn:9978300678 (v. 3)", - "urn:isbn:9789978300688 (v. 4)", - "urn:isbn:9978300686 (v. 4)", - "urn:oclc:157000709", - "urn:undefined:(OCoLC)157000709" - ], - "idIsbn": [ - "9789978300640 (set)", - "9978300643 (set)", - "9789978300657 (v. 1)", - "9978300651 (v. 1)", - "9789978300664 (v. 2)", - "997830066X (v. 2)", - "9789978300671 (v. 3)", - "9978300678 (v. 3)", - "9789978300688 (v. 4)", - "9978300686 (v. 4)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Ecuador -- History.", - "Christianity and art -- Catholic Church.", - "Architecture -- Ecuador -- History." - ], - "titleDisplay": [ - "Contribuciones a la historia del arte en el Ecuador / José Gabriel Navarro." - ], - "uri": "b16796645", - "lccClassification": [ - "F3709.7 .N47 2006" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Quito" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Arte pre-histórico ecuatoriano. Cultura artística de España al tiempo de la conquista de América. El arte español en el Nuevo Mundo. Formación y excelencia del arte colonial en Quito. El arte colonial en las fundaciones franciscanas -- v. 2. El arte en las fundaciones mercedarias. La basílica y el convento de la Merced. La iglesia y el convento de la recolección del tejar -- v. 3. El arte en las fundaciones de los conventos de Santo Domingo. El antiguo colegio de San Fernando (hoy los Sagrados Corazones). La Recoleta. San Agustín. Santa Catalina. La Concepción. Santa Clara y los dos monasterios de Carmelitas -- v. 4. La Compañia. La Catedral. San Sebastián. La Capilla de la Virgen del Consuelo. El Sagrario. San Roque y Santa Bárbara. El Hospital. San Blas. San Marcos. La Capilla del Belén. La Capilla del Robo." - ], - "idIsbn_clean": [ - "9789978300640", - "9978300643", - "97899783006571", - "99783006511", - "97899783006642", - "997830066X2", - "97899783006713", - "99783006783", - "97899783006884", - "99783006864" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 17.373138, - "b16796645" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16796645", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i29628003", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-16 v. 3-4" - ], - "identifierV2": [ - { - "value": "JQL 08-16 v. 3-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105334035" - } - ], - "enumerationChronology": [ - "v. 3-4" - ], - "physicalLocation": [ - "JQL 08-16" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433105334035" - ], - "idBarcode": [ - "33433105334035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-16 v. 000003-4" - }, - "sort": [ - " 3-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16796645", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i29627818", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-16 v. 1-2" - ], - "identifierV2": [ - { - "value": "JQL 08-16 v. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433082660626" - } - ], - "enumerationChronology": [ - "v. 1-2" - ], - "physicalLocation": [ - "JQL 08-16" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433082660626" - ], - "idBarcode": [ - "33433082660626" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-16 v. 000001-2" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16848834", - "_score": 17.373138, - "_source": { - "extent": [ - "2 v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions chiefly in Italian with one each in English, French and Spanish.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sculpture, Baroque", - "Sculpture, Baroque -- Italy, Southern", - "Sculpture, Baroque -- Italy, Southern -- Congresses", - "Sculpture, Renaissance", - "Sculpture, Renaissance -- Italy. Southern", - "Sculpture, Renaissance -- Italy. Southern -- Congresses", - "Sculpture, Renaissance -- italy", - "Sculpture, Renaissance -- italy -- Congresses" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "M. Congedo" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2007 - ], - "title": [ - "La scultura meridionale in età moderna nei suoi rapporti con la circolazione mediterranea : atti del Convegno internazionale di studi \"La scultura meridionale in età moderna nei suoi rapporti con la circolazione mediterranea,\" : Lecce, 9-10-11 giugno 2004" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-8" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Convengo internazionale di studi \"La scultura meridionale in età moderna nei suoi rapporti con la circolazione mediterranea,\" (2004 : Lecce, Italy)" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Saggi e testi / Università del Salento, Dipartimento dei beni delle arti e della storia ; 34-35" - ], - "contributorLiteral": [ - "Gaeta, Letizia." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "225997361", - "0225997361", - "it" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-8" - }, - { - "type": "nypl:Bnumber", - "value": "16848834" - }, - { - "type": "bf:Isbn", - "value": "9788880867630 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "9788880867647 (v. 2)" - }, - { - "type": "nypl:Oclc", - "value": "225997361" - }, - { - "type": "nypl:Oclc", - "value": "0225997361" - }, - { - "type": "nypl:Oclc", - "value": "it" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)0225997361" - } - ], - "uniformTitle": [ - "Saggi e testi (Università del Salento. Dipartimento dei beni delle arti e della storia) ; 34-35." - ], - "updatedAt": 1710992071315, - "publicationStatement": [ - "Galatina (Lecce) : M. Congedo, c2007." - ], - "idIsbn": [ - "9788880867630 (v. 1)", - "9788880867647 (v. 2)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-8", - "urn:bnum:16848834", - "urn:isbn:9788880867630 (v. 1)", - "urn:isbn:9788880867647 (v. 2)", - "urn:oclc:225997361", - "urn:oclc:0225997361", - "urn:oclc:it", - "urn:identifier:(OCoLC)0225997361" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sculpture, Baroque -- Italy, Southern -- Congresses.", - "Sculpture, Renaissance -- Italy. Southern -- Congresses.", - "Sculpture, Renaissance -- italy -- Congresses." - ], - "titleDisplay": [ - "La scultura meridionale in età moderna nei suoi rapporti con la circolazione mediterranea : atti del Convegno internazionale di studi \"La scultura meridionale in età moderna nei suoi rapporti con la circolazione mediterranea,\" : Lecce, 9-10-11 giugno 2004 / a cura di Letizia Gaeta." - ], - "uri": "b16848834", - "lccClassification": [ - "NB619.S6 S384 2007" - ], - "placeOfPublication": [ - "Galatina (Lecce)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/08625093.pdf" - }, - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/08916240.pdf" - } - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "97888808676301", - "97888808676472" - ] - }, - "sort": [ - 17.373138, - "b16848834" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16848834", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433084879190" - ], - "identifier": [ - "urn:shelfmark:JQL 08-8 v. 2", - "urn:barcode:33433084879190" - ], - "identifierV2": [ - { - "value": "JQL 08-8 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433084879190", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-8" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-8 v. 2" - ], - "shelfMark_sort": "aJQL 08-8 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i23162443" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16848834", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433080536943" - ], - "identifier": [ - "urn:shelfmark:JQL 08-8 v. 1", - "urn:barcode:33433080536943" - ], - "identifierV2": [ - { - "value": "JQL 08-8 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433080536943", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-8" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-8 v. 1" - ], - "shelfMark_sort": "aJQL 08-8 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17707624" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16863661", - "_score": 17.373138, - "_source": { - "extent": [ - "5 no. in 1 v. ill." - ], - "note": [ - { - "noteType": "Language", - "label": "English, French, and German.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Reprint, with a cumulative index, of an irregular periodical published by S. H. Taeuber-Arp in Paris, 1937-1939.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "No. 1-5 (1937-1939)." - ], - "subjectLiteral_exploded": [ - "Art, Modern", - "Art, Modern -- 20th century", - "Art, Modern -- 20th century -- Periodicals", - "Art, Abstract", - "Art, Abstract -- Periodicals" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "Arno Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1937 - ], - "dateEndString": [ - "1939" - ], - "title": [ - "Plastique. : Plastic." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-10" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1937" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "5660092" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-10" - }, - { - "type": "nypl:Bnumber", - "value": "16863661" - }, - { - "type": "nypl:Oclc", - "value": "5660092" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5660092" - } - ], - "dateEndYear": [ - 1939 - ], - "updatedAt": 1712324948330, - "publicationStatement": [ - "New York : Arno Press, 1969." - ], - "identifier": [ - "urn:shelfmark:JQL 08-10", - "urn:bnum:16863661", - "urn:oclc:5660092", - "urn:identifier:(OCoLC)5660092" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Modern -- 20th century -- Periodicals.", - "Art, Abstract -- Periodicals." - ], - "titleDisplay": [ - "Plastique. : Plastic." - ], - "uri": "b16863661", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Plastic", - "Plastique" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 17.373138, - "b16863661" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16863661", - "_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": "1937", - "lte": "1939" - } - ], - "dueDate": [ - "2024-07-05" - ], - "enumerationChronology": [ - "no. 1-5 (1937-1939)" - ], - "enumerationChronology_sort": [ - " 1-1937" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433079061556" - ], - "identifier": [ - "urn:shelfmark:JQL 08-10 no. 1-5 (1937-1939)", - "urn:barcode:33433079061556" - ], - "identifierV2": [ - { - "value": "JQL 08-10 no. 1-5 (1937-1939)", - "type": "bf:ShelfMark" - }, - { - "value": "33433079061556", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-10" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 08-10 no. 1-5 (1937-1939)" - ], - "shelfMark_sort": "aJQL 08-10 no. 000001-5 (1937-1939)", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 5 - } - ], - "uri": "i17719782" - }, - "sort": [ - " 1-1937" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17065272", - "_score": 17.373138, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 authored by Jane Sikes Hageman and Edward M. Hageman.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Furniture", - "Furniture -- Ohio", - "Furniture -- Ohio -- History", - "Cabinetmakers", - "Cabinetmakers -- Ohio", - "Cabinetmakers -- Ohio -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J.S. Hageman" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1984 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Ohio furniture makers" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-33" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1984" - ], - "creatorLiteral": [ - "Hageman, Jane Sikes." - ], - "idLccn": [ - "85113070" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Hageman, Edward M." - ], - "dateStartYear": [ - 1984 - ], - "idOclc": [ - "12080140" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-33" - }, - { - "type": "nypl:Bnumber", - "value": "17065272" - }, - { - "type": "bf:Isbn", - "value": "0962010758 (v. 2 : paper)" - }, - { - "type": "bf:Isbn", - "value": "9780962010750 (v. 2 : paper)" - }, - { - "type": "bf:Isbn", - "value": "096201074X (v. 2 : hard)" - }, - { - "type": "bf:Isbn", - "value": "9780962010743 (v. 2 : hard)" - }, - { - "type": "nypl:Oclc", - "value": "12080140" - }, - { - "type": "bf:Lccn", - "value": "85113070" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12080140" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711074798091, - "publicationStatement": [ - "[Cincinnati, Ohio] : J.S. Hageman, c1984-" - ], - "idIsbn": [ - "0962010758 (v. 2 : paper)", - "9780962010750 (v. 2 : paper)", - "096201074X (v. 2 : hard)", - "9780962010743 (v. 2 : hard)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-33", - "urn:bnum:17065272", - "urn:isbn:0962010758 (v. 2 : paper)", - "urn:isbn:9780962010750 (v. 2 : paper)", - "urn:isbn:096201074X (v. 2 : hard)", - "urn:isbn:9780962010743 (v. 2 : hard)", - "urn:oclc:12080140", - "urn:lccn:85113070", - "urn:identifier:(OCoLC)12080140" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Furniture -- Ohio -- History.", - "Cabinetmakers -- Ohio -- Biography." - ], - "titleDisplay": [ - "Ohio furniture makers / Jane Sikes Hageman." - ], - "uri": "b17065272", - "lccClassification": [ - "NK2435.O37 H3 1984" - ], - "placeOfPublication": [ - "[Cincinnati, Ohio]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. 1790 to 1845 -- v. 2. 1790-1860." - ], - "dimensions": [ - "28-29 cm." - ], - "idIsbn_clean": [ - "09620107582", - "97809620107502", - "096201074X2", - "97809620107432" - ] - }, - "sort": [ - 17.373138, - "b17065272" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17065272", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433102440405" - ], - "identifier": [ - "urn:shelfmark:JQL 08-33 v. 2", - "urn:barcode:33433102440405" - ], - "identifierV2": [ - { - "value": "JQL 08-33 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433102440405", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-33" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-33 v. 2" - ], - "shelfMark_sort": "aJQL 08-33 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17762989" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17065272", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433105255560" - ], - "identifier": [ - "urn:shelfmark:JQL 08-33 v. 1", - "urn:barcode:33433105255560" - ], - "identifierV2": [ - { - "value": "JQL 08-33 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433105255560", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-33" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-33 v. 1" - ], - "shelfMark_sort": "aJQL 08-33 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17762988" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16691629", - "_score": 17.305777, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Collection of previously published. essays, now updated. .", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "V. Pace, professor at the University of Udine.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Art, Italian", - "Art, Italian -- Italy, Southern", - "Art, Medieval", - "Art, Medieval -- Italy, Southern" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Liguori" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Arte medievale in Italia meridionale" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-4" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Pace, Valentino, 1944-" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Nuovo Medioevo ; 70" - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "it" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-4" - }, - { - "type": "nypl:Bnumber", - "value": "16691629" - }, - { - "type": "bf:Isbn", - "value": "9788820735906 (v. 1)" - }, - { - "type": "nypl:Oclc", - "value": "it" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711467429191, - "publicationStatement": [ - "Napoli : Liguori, 2007-" - ], - "idIsbn": [ - "9788820735906 (v. 1)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-4", - "urn:bnum:16691629", - "urn:isbn:9788820735906 (v. 1)", - "urn:oclc:it" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Italian -- Italy, Southern.", - "Art, Medieval -- Italy, Southern." - ], - "titleDisplay": [ - "Arte medievale in Italia meridionale / Valentino Pace." - ], - "uri": "b16691629", - "lccClassification": [ - "N6919.S6 P33 2007" - ], - "placeOfPublication": [ - "Napoli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07240813.pdf" - } - ], - "tableOfContents": [ - "1. Campania." - ], - "dimensions": [ - "24 cm." - ], - "idIsbn_clean": [ - "97888207359061" - ] - }, - "sort": [ - 17.305777, - "b16691629" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16691629", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433079255406" - ], - "identifier": [ - "urn:shelfmark:JQL 08-4 v. 1", - "urn:barcode:33433079255406" - ], - "identifierV2": [ - { - "value": "JQL 08-4 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433079255406", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-4" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-4 v. 1" - ], - "shelfMark_sort": "aJQL 08-4 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17638462" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16836945", - "_score": 17.305777, - "_source": { - "extent": [ - "2 v. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Praxiteles, active 4th century B.C.", - "Praxiteles, active 4th century B.C. -- Criticism and interpretation", - "Sculpture, Greek", - "Sculpture, Greek -- Greece", - "Sculpture, Greek -- Greece -- Athens" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "\"Erma\" di Bretschneider" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2004 - ], - "dateEndString": [ - "2007" - ], - "title": [ - "The art of Praxiteles" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-9" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "2004" - ], - "creatorLiteral": [ - "Corso, Antonio." - ], - "idLccn": [ - "2004476989" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Studia archaeologica ; 133, 153" - ], - "dateStartYear": [ - 2004 - ], - "idOclc": [ - "57493743" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-9" - }, - { - "type": "nypl:Bnumber", - "value": "16836945" - }, - { - "type": "bf:Isbn", - "value": "8882652955 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "9788882652951 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "8882654370 (v. 2)" - }, - { - "type": "bf:Isbn", - "value": "9788882654375 (v. 2)" - }, - { - "type": "nypl:Oclc", - "value": "57493743" - }, - { - "type": "bf:Lccn", - "value": "2004476989" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)57493743" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)56893975" - } - ], - "uniformTitle": [ - "Studia archaeologica (\"Erma\" di Bretschneider) ; 133, 153." - ], - "dateEndYear": [ - 2007 - ], - "updatedAt": 1711219856283, - "publicationStatement": [ - "Roma : \"Erma\" di Bretschneider, c2004-c2007." - ], - "idIsbn": [ - "8882652955 (v. 1)", - "9788882652951 (v. 1)", - "8882654370 (v. 2)", - "9788882654375 (v. 2)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-9", - "urn:bnum:16836945", - "urn:isbn:8882652955 (v. 1)", - "urn:isbn:9788882652951 (v. 1)", - "urn:isbn:8882654370 (v. 2)", - "urn:isbn:9788882654375 (v. 2)", - "urn:oclc:57493743", - "urn:lccn:2004476989", - "urn:identifier:(OCoLC)57493743", - "urn:identifier:(OCoLC)56893975" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2004" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Praxiteles, active 4th century B.C. -- Criticism and interpretation.", - "Sculpture, Greek -- Greece -- Athens." - ], - "titleDisplay": [ - "The art of Praxiteles / Antonio Corso." - ], - "uri": "b16836945", - "lccClassification": [ - "NB102 .C668 2004" - ], - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "[1] The development of Praxiteles' workshop and its cultural tradition until the sculptor's acme (364-1 BC) -- 2. The mature years." - ], - "dimensions": [ - "25 cm." - ], - "idIsbn_clean": [ - "88826529551", - "97888826529511", - "88826543702", - "97888826543752" - ] - }, - "sort": [ - 17.305777, - "b16836945" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16836945", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433079632331" - ], - "identifier": [ - "urn:shelfmark:JQL 08-9 v. 2", - "urn:barcode:33433079632331" - ], - "identifierV2": [ - { - "value": "JQL 08-9 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433079632331", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-9" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-9 v. 2" - ], - "shelfMark_sort": "aJQL 08-9 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17699395" - }, - "sort": [ - " 2-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16872555", - "_score": 17.305777, - "_source": { - "extent": [ - "13 volumes ;" - ], - "note": [ - { - "noteType": "Numbering", - "label": "Vol. for 2013 issued in 2 parts.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplements, called Quaderni dei seminari, accompany issues for 2014-2015.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Italian, French, and English; abstracts in English, <2010->", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by: Società italiana di storia della critica d'arte.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Nuova serie 1 (2017).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "N. 1 (2005)-n. 12 (2016); nuova serie 1 (2017)." - ], - "subjectLiteral_exploded": [ - "Art criticism", - "Art criticism -- Periodicals" - ], - "numItemDatesParsed": [ - 15 - ], - "publisherLiteral": [ - "N. Aragno", - "CB Edizioni", - "Scalpendi Editore" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 15 - ], - "createdYear": [ - 2005 - ], - "dateEndString": [ - "2017" - ], - "title": [ - "Annali di critica d'arte." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-11" - ], - "numItemVolumesParsed": [ - 15 - ], - "createdString": [ - "2005" - ], - "idLccn": [ - "2007205883" - ], - "idIssn": [ - "2279-557X" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Società italiana di storia della critica d'arte, issuing body." - ], - "dateStartYear": [ - 2005 - ], - "idOclc": [ - "179512225" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-11" - }, - { - "type": "nypl:Bnumber", - "value": "16872555" - }, - { - "type": "nypl:Oclc", - "value": "179512225" - }, - { - "type": "bf:Lccn", - "value": "2007205883" - }, - { - "type": "bf:Issn", - "value": "2279-557X" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)179512225" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1179279394" - } - ], - "dateEndYear": [ - 2017 - ], - "holdings": [ - { - "holdingStatement": [ - "2005-2016." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-11" - } - ], - "physicalLocation": [ - "JQL 08-11" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-11" - ], - "uri": "h1145201" - } - ], - "updatedAt": 1711097426466, - "publicationStatement": [ - "Torino : N. Aragno, 2005-", - "Poggio a Caiano (Po) : CB Edizioni", - "Milano : Scalpendi Editore" - ], - "genreForm": [ - "Periodicals." - ], - "identifier": [ - "urn:shelfmark:JQL 08-11", - "urn:bnum:16872555", - "urn:oclc:179512225", - "urn:lccn:2007205883", - "urn:issn:2279-557X", - "urn:identifier:(OCoLC)179512225", - "urn:identifier:(OCoLC)1179279394" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2005" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art criticism -- Periodicals.", - "Art criticism." - ], - "titleDisplay": [ - "Annali di critica d'arte." - ], - "uri": "b16872555", - "lccClassification": [ - "N7475 .A55" - ], - "placeOfPublication": [ - "Torino", - "Poggio a Caiano (Po)", - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Annali di critica d'arte. Quaderni dei seminari." - ], - "dimensions": [ - "24 cm" - ] - }, - "sort": [ - 17.305777, - "b16872555" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 15, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16872555", - "_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": "2016", - "lte": "2016" - } - ], - "enumerationChronology": [ - "v. 12 (2016)" - ], - "enumerationChronology_sort": [ - " 12-2016" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121631182" - ], - "identifier": [ - "urn:shelfmark:JQL 08-11 v. 12 (2016)", - "urn:barcode:33433121631182" - ], - "identifierV2": [ - { - "value": "JQL 08-11 v. 12 (2016)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121631182", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-11" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-11 v. 12 (2016)" - ], - "shelfMark_sort": "aJQL 08-11 v. 000012 (2016)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "uri": "i35659767" - }, - "sort": [ - " 12-2016" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16872555", - "_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": "2015", - "lte": "2015" - } - ], - "enumerationChronology": [ - "v. 11 (2015) Quaderni Dei Seminari" - ], - "enumerationChronology_sort": [ - " 11-2015" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433117118939" - ], - "identifier": [ - "urn:shelfmark:JQL 08-11 v. 11 (2015) Quaderni Dei Seminari", - "urn:barcode:33433117118939" - ], - "identifierV2": [ - { - "value": "JQL 08-11 v. 11 (2015) Quaderni Dei Seminari", - "type": "bf:ShelfMark" - }, - { - "value": "33433117118939", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-11" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-11 v. 11 (2015) Quaderni Dei Seminari" - ], - "shelfMark_sort": "aJQL 08-11 v. 000011 (2015) Quaderni Dei Seminari", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ], - "uri": "i33568817" - }, - "sort": [ - " 11-2015" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16872555", - "_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": "2015", - "lte": "2015" - } - ], - "enumerationChronology": [ - "v. 11 (2015)" - ], - "enumerationChronology_sort": [ - " 11-2015" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433117118947" - ], - "identifier": [ - "urn:shelfmark:JQL 08-11 v. 11 (2015)", - "urn:barcode:33433117118947" - ], - "identifierV2": [ - { - "value": "JQL 08-11 v. 11 (2015)", - "type": "bf:ShelfMark" - }, - { - "value": "33433117118947", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-11" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-11 v. 11 (2015)" - ], - "shelfMark_sort": "aJQL 08-11 v. 000011 (2015)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ], - "uri": "i33568819" - }, - "sort": [ - " 11-2015" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17051155", - "_score": 17.305777, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Louvois, François-Michel Le Tellier, marquis de, 1641-1691", - "Louvois, François-Michel Le Tellier, marquis de, 1641-1691 -- Correspondence", - "Arts", - "Arts -- France", - "Arts -- France -- History", - "Arts -- France -- History -- 17th century", - "Arts -- France -- History -- 17th century -- Sources", - "Architecture", - "Architecture -- France", - "Architecture -- France -- History", - "Architecture -- France -- History -- 17th century", - "Architecture -- France -- History -- 17th century -- Sources" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "CTHS" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Architecture et beaux-arts à l'apogée du règne de Louis XIV : édition critique de la correspondance du Marquis de Louvois, surintendant des bâtiments du roi, arts et manufactures de France, 1683-1691, conservée au Service historique de la Défense" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-14" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Louvois, François-Michel Le Tellier, marquis de, 1641-1691." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Collection de documents inédits sur l'histoire de France. v. 43" - ], - "contributorLiteral": [ - "Sarmant, Thierry.", - "Masson, Raphaël.", - "Beylot, Agnès." - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "191111145" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-14" - }, - { - "type": "nypl:Bnumber", - "value": "17051155" - }, - { - "type": "bf:Isbn", - "value": "9782735506446" - }, - { - "type": "bf:Isbn", - "value": "2735506444" - }, - { - "type": "nypl:Oclc", - "value": "191111145" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)191111145" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711466222537, - "publicationStatement": [ - "Paris : CTHS, 2007-" - ], - "idIsbn": [ - "9782735506446", - "2735506444" - ], - "identifier": [ - "urn:shelfmark:JQL 08-14", - "urn:bnum:17051155", - "urn:isbn:9782735506446", - "urn:isbn:2735506444", - "urn:oclc:191111145", - "urn:identifier:(OCoLC)191111145" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Louvois, François-Michel Le Tellier, marquis de, 1641-1691 -- Correspondence.", - "Arts -- France -- History -- 17th century -- Sources.", - "Architecture -- France -- History -- 17th century -- Sources." - ], - "titleDisplay": [ - "Architecture et beaux-arts à l'apogée du règne de Louis XIV : édition critique de la correspondance du Marquis de Louvois, surintendant des bâtiments du roi, arts et manufactures de France, 1683-1691, conservée au Service historique de la Défense / sous la direction de Thierry Sarmant et Raphaël Masson ; par Agnès Beylot ... [et al.]." - ], - "uri": "b17051155", - "lccClassification": [ - "DC3 .C64 v.43 NX549.A1" - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "T. 1. Années 1683 et 1684." - ], - "dimensions": [ - "24 cm." - ], - "idIsbn_clean": [ - "9782735506446", - "2735506444" - ] - }, - "sort": [ - 17.305777, - "b17051155" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17051155", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "t. 1" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433082661210" - ], - "identifier": [ - "urn:shelfmark:JQL 08-14 t. 1", - "urn:barcode:33433082661210" - ], - "identifierV2": [ - { - "value": "JQL 08-14 t. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433082661210", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-14" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-14 t. 1" - ], - "shelfMark_sort": "aJQL 08-14 t. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17753509" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17053668", - "_score": 17.305777, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Rome (Lazio)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Julius II (1443-1513) and Clement VIII (1536-1605), Popes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "City planning", - "City planning -- Italy", - "City planning -- Italy -- Rome", - "City planning -- Italy -- Rome -- History", - "City planning -- Italy -- Rome -- History -- 16th century", - "Architecture", - "Architecture -- Italy", - "Architecture -- Italy -- Rome", - "Architecture -- Italy -- Rome -- History", - "Architecture -- Italy -- Rome -- History -- 16th century", - "Popes", - "Popes -- Art patronage", - "Popes -- Art patronage -- History", - "Popes -- Art patronage -- History -- 16th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "L. S. Olschki" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2008 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Roma : le trasformazioni urbane nel Cinquecento." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-22" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2008" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "L'ambiente storico ; 12" - ], - "dateStartYear": [ - 2008 - ], - "idOclc": [ - "258381469", - "0258381469", - "it 08914399" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-22" - }, - { - "type": "nypl:Bnumber", - "value": "17053668" - }, - { - "type": "bf:Isbn", - "value": "9788822257307 (v. 1)" - }, - { - "type": "nypl:Oclc", - "value": "258381469" - }, - { - "type": "nypl:Oclc", - "value": "0258381469" - }, - { - "type": "nypl:Oclc", - "value": "it 08914399" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)0258381469" - } - ], - "uniformTitle": [ - "Ambiente storico ; 12." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711515563914, - "publicationStatement": [ - "Firenze : L. S. Olschki, 2008-" - ], - "idIsbn": [ - "9788822257307 (v. 1)" - ], - "identifier": [ - "urn:shelfmark:JQL 08-22", - "urn:bnum:17053668", - "urn:isbn:9788822257307 (v. 1)", - "urn:oclc:258381469", - "urn:oclc:0258381469", - "urn:oclc:it 08914399", - "urn:identifier:(OCoLC)0258381469" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "City planning -- Italy -- Rome -- History -- 16th century.", - "Architecture -- Italy -- Rome -- History -- 16th century.", - "Popes -- Art patronage -- History -- 16th century." - ], - "titleDisplay": [ - "Roma : le trasformazioni urbane nel Cinquecento." - ], - "uri": "b17053668", - "lccClassification": [ - "NA9204.R7 R65 2008" - ], - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/08914399.pdf" - } - ], - "tableOfContents": [ - "1. Topografia e urbanistica da Giulio II a Clemente VIII / di Giorgio Simoncini -- 2. Dalla città al territorio / di Giorgio Simoncini." - ], - "dimensions": [ - "25 cm." - ], - "idIsbn_clean": [ - "97888222573071" - ] - }, - "sort": [ - 17.305777, - "b17053668" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17053668", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433092906878" - ], - "identifier": [ - "urn:shelfmark:JQL 08-22 v. 2", - "urn:barcode:33433092906878" - ], - "identifierV2": [ - { - "value": "JQL 08-22 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433092906878", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-22 " - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-22 v. 2" - ], - "shelfMark_sort": "aJQL 08-22 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i28070197" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17053668", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433084938970" - ], - "identifier": [ - "urn:shelfmark:JQL 08-22 v. 1", - "urn:barcode:33433084938970" - ], - "identifierV2": [ - { - "value": "JQL 08-22 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433084938970", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-22" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-22 v. 1" - ], - "shelfMark_sort": "aJQL 08-22 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17753913" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061902", - "_score": 17.305777, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: 3 (nov. de 1994-enero de 1995); title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Latest issue consulted: 39 (abr.-jun. 2005).", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued jointly with Fundación Cultural MACAY, <2005->", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began May 1994." - ], - "subjectLiteral_exploded": [ - "Museo de Arte Contemporáneo Ateneo de Yucatán", - "Museo de Arte Contemporáneo Ateneo de Yucatán -- Periodicals", - "Art, Mexican", - "Art, Mexican -- Mexico", - "Art, Mexican -- Mexico -- Yucatán (State)", - "Art, Mexican -- Mexico -- Yucatán (State) -- Periodicals", - "Art, Modern", - "Art, Modern -- 20th century", - "Art, Modern -- 20th century -- Periodicals", - "Art museums", - "Art museums -- Mexico", - "Art museums -- Mexico -- Periodicals" - ], - "numItemDatesParsed": [ - 11 - ], - "publisherLiteral": [ - "Museo de Arte Contemporáneo Ateneo de Yucatán." - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 11 - ], - "createdYear": [ - 1994 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "MACAY : boletín del Museo de Arte Contemporáneo Ateneo de Yucatán." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-34" - ], - "numItemVolumesParsed": [ - 11 - ], - "createdString": [ - "1994" - ], - "idLccn": [ - "2006240625" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Museo de Arte Contemporáneo Ateneo de Yucatán.", - "Fundación Cultural MACAY." - ], - "dateStartYear": [ - 1994 - ], - "idOclc": [ - "48998675" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-34" - }, - { - "type": "nypl:Bnumber", - "value": "17061902" - }, - { - "type": "nypl:Oclc", - "value": "48998675" - }, - { - "type": "bf:Lccn", - "value": "2006240625" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)48998675" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "4(1995)-57(2010), 55(2010)-63(2011). [incomplete] " - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-34" - } - ], - "physicalLocation": [ - "JQL 08-34" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 08-34" - ], - "uri": "h1057179" - } - ], - "updatedAt": 1711030667321, - "publicationStatement": [ - "Mérida, Yucatán : Museo de Arte Contemporáneo Ateneo de Yucatán." - ], - "identifier": [ - "urn:shelfmark:JQL 08-34", - "urn:bnum:17061902", - "urn:oclc:48998675", - "urn:lccn:2006240625", - "urn:identifier:(OCoLC)48998675" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Museo de Arte Contemporáneo Ateneo de Yucatán -- Periodicals.", - "Art, Mexican -- Mexico -- Yucatán (State) -- Periodicals.", - "Art, Modern -- 20th century -- Periodicals.", - "Art museums -- Mexico -- Periodicals." - ], - "titleDisplay": [ - "MACAY : boletín del Museo de Arte Contemporáneo Ateneo de Yucatán." - ], - "uri": "b17061902", - "lccClassification": [ - "N908.M6 M33" - ], - "placeOfPublication": [ - "Mérida, Yucatán" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Boletín del Museo de Arte Contemporáneo Ateneo de Yucatán" - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 17.305777, - "b17061902" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 11, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17061902", - "_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": "2010", - "lte": "2011" - } - ], - "enumerationChronology": [ - "v. 57-63 (Jan. 2010-Sept 2011) & Suppl. (Inc.)" - ], - "enumerationChronology_sort": [ - " 57-2010" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433119846511" - ], - "identifier": [ - "urn:shelfmark:JQL 08-34 v. 57-63 (Jan. 2010-Sept 2011) & Suppl. (Inc.)", - "urn:barcode:33433119846511" - ], - "identifierV2": [ - { - "value": "JQL 08-34 v. 57-63 (Jan. 2010-Sept 2011) & Suppl. (Inc.)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119846511", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-34" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-34 v. 57-63 (Jan. 2010-Sept 2011) & Suppl. (Inc.)" - ], - "shelfMark_sort": "aJQL 08-34 v. 000057-63 (Jan. 2010-Sept 2011) & Suppl. (Inc.)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 57, - "lte": 63 - } - ], - "uri": "i36667570" - }, - "sort": [ - " 57-2010" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061902", - "_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": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "v. 53-56 (2009) & Suppl." - ], - "enumerationChronology_sort": [ - " 53-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433119846776" - ], - "identifier": [ - "urn:shelfmark:JQL 08-34 v. 53-56 (2009) & Suppl.", - "urn:barcode:33433119846776" - ], - "identifierV2": [ - { - "value": "JQL 08-34 v. 53-56 (2009) & Suppl.", - "type": "bf:ShelfMark" - }, - { - "value": "33433119846776", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-34" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-34 v. 53-56 (2009) & Suppl." - ], - "shelfMark_sort": "aJQL 08-34 v. 000053-56 (2009) & Suppl.", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 53, - "lte": 56 - } - ], - "uri": "i36667536" - }, - "sort": [ - " 53-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17061902", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:29", - "label": "bundled materials (vols.)" - } - ], - "catalogItemType_packed": [ - "catalogItemType:29||bundled materials (vols.)" - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology": [ - "v. 49-52 (2008)" - ], - "enumerationChronology_sort": [ - " 49-2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433116067418" - ], - "identifier": [ - "urn:shelfmark:JQL 08-34 v. 49-52 (2008)", - "urn:barcode:33433116067418" - ], - "identifierV2": [ - { - "value": "JQL 08-34 v. 49-52 (2008)", - "type": "bf:ShelfMark" - }, - { - "value": "33433116067418", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-34" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-34 v. 49-52 (2008)" - ], - "shelfMark_sort": "aJQL 08-34 v. 000049-52 (2008)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 49, - "lte": 52 - } - ], - "uri": "i29911624" - }, - "sort": [ - " 49-2008" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17062527", - "_score": 17.305777, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Peinture-sculpture.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vols. for 1964- distributed by \"Arts.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Compiler: 1963- E. Mayer.", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Issue for 1963 covers auctions held Sept. 1961-Dec. 1962; thereafter, each issue covers auctions held during the previous calendar year.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Vols. for 1967- issued also in English: International auction records.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1963-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Catalogs", - "Art -- Catalogs -- Periodicals", - "Art auctions", - "Art auctions -- Periodicals", - "Art -- Prices", - "Art -- Prices -- Periodicals" - ], - "numItemDatesParsed": [ - 4 - ], - "publisherLiteral": [ - "Editions Mayer, etc.]" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 4 - ], - "createdYear": [ - 1963 - ], - "dateEndString": [ - "19uu" - ], - "title": [ - "Annuaire international des ventes." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 08-32" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "71003646" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Mayer, Enrique, 1914-" - ], - "dateStartYear": [ - 1963 - ], - "idOclc": [ - "1635640" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-32" - }, - { - "type": "nypl:Bnumber", - "value": "17062527" - }, - { - "type": "nypl:Oclc", - "value": "1635640" - }, - { - "type": "bf:Lccn", - "value": "71003646" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1635640" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)2255576" - } - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1711462199382, - "publicationStatement": [ - "[Paris : Editions Mayer, etc.]" - ], - "identifier": [ - "urn:shelfmark:JQL 08-32", - "urn:bnum:17062527", - "urn:oclc:1635640", - "urn:lccn:71003646", - "urn:identifier:(OCoLC)1635640", - "urn:identifier:(OCoLC)2255576" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Catalogs -- Periodicals.", - "Art auctions -- Periodicals.", - "Art -- Prices -- Periodicals." - ], - "titleDisplay": [ - "Annuaire international des ventes." - ], - "uri": "b17062527", - "lccClassification": [ - "N8640 .A55" - ], - "placeOfPublication": [ - "[Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 17.305777, - "b17062527" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 4, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17062527", - "_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": "1966", - "lte": "1966" - } - ], - "enumerationChronology": [ - "1966" - ], - "enumerationChronology_sort": [ - " -1966" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433062903889" - ], - "identifier": [ - "urn:shelfmark:JQL 08-32 1966", - "urn:barcode:33433062903889" - ], - "identifierV2": [ - { - "value": "JQL 08-32 1966", - "type": "bf:ShelfMark" - }, - { - "value": "33433062903889", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-32" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-32 1966" - ], - "shelfMark_sort": "aJQL 08-32 001966", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17761785" - }, - "sort": [ - " -1966" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17062527", - "_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": "1965", - "lte": "1965" - } - ], - "enumerationChronology": [ - "1965" - ], - "enumerationChronology_sort": [ - " -1965" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433062903871" - ], - "identifier": [ - "urn:shelfmark:JQL 08-32 1965", - "urn:barcode:33433062903871" - ], - "identifierV2": [ - { - "value": "JQL 08-32 1965", - "type": "bf:ShelfMark" - }, - { - "value": "33433062903871", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-32" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-32 1965" - ], - "shelfMark_sort": "aJQL 08-32 001965", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17761784" - }, - "sort": [ - " -1965" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b17062527", - "_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": "1964", - "lte": "1964" - } - ], - "enumerationChronology": [ - "1964" - ], - "enumerationChronology_sort": [ - " -1964" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433062903863" - ], - "identifier": [ - "urn:shelfmark:JQL 08-32 1964", - "urn:barcode:33433062903863" - ], - "identifierV2": [ - { - "value": "JQL 08-32 1964", - "type": "bf:ShelfMark" - }, - { - "value": "33433062903863", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 08-32" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 08-32 1964" - ], - "shelfMark_sort": "aJQL 08-32 001964", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17761783" - }, - "sort": [ - " -1964" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21496323", - "_score": 17.179506, - "_source": { - "extent": [ - "volumes : illustrations (chiefly color) ;" - ], - "note": [ - { - "noteType": "Source of Description", - "label": "Description based on: 2007; title from title page.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 2007", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with 2005?" - ], - "subjectLiteral_exploded": [ - "2000-2099", - "Art, Latin American", - "Art, Latin American -- 21st century", - "Art, Latin American -- 21st century -- Catalogs", - "Art, Modern", - "Art, Modern -- 21st century", - "Art, Modern -- 21st century -- Catalogs", - "Art auctions", - "Art auctions -- Florida", - "Art auctions -- Florida -- Miami", - "Art auctions -- Florida -- Miami -- Catalogs", - "Florida", - "Florida -- Miami" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "International Kids Fund" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2005 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "IKF Latin American art auction." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 18-2" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2005" - ], - "creatorLiteral": [ - "IKF Latin American Art Auction." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2005 - ], - "idOclc": [ - "779956780" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 18-2" - }, - { - "type": "nypl:Bnumber", - "value": "21496323" - }, - { - "type": "nypl:Oclc", - "value": "779956780" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)779956780" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711434415464, - "publicationStatement": [ - "Miami, FL : International Kids Fund, c[2005]-" - ], - "genreForm": [ - "Catalogs." - ], - "identifier": [ - "urn:shelfmark:JQL 18-2", - "urn:bnum:21496323", - "urn:oclc:779956780", - "urn:identifier:(OCoLC)779956780" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2005" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "2000-2099", - "Art, Latin American -- 21st century -- Catalogs.", - "Art, Modern -- 21st century -- Catalogs.", - "Art auctions -- Florida -- Miami -- Catalogs.", - "Art auctions.", - "Art, Latin American.", - "Art, Modern.", - "Florida -- Miami." - ], - "titleDisplay": [ - "IKF Latin American art auction." - ], - "uri": "b21496323", - "lccClassification": [ - "N6502 . I44" - ], - "placeOfPublication": [ - "Miami, FL" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Latin American art auction", - "International Kids Fund Latin American art auction" - ], - "dimensions": [ - "27 cm" - ] - }, - "sort": [ - 17.179506, - "b21496323" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21496323", - "_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": "2007", - "lte": "2007" - } - ], - "enumerationChronology": [ - "2007" - ], - "enumerationChronology_sort": [ - " -2007" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433122302130" - ], - "identifier": [ - "urn:shelfmark:JQL 18-2 2007", - "urn:barcode:33433122302130" - ], - "identifierV2": [ - { - "value": "JQL 18-2 2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433122302130", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 18-2" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 18-2 2007" - ], - "shelfMark_sort": "aJQL 18-2 002007", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i35874721" - }, - "sort": [ - " -2007" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15333307", - "_score": 17.11943, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: 13. Ausg. (2000/2001).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Germany", - "Art -- Germany -- Directories", - "Art -- Austria", - "Art -- Austria -- Directories", - "Art -- Switzerland", - "Art -- Switzerland -- Directories", - "Art museums", - "Art museums -- Germany", - "Art museums -- Germany -- Directories", - "Art museums -- Austria", - "Art museums -- Austria -- Directories", - "Art museums -- Switzerland", - "Art museums -- Switzerland -- Directories" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "K.G. Saur" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "KunstAdressbuch : Deutschland, Österreich, Schweiz = Art directory : Germany, Austria, Switzerland." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 02-18" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "idLccn": [ - "2002248304" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "49979218" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 02-18" - }, - { - "type": "nypl:Bnumber", - "value": "15333307" - }, - { - "type": "nypl:Oclc", - "value": "49979218" - }, - { - "type": "bf:Lccn", - "value": "2002248304" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S120000020" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711122328472, - "publicationStatement": [ - "München : K.G. Saur" - ], - "identifier": [ - "urn:shelfmark:JQL 02-18", - "urn:bnum:15333307", - "urn:oclc:49979218", - "urn:lccn:2002248304", - "urn:identifier:(WaOLN)S120000020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Germany -- Directories.", - "Art -- Austria -- Directories.", - "Art -- Switzerland -- Directories.", - "Art museums -- Germany -- Directories.", - "Art museums -- Austria -- Directories.", - "Art museums -- Switzerland -- Directories." - ], - "titleDisplay": [ - "KunstAdressbuch : Deutschland, Österreich, Schweiz = Art directory : Germany, Austria, Switzerland." - ], - "uri": "b15333307", - "placeOfPublication": [ - "München" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Art directory : Germany, Austria, Switzerland" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 17.11943, - "b15333307" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15333307", - "_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": "2000", - "lte": "2001" - } - ], - "enumerationChronology": [ - "13. Ausg. (2000/2001)" - ], - "enumerationChronology_sort": [ - " -2000" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433018223473" - ], - "identifier": [ - "urn:shelfmark:JQL 02-18 13. Ausg. (2000/2001)", - "urn:barcode:33433018223473" - ], - "identifierV2": [ - { - "value": "JQL 02-18 13. Ausg. (2000/2001)", - "type": "bf:ShelfMark" - }, - { - "value": "33433018223473", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 02-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 02-18 13. Ausg. (2000/2001)" - ], - "shelfMark_sort": "aJQL 02-18 13. Ausg. (2000/2001)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11682030" - }, - "sort": [ - " -2000" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15847503", - "_score": 17.11943, - "_source": { - "extent": [ - "v. : plans ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "10 folded sheets of plans in portfolio.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaisergarten Oberhausen", - "City planning", - "City planning -- Germany", - "City planning -- Germany -- Essen", - "Parks", - "Parks -- Germany", - "Parks -- Germany -- Essen", - "Parks -- Germany -- Essen -- Planning", - "Parks -- Germany -- Essen -- Maps" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Universität-Gesamthochschule-Essen" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1994 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "[Kaisergarten Oberhausen]." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 03-18" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1994" - ], - "creatorLiteral": [ - "Buller, Matthias." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1994 - ], - "idOclc": [ - "53874473" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 03-18" - }, - { - "type": "nypl:Bnumber", - "value": "15847503" - }, - { - "type": "nypl:Oclc", - "value": "53874473" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M090000161" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711605716628, - "publicationStatement": [ - "Essen : Universität-Gesamthochschule-Essen, 1994." - ], - "identifier": [ - "urn:shelfmark:JQL 03-18", - "urn:bnum:15847503", - "urn:oclc:53874473", - "urn:identifier:(WaOLN)M090000161" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaisergarten Oberhausen.", - "City planning -- Germany -- Essen.", - "Parks -- Germany -- Essen -- Planning.", - "Parks -- Germany -- Essen -- Maps." - ], - "titleDisplay": [ - "[Kaisergarten Oberhausen]." - ], - "uri": "b15847503", - "placeOfPublication": [ - "Essen" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 17.11943, - "b15847503" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15847503", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "[Plans]" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433032248373" - ], - "identifier": [ - "urn:shelfmark:JQL 03-18 [Plans]", - "urn:barcode:33433032248373" - ], - "identifierV2": [ - { - "value": "JQL 03-18 [Plans]", - "type": "bf:ShelfMark" - }, - { - "value": "33433032248373", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 03-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 03-18 [Plans]" - ], - "shelfMark_sort": "aJQL 03-18 [Plans]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14634650" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10135038", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill., facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Annuaire du Musée des arts décoratifs et du Musée d'art d'Extrême Orient Ferenc Hopp.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "English, French, German or Italian.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Issues fo <1991-> also have Hungarian title: Iparművészet.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1- ; 1973-" - ], - "subjectLiteral_exploded": [ - "Decoration and ornament", - "Decoration and ornament -- Periodicals", - "Art, Asian", - "Art, Asian -- Periodicals", - "Museums", - "Museums -- Hungary", - "Museums -- Hungary -- Periodicals" - ], - "numItemDatesParsed": [ - 19 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 19 - ], - "createdYear": [ - 1973 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Ars decorativa." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 12-4" - ], - "numItemVolumesParsed": [ - 19 - ], - "createdString": [ - "1973" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Iparművészeti Múzeum (Hungary)", - "Hopp Ferenc Kelet-Ázsiai Művészeti Múzeum (Hungary)" - ], - "dateStartYear": [ - 1973 - ], - "idOclc": [ - "NYPG744098496-S" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-4" - }, - { - "type": "nypl:Bnumber", - "value": "10135038" - }, - { - "type": "nypl:Oclc", - "value": "NYPG744098496-S" - }, - { - "type": "bf:Issn", - "identifierStatus": "canceled", - "value": "0133-6673" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0135961" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 8", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 10", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 13", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 14", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 15", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 16", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 17", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 18", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 19", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 20", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 21", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 22", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 23", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 24", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 25", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 26", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 28", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 30", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 31", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "No. 32", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 12-4" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "v. 1 - v. 26; v. 28; v. 30 - v. 32" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 12-4" - } - ], - "physicalLocation": [ - "JQL 12-4" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 12-4" - ], - "uri": "h1068729" - } - ], - "updatedAt": 1711102810202, - "publicationStatement": [ - "Budapest, 1973-" - ], - "identifier": [ - "urn:shelfmark:JQL 12-4", - "urn:bnum:10135038", - "urn:oclc:NYPG744098496-S", - "urn:issn:0133-6673", - "urn:identifier:(WaOLN)nyp0135961" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Decoration and ornament -- Periodicals.", - "Art, Asian -- Periodicals.", - "Museums -- Hungary -- Periodicals." - ], - "titleDisplay": [ - "Ars decorativa." - ], - "uri": "b10135038", - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 14.341686, - "b10135038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 19, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10135038", - "_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": "2018", - "lte": "2018" - } - ], - "enumerationChronology": [ - "v. 32 (2018)" - ], - "enumerationChronology_sort": [ - " 32-2018" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121714392" - ], - "identifier": [ - "urn:shelfmark:JQL 12-4 v. 32 (2018)", - "urn:barcode:33433121714392" - ], - "identifierV2": [ - { - "value": "JQL 12-4 v. 32 (2018)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121714392", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 12-4" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 12-4 v. 32 (2018)" - ], - "shelfMark_sort": "aJQL 12-4 v. 000032 (2018)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "uri": "i37069595" - }, - "sort": [ - " 32-2018" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10135038", - "_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": "2017", - "lte": "2017" - } - ], - "enumerationChronology": [ - "v. 31 (2017)" - ], - "enumerationChronology_sort": [ - " 31-2017" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121648418" - ], - "identifier": [ - "urn:shelfmark:JQL 12-4 v. 31 (2017)", - "urn:barcode:33433121648418" - ], - "identifierV2": [ - { - "value": "JQL 12-4 v. 31 (2017)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121648418", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 12-4" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 12-4 v. 31 (2017)" - ], - "shelfMark_sort": "aJQL 12-4 v. 000031 (2017)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 31 - } - ], - "uri": "i36166858" - }, - "sort": [ - " 31-2017" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10135038", - "_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": "2016", - "lte": "2016" - } - ], - "enumerationChronology": [ - "v. 30 (2016)" - ], - "enumerationChronology_sort": [ - " 30-2016" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433119514770" - ], - "identifier": [ - "urn:shelfmark:JQL 12-4 v. 30 (2016)", - "urn:barcode:33433119514770" - ], - "identifierV2": [ - { - "value": "JQL 12-4 v. 30 (2016)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119514770", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 12-4" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 12-4 v. 30 (2016)" - ], - "shelfMark_sort": "aJQL 12-4 v. 000030 (2016)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i34727554" - }, - "sort": [ - " 30-2016" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10136108", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. for <1990-> published: New York, NY : Putnam Publishing Group, ", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with 1971/72 issue. Cf. New serial titles." - ], - "subjectLiteral_exploded": [ - "Art objects", - "Art objects -- Collectors and collecting", - "Art objects -- Collectors and collecting -- Periodicals", - "Antiques", - "Antiques -- Periodicals" - ], - "numItemDatesParsed": [ - 19 - ], - "publisherLiteral": [ - "Lyle Publications]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 19 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The Lyle official antiques review." - ], - "shelfMark": [ - "JQL 12-10" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1972" - ], - "idLccn": [ - " 74640592" - ], - "idIssn": [ - "1089-1544" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-10" - }, - { - "type": "nypl:Bnumber", - "value": "10136108" - }, - { - "type": "bf:Issn", - "value": "1089-1544" - }, - { - "type": "bf:Lccn", - "value": " 74640592" - }, - { - "type": "nypl:Oclc", - "value": "1791366" - }, - { - "type": "nypl:Oclc", - "value": "1791366 " - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1791366" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1534467 (OCoLC)7891854 (OCoLC)8308290" - } - ], - "idOclc": [ - "1791366", - "1791366 " - ], - "holdings": [], - "updatedAt": 1675264906431, - "publicationStatement": [ - "[Galashiels, Scot. : Lyle Publications]" - ], - "identifier": [ - "urn:bnum:10136108", - "urn:issn:1089-1544", - "urn:lccn: 74640592", - "urn:oclc:1791366", - "urn:oclc:1791366 ", - "urn:undefined:(OCoLC)1791366", - "urn:undefined:(OCoLC)1534467 (OCoLC)7891854 (OCoLC)8308290" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art objects -- Collectors and collecting -- Periodicals.", - "Antiques -- Periodicals." - ], - "titleDisplay": [ - "The Lyle official antiques review." - ], - "uri": "b10136108", - "lccClassification": [ - "NK1133 .L9" - ], - "numItems": [ - 19 - ], - "numAvailable": [ - 19 - ], - "placeOfPublication": [ - "[Galashiels, Scot." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Lyle off. antiq. rev.", - "The Lyle official antiques review" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 14.341686, - "b10136108" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 19, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10136108", - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433062901107" - ], - "physicalLocation": [ - "JQL 12-10" - ], - "shelfMark_sort": "aJQL 12-10 001992", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1992" - } - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " -1992" - ], - "type": [ - "bf:Item" - ], - "uri": "i14786793", - "shelfMark": [ - "JQL 12-10 1992" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-10 1992" - }, - { - "type": "bf:Barcode", - "value": "33433062901107" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "enumerationChronology": [ - "1992" - ], - "idBarcode": [ - "33433062901107" - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NQ" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - " -1992" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10136108", - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433062901099" - ], - "physicalLocation": [ - "JQL 12-10" - ], - "shelfMark_sort": "aJQL 12-10 001991", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1991" - } - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " -1991" - ], - "type": [ - "bf:Item" - ], - "uri": "i14786792", - "shelfMark": [ - "JQL 12-10 1991" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-10 1991" - }, - { - "type": "bf:Barcode", - "value": "33433062901099" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "enumerationChronology": [ - "1991" - ], - "idBarcode": [ - "33433062901099" - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NQ" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - " -1991" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10136108", - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433062901081" - ], - "physicalLocation": [ - "JQL 12-10" - ], - "shelfMark_sort": "aJQL 12-10 001990", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "1990", - "lte": "1990" - } - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ - " -1990" - ], - "type": [ - "bf:Item" - ], - "uri": "i14786791", - "shelfMark": [ - "JQL 12-10 1990" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-10 1990" - }, - { - "type": "bf:Barcode", - "value": "33433062901081" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "enumerationChronology": [ - "1990" - ], - "idBarcode": [ - "33433062901081" - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NQ" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - " -1990" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10662200", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Journal of the Association of Art Historians.\"", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Also issued online.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "v. 1- Mar. 1978-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Historiography", - "Art -- Historiography -- Periodicals" - ], - "numItemDatesParsed": [ - 53 - ], - "publisherLiteral": [ - "Blackwell Publishers, etc.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 54 - ], - "createdYear": [ - 1978 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Art history." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 06-23" - ], - "numItemVolumesParsed": [ - 53 - ], - "createdString": [ - "1978" - ], - "idLccn": [ - "80646761" - ], - "idIssn": [ - "0141-6790" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Association of Art Historians (Great Britain)" - ], - "dateStartYear": [ - 1978 - ], - "idOclc": [ - "3952807" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 06-23" - }, - { - "type": "nypl:Bnumber", - "value": "10662200" - }, - { - "type": "nypl:Oclc", - "value": "3952807" - }, - { - "type": "bf:Lccn", - "value": "80646761" - }, - { - "type": "bf:Issn", - "value": "0141-6790" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S200000002" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1978)-36:1(2013)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 06-23" - } - ], - "physicalLocation": [ - "JQL 06-23" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 06-23" - ], - "uri": "h1006526" - } - ], - "updatedAt": 1715101749317, - "publicationStatement": [ - "[Oxford, etc. New York, etc. : Blackwell Publishers, etc.]" - ], - "identifier": [ - "urn:shelfmark:JQL 06-23", - "urn:bnum:10662200", - "urn:oclc:3952807", - "urn:lccn:80646761", - "urn:issn:0141-6790", - "urn:identifier:(WaOLN)S200000002" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Historiography -- Periodicals." - ], - "titleDisplay": [ - "Art history." - ], - "uri": "b10662200", - "lccClassification": [ - "N7480 .A77" - ], - "placeOfPublication": [ - "[Oxford, etc. New York, etc." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Art hist.", - "Art history" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 14.341686, - "b10662200" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 54, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10662200", - "_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": "2012", - "lte": "2013" - } - ], - "enumerationChronology": [ - "v. 35-36 (Sept. 2012-Feb. 2013)" - ], - "enumerationChronology_sort": [ - " 35-2012" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433069827420" - ], - "identifier": [ - "urn:shelfmark:JQL 06-23 v. 35-36 (Sept. 2012-Feb. 2013)", - "urn:barcode:33433069827420" - ], - "identifierV2": [ - { - "value": "JQL 06-23 v. 35-36 (Sept. 2012-Feb. 2013)", - "type": "bf:ShelfMark" - }, - { - "value": "33433069827420", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 06-23" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 06-23 v. 35-36 (Sept. 2012-Feb. 2013)" - ], - "shelfMark_sort": "aJQL 06-23 v. 000035-36 (Sept. 2012-Feb. 2013)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 36 - } - ], - "uri": "i34535062" - }, - "sort": [ - " 35-2012" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10662200", - "_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": "2012", - "lte": "2012" - } - ], - "enumerationChronology": [ - "v. 35 (Feb.-June 2012)" - ], - "enumerationChronology_sort": [ - " 35-2012" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433069836363" - ], - "identifier": [ - "urn:shelfmark:JQL 06-23 v. 35 (Feb.-June 2012)", - "urn:barcode:33433069836363" - ], - "identifierV2": [ - { - "value": "JQL 06-23 v. 35 (Feb.-June 2012)", - "type": "bf:ShelfMark" - }, - { - "value": "33433069836363", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 06-23" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 06-23 v. 35 (Feb.-June 2012)" - ], - "shelfMark_sort": "aJQL 06-23 v. 000035 (Feb.-June 2012)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 35 - } - ], - "uri": "i34394920" - }, - "sort": [ - " 35-2012" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10662200", - "_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": "2011", - "lte": "2011" - } - ], - "enumerationChronology": [ - "v. 34 (Sept.-Nov. 2011)" - ], - "enumerationChronology_sort": [ - " 34-2011" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433110614108" - ], - "identifier": [ - "urn:shelfmark:JQL 06-23 v. 34 (Sept.-Nov. 2011)", - "urn:barcode:33433110614108" - ], - "identifierV2": [ - { - "value": "JQL 06-23 v. 34 (Sept.-Nov. 2011)", - "type": "bf:ShelfMark" - }, - { - "value": "33433110614108", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 06-23" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 06-23 v. 34 (Sept.-Nov. 2011)" - ], - "shelfMark_sort": "aJQL 06-23 v. 000034 (Sept.-Nov. 2011)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "uri": "i31577355" - }, - "sort": [ - " 34-2011" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10992643", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Additional Formats", - "label": "Issued also on the World Wide Web.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English, French, German, and Italian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "N. 1 (1980)-" - ], - "subjectLiteral_exploded": [ - "Arts", - "Arts -- Periodicals" - ], - "numItemDatesParsed": [ - 75 - ], - "publisherLiteral": [ - "IRSA ; distribuzione LICOSA" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 75 - ], - "createdYear": [ - 1980 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Artibus et historiae." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 06-20" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81641099" - ], - "idIssn": [ - "0391-9064" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "IRSA." - ], - "dateStartYear": [ - 1980 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "7377675", - "NYPG85-S7765" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 06-20" - }, - { - "type": "nypl:Bnumber", - "value": "10992643" - }, - { - "type": "nypl:Oclc", - "value": "7377675" - }, - { - "type": "nypl:Oclc", - "value": "NYPG85-S7765" - }, - { - "type": "bf:Lccn", - "value": "81641099" - }, - { - "type": "bf:Issn", - "value": "0391-9064" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0999915" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7377675" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Vol. No. 74 (2016)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. No. 75 (2017)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 76 (2017)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 77 (2018)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 78 (2019)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 79 (2019)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 80 (2019)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 81 (2020)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 82 (2020)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 83 (2021)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 84 (2021)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 85 (2022)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 86 (2022)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 87 (2023)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Arrived" - }, - { - "coverage": "No. 88 (2024)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-20" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(1980)-83(2021), 85(2022)-", - "no. 79 (2019)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 06-20" - } - ], - "physicalLocation": [ - "JQL 06-20" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 06-20" - ], - "uri": "h1057864" - } - ], - "updatedAt": 1713056488053, - "publicationStatement": [ - "Venezia : IRSA ; Firenze : distribuzione LICOSA, 1980-" - ], - "identifier": [ - "urn:shelfmark:JQL 06-20", - "urn:bnum:10992643", - "urn:oclc:7377675", - "urn:oclc:NYPG85-S7765", - "urn:lccn:81641099", - "urn:issn:0391-9064", - "urn:identifier:(WaOLN)nyp0999915", - "urn:identifier:(OCoLC)7377675" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Arts -- Periodicals." - ], - "titleDisplay": [ - "Artibus et historiae." - ], - "uri": "b10992643", - "lccClassification": [ - "NX1.A1 A77" - ], - "placeOfPublication": [ - "Venezia : Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 14.341686, - "b10992643" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 75, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10992643", - "_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": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "nr. 86 (2022)" - ], - "enumerationChronology_sort": [ - " -2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129948604" - ], - "identifier": [ - "urn:shelfmark:JQL 06-20 nr. 86 (2022)", - "urn:barcode:33433129948604" - ], - "identifierV2": [ - { - "value": "JQL 06-20 nr. 86 (2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129948604", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 06-20" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 06-20 nr. 86 (2022)" - ], - "shelfMark_sort": "aJQL 06-20 nr. 86 (2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40460575" - }, - "sort": [ - " -2022" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10992643", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "nr. 85 (2022)" - ], - "enumerationChronology_sort": [ - " -2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433130235942" - ], - "identifier": [ - "urn:shelfmark:JQL 06-20 nr. 85 (2022)", - "urn:barcode:33433130235942" - ], - "identifierV2": [ - { - "value": "JQL 06-20 nr. 85 (2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433130235942", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 06-20" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 06-20 nr. 85 (2022)" - ], - "shelfMark_sort": "aJQL 06-20 nr. 85 (2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40132241" - }, - "sort": [ - " -2022" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10992643", - "_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": "2021", - "lte": "2021" - } - ], - "dueDate": [ - "2024-07-12" - ], - "enumerationChronology": [ - "nr. 84 (2021)" - ], - "enumerationChronology_sort": [ - " -2021" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076530389" - ], - "identifier": [ - "urn:shelfmark:JQL 06-20 nr. 84 (2021)", - "urn:barcode:33433076530389" - ], - "identifierV2": [ - { - "value": "JQL 06-20 nr. 84 (2021)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076530389", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 06-20" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 06-20 nr. 84 (2021)" - ], - "shelfMark_sort": "aJQL 06-20 nr. 84 (2021)", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "type": [ - "bf:Item" - ], - "uri": "i40875299" - }, - "sort": [ - " -2021" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11327199", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Numbering", - "label": "Continues numbering of earlier title.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Continues: Cuadernos de arte y literatura, issued by the University of Granada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "t. 11- ; 1974-" - ], - "subjectLiteral_exploded": [ - "Art, Spanish", - "Art, Spanish -- Periodicals", - "Architecture, Spanish", - "Architecture, Spanish -- Periodicals" - ], - "numItemDatesParsed": [ - 32 - ], - "publisherLiteral": [ - "Departamento de Historia del Arte, Universidad de Granada]" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 34 - ], - "createdYear": [ - 1974 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Cuadernos de arte de la Universidad de Granada." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 11-2" - ], - "numItemVolumesParsed": [ - 34 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "76650092 //r83" - ], - "idIssn": [ - "0210-962x" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Universidad de Granada. Departamento de Historia del Arte." - ], - "dateStartYear": [ - 1974 - ], - "idOclc": [ - "NYPG90-S6406" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 11-2" - }, - { - "type": "nypl:Bnumber", - "value": "11327199" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-S6406" - }, - { - "type": "bf:Lccn", - "value": "76650092 //r83" - }, - { - "type": "bf:Issn", - "value": "0210-962x" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1335046" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 30 (1999)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 31 (2000)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 32 (2001)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 33 (2002)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 34 (2003)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 35 (2004)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 36 (2005)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 37 (2006)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 38 (2007)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 39 (2008)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 40 (2009)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Arrived" - }, - { - "coverage": "No. 41 (2010)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Expected" - }, - { - "coverage": "No. 42 (2011)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-2" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "20-29-", - "no. 37 (2006) - no. 40 (2009)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 11-2" - } - ], - "physicalLocation": [ - "JQL 11-2" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 11-2" - ], - "uri": "h1058975" - } - ], - "updatedAt": 1711367405557, - "publicationStatement": [ - "[Granada, Departamento de Historia del Arte, Universidad de Granada]" - ], - "identifier": [ - "urn:shelfmark:JQL 11-2", - "urn:bnum:11327199", - "urn:oclc:NYPG90-S6406", - "urn:lccn:76650092 //r83", - "urn:issn:0210-962x", - "urn:identifier:(WaOLN)nyp1335046" - ], - "numCheckinCardItems": [ - 13 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Spanish -- Periodicals.", - "Architecture, Spanish -- Periodicals." - ], - "titleDisplay": [ - "Cuadernos de arte de la Universidad de Granada." - ], - "uri": "b11327199", - "lccClassification": [ - "NX7 .G7a" - ], - "placeOfPublication": [ - "[Granada" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Cuadernos de arte" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 14.341686, - "b11327199" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 34, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11327199", - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2011-01-01", - "lte": "2011-01-01" - } - ], - "enumerationChronology": [ - "No. 42 (2011)" - ], - "enumerationChronology_sort": [ - " 42-2011-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 11-2", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-2" - ], - "shelfMark_sort": "aJQL 11-000002", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1058975-12", - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "volumeRaw": [ - "No. 42" - ] - }, - "sort": [ - " 42-2011-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11327199", - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2010-01-01", - "lte": "2010-01-01" - } - ], - "enumerationChronology": [ - "No. 41 (2010)" - ], - "enumerationChronology_sort": [ - " 41-2010-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 11-2", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-2" - ], - "shelfMark_sort": "aJQL 11-000002", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1058975-11", - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "volumeRaw": [ - "No. 41" - ] - }, - "sort": [ - " 41-2010-01-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11327199", - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2009-01-01", - "lte": "2009-01-01" - } - ], - "enumerationChronology": [ - "No. 40 (2009)" - ], - "enumerationChronology_sort": [ - " 40-2009-01-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 11-2", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-2" - ], - "shelfMark_sort": "aJQL 11-000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1058975-10", - "volumeRange": [ - { - "gte": 40, - "lte": 40 - } - ], - "volumeRaw": [ - "No. 40" - ] - }, - "sort": [ - " 40-2009-01-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11440963", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published: Hamburg : Felix Meiner Verlag, 1999-", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Bd. 11/1-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Periodicals" - ], - "numItemDatesParsed": [ - 47 - ], - "publisherLiteral": [ - "Kölner Universitäts-Verlag" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 47 - ], - "createdYear": [ - 1966 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Zeitschrift für Ästhetik und allgemeine Kunstwissenschaft." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 06-15" - ], - "numItemVolumesParsed": [ - 47 - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "91643781" - ], - "idIssn": [ - "1439-5886" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "idOclc": [ - "5662998" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 06-15" - }, - { - "type": "nypl:Bnumber", - "value": "11440963" - }, - { - "type": "nypl:Oclc", - "value": "5662998" - }, - { - "type": "bf:Lccn", - "value": "91643781" - }, - { - "type": "bf:Issn", - "value": "1439-5886" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "0044-2186" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S230000018" - } - ], - "uniformTitle": [ - "Zeitschrift für Ästhetik und allgemeine Kunstwissenschaft (Cologne, Germany)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Vol. 66 No. 1 (2021)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 2 (2021)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 1 (2022)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 2 (2022)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 1 (2023)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 2 (2023)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 69 No. 1 (2023)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 69 No. 2 (2024)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 1 (2024)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 2 (2025)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-15" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "11(1966)-65:1(2020),68:2(2023)-", - "v. 64, no. 1 (2019) - no. 2 (2019); v. 66, no. 1 (2021) - v. 67, no. 2 (2022)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 06-15" - } - ], - "physicalLocation": [ - "JQL 06-15" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 06-15" - ], - "uri": "h1007945" - } - ], - "updatedAt": 1711281907702, - "publicationStatement": [ - "Köln : Kölner Universitäts-Verlag, 1966-" - ], - "identifier": [ - "urn:shelfmark:JQL 06-15", - "urn:bnum:11440963", - "urn:oclc:5662998", - "urn:lccn:91643781", - "urn:issn:1439-5886", - "urn:issn:0044-2186", - "urn:identifier:(WaOLN)S230000018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Periodicals." - ], - "titleDisplay": [ - "Zeitschrift für Ästhetik und allgemeine Kunstwissenschaft." - ], - "uri": "b11440963", - "lccClassification": [ - "N9 .J195" - ], - "placeOfPublication": [ - "Köln" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "ZS für Ästhetik und allgemeine Kunstwissenschaft", - "Ästhetik und allgemeine Kunstwissenschaft <1999- >" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 14.341686, - "b11440963" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 47, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11440963", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "v. 68, no. 2 (2023)" - ], - "enumerationChronology_sort": [ - " 68-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129967240" - ], - "identifier": [ - "urn:shelfmark:JQL 06-15 v. 68, no. 2 (2023)", - "urn:barcode:33433129967240" - ], - "identifierV2": [ - { - "value": "JQL 06-15 v. 68, no. 2 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129967240", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 06-15" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 06-15 v. 68, no. 2 (2023)" - ], - "shelfMark_sort": "aJQL 06-15 v. 000068, no. 2 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "uri": "i40662038" - }, - "sort": [ - " 68-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11440963", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "v. 68, no. 1 (2023)" - ], - "enumerationChronology_sort": [ - " 68-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433130242054" - ], - "identifier": [ - "urn:shelfmark:JQL 06-15 v. 68, no. 1 (2023)", - "urn:barcode:33433130242054" - ], - "identifierV2": [ - { - "value": "JQL 06-15 v. 68, no. 1 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433130242054", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 06-15" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 06-15 v. 68, no. 1 (2023)" - ], - "shelfMark_sort": "aJQL 06-15 v. 000068, no. 1 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "uri": "i40488218" - }, - "sort": [ - " 68-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11440963", - "_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": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "v. 67 no. 2 (2022)" - ], - "enumerationChronology_sort": [ - " 67-2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433133816045" - ], - "identifier": [ - "urn:shelfmark:JQL 06-15 v. 67 no. 2 (2022)", - "urn:barcode:33433133816045" - ], - "identifierV2": [ - { - "value": "JQL 06-15 v. 67 no. 2 (2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133816045", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "JQL 06-15" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 06-15 v. 67 no. 2 (2022)" - ], - "shelfMark_sort": "aJQL 06-15 v. 000067 no. 2 (2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "uri": "i39945932" - }, - "sort": [ - " 67-2022" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11441873", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Issues have also a distinctive title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "No 1/2 (juin 1988)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Historiography", - "Art -- Historiography -- Periodicals" - ], - "numItemDatesParsed": [ - 37 - ], - "publisherLiteral": [ - "Editions C.D.U.-S.E.D.E.S" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 37 - ], - "createdYear": [ - 1988 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Histoire de l'art : bulletin d'information de l'Institut national d'histoire de l'art publié en collaboration avec l'Association des professeurs d'archéologie et d'histoire de l'art des universités." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 11-5" - ], - "numItemVolumesParsed": [ - 37 - ], - "createdString": [ - "1988" - ], - "idLccn": [ - "89646351" - ], - "idIssn": [ - "0992-2059" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Institut national d'histoire de l'art (France)", - "Association des professeurs d'archéologie et d'histoire de l'art des universités (France)" - ], - "dateStartYear": [ - 1988 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "NYPG91-S2785" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 11-5" - }, - { - "type": "nypl:Bnumber", - "value": "11441873" - }, - { - "type": "nypl:Oclc", - "value": "NYPG91-S2785" - }, - { - "type": "bf:Lccn", - "value": "89646351" - }, - { - "type": "bf:Issn", - "value": "0992-2059" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1450054" - } - ], - "uniformTitle": [ - "Histoire de l'art (Institut national d'histoire de l'art (France))" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 84-85 (2019)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 86 (2020)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 87 (2021)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 88 (2021)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 89 (2022)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 90 (2022)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 91 (2023)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 92 (2023)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 93 (2024)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Expected" - }, - { - "coverage": "No. 94 (2024)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-5" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "9/10(1990)-92(2023)-", - "2018" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 11-5" - } - ], - "physicalLocation": [ - "JQL 11-5" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 11-5" - ], - "uri": "h1012976" - } - ], - "updatedAt": 1711281260543, - "publicationStatement": [ - "Paris : Editions C.D.U.-S.E.D.E.S, 1988-" - ], - "identifier": [ - "urn:shelfmark:JQL 11-5", - "urn:bnum:11441873", - "urn:oclc:NYPG91-S2785", - "urn:lccn:89646351", - "urn:issn:0992-2059", - "urn:identifier:(WaOLN)nyp1450054" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1988" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Historiography -- Periodicals." - ], - "titleDisplay": [ - "Histoire de l'art : bulletin d'information de l'Institut national d'histoire de l'art publié en collaboration avec l'Association des professeurs d'archéologie et d'histoire de l'art des universités." - ], - "uri": "b11441873", - "lccClassification": [ - "N7480 .H57" - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Hist. art (Paris, 1988)", - "Histoire de l'art (Paris, 1988)" - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 14.341686, - "b11441873" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 37, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11441873", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "no. 92 (2023)" - ], - "enumerationChronology_sort": [ - " 92-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129967018" - ], - "identifier": [ - "urn:shelfmark:JQL 11-5 no. 92 (2023)", - "urn:barcode:33433129967018" - ], - "identifierV2": [ - { - "value": "JQL 11-5 no. 92 (2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129967018", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 11-5" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 11-5 no. 92 (2023)" - ], - "shelfMark_sort": "aJQL 11-5 no. 000092 (2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "uri": "i40652677" - }, - "sort": [ - " 92-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11441873", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "no. 91 (June 2023)" - ], - "enumerationChronology_sort": [ - " 91-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mak32", - "label": "SASB S3 - Periodicals Rm 108" - } - ], - "holdingLocation_packed": [ - "loc:mak32||SASB S3 - Periodicals Rm 108" - ], - "idBarcode": [ - "33433129938522" - ], - "identifier": [ - "urn:shelfmark:JQL 11-5 no. 91 (June 2023)", - "urn:barcode:33433129938522" - ], - "identifierV2": [ - { - "value": "JQL 11-5 no. 91 (June 2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433129938522", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 11-5" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 11-5 no. 91 (June 2023)" - ], - "shelfMark_sort": "aJQL 11-5 no. 000091 (June 2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "uri": "i40293251" - }, - "sort": [ - " 91-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11441873", - "_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": "2022", - "lte": "2022" - } - ], - "enumerationChronology": [ - "no. 90 (2022)" - ], - "enumerationChronology_sort": [ - " 90-2022" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433133815476" - ], - "identifier": [ - "urn:shelfmark:JQL 11-5 no. 90 (2022)", - "urn:barcode:33433133815476" - ], - "identifierV2": [ - { - "value": "JQL 11-5 no. 90 (2022)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133815476", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-5" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-5 no. 90 (2022)" - ], - "shelfMark_sort": "aJQL 11-5 no. 000090 (2022)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 90, - "lte": 90 - } - ], - "uri": "i39928117" - }, - "sort": [ - " 90-2022" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11483487", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Issued also on the World Wide Web.", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by: School of Art and Design of the University of Illinois at Chicago.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1, no. 1 (spring 1984)-" - ], - "subjectLiteral_exploded": [ - "Design", - "Design -- Periodicals", - "Architectural design", - "Architectural design -- Periodicals", - "Industrial design", - "Industrial design -- Periodicals" - ], - "numItemDatesParsed": [ - 42 - ], - "publisherLiteral": [ - "University of Illinois at Chicago" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 42 - ], - "createdYear": [ - 1984 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Design issues." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 11-21" - ], - "numItemVolumesParsed": [ - 42 - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "sn 84008664" - ], - "idIssn": [ - "0747-9360" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "University of Illinois at Chicago. School of Art and Design." - ], - "dateStartYear": [ - 1984 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "10836452" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 11-21" - }, - { - "type": "nypl:Bnumber", - "value": "11483487" - }, - { - "type": "nypl:Oclc", - "value": "10836452" - }, - { - "type": "bf:Lccn", - "value": "sn 84008664" - }, - { - "type": "bf:Issn", - "value": "0747-9360" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1491734" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)10836452" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1:2(1984), 2:2(1985), 3:2(1986)-5(1988/89), 7(1990/91)-30:1(2014)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 11-21" - } - ], - "physicalLocation": [ - "JQL 11-21" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 11-21" - ], - "uri": "h1061638" - } - ], - "updatedAt": 1715137751644, - "publicationStatement": [ - "Chicago, Ill. : University of Illinois at Chicago, c1984-" - ], - "identifier": [ - "urn:shelfmark:JQL 11-21", - "urn:bnum:11483487", - "urn:oclc:10836452", - "urn:lccn:sn 84008664", - "urn:issn:0747-9360", - "urn:identifier:(WaOLN)nyp1491734", - "urn:identifier:(OCoLC)10836452" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Design -- Periodicals.", - "Architectural design -- Periodicals.", - "Industrial design -- Periodicals." - ], - "titleDisplay": [ - "Design issues." - ], - "uri": "b11483487", - "electronicResources": [ - { - "label": "E-journal through JSTOR (Onsite access at NYPL Research Libraries)", - "url": "http://www.jstor.org/journals/07479360.html" - } - ], - "placeOfPublication": [ - "Chicago, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Des. issues", - "Design issues" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 14.341686, - "b11483487" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 42, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11483487", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology": [ - "v. 30, no. 1 (Winter 2014)" - ], - "enumerationChronology_sort": [ - " 30-2014" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433127812190" - ], - "identifier": [ - "urn:shelfmark:JQL 11-21 v. 30, no. 1 (Winter 2014)", - "urn:barcode:33433127812190" - ], - "identifierV2": [ - { - "value": "JQL 11-21 v. 30, no. 1 (Winter 2014)", - "type": "bf:ShelfMark" - }, - { - "value": "33433127812190", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-21" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-21 v. 30, no. 1 (Winter 2014)" - ], - "shelfMark_sort": "aJQL 11-21 v. 000030, no. 1 (Winter 2014)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i36703018" - }, - "sort": [ - " 30-2014" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11483487", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology": [ - "v. 29, no. 4 (Fall 2013)" - ], - "enumerationChronology_sort": [ - " 29-2013" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433127812208" - ], - "identifier": [ - "urn:shelfmark:JQL 11-21 v. 29, no. 4 (Fall 2013)", - "urn:barcode:33433127812208" - ], - "identifierV2": [ - { - "value": "JQL 11-21 v. 29, no. 4 (Fall 2013)", - "type": "bf:ShelfMark" - }, - { - "value": "33433127812208", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-21" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-21 v. 29, no. 4 (Fall 2013)" - ], - "shelfMark_sort": "aJQL 11-21 v. 000029, no. 4 (Fall 2013)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "uri": "i36703017" - }, - "sort": [ - " 29-2013" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11483487", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology": [ - "v. 29, no. 3 (Summer 2013)" - ], - "enumerationChronology_sort": [ - " 29-2013" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433127812216" - ], - "identifier": [ - "urn:shelfmark:JQL 11-21 v. 29, no. 3 (Summer 2013)", - "urn:barcode:33433127812216" - ], - "identifierV2": [ - { - "value": "JQL 11-21 v. 29, no. 3 (Summer 2013)", - "type": "bf:ShelfMark" - }, - { - "value": "33433127812216", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 11-21" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 11-21 v. 29, no. 3 (Summer 2013)" - ], - "shelfMark_sort": "aJQL 11-21 v. 000029, no. 3 (Summer 2013)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "uri": "i36703016" - }, - "sort": [ - " 29-2013" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11634411", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Published: Berlin, <2002->", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1. Jahrg., Nr. 1 (Herbst 1990)-" - ], - "subjectLiteral_exploded": [ - "Art, Modern", - "Art, Modern -- 20th century", - "Art, Modern -- 20th century -- Periodicals", - "Art", - "Art -- Periodicals" - ], - "numItemDatesParsed": [ - 56 - ], - "publisherLiteral": [ - "Texte zur Kunst GMBH" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 56 - ], - "createdYear": [ - 1990 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Texte zur Kunst." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 07-16" - ], - "numItemVolumesParsed": [ - 56 - ], - "createdString": [ - "1990" - ], - "idLccn": [ - "sn 95030055" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1990 - ], - "idOclc": [ - "26389480" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 07-16" - }, - { - "type": "nypl:Bnumber", - "value": "11634411" - }, - { - "type": "nypl:Oclc", - "value": "26389480" - }, - { - "type": "bf:Lccn", - "value": "sn 95030055" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "0940-9596" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)26389480" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S270000015" - } - ], - "uniformTitle": [ - "Texte zur Kunst (Cologne, Germany)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Vol. 29 No. 115 (Sep. 2019)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 29 No. 116 (Dec. 2019)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 30 No. 117 (Mar. 2020)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 28 No. 118 (Jun. 2020)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 30 No. 119 (Sep. 2020)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 30 No. 120 (Dec. 2020)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 31 No. 121 (Mar. 2021)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 31 No. 122 (Jun. 2021)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 31 No. 123 (Sep. 2021)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 31 No. 124 (Dec. 2021)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 32 No. 125 (Mar. 2022)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 32 No. 126 (Jun. 2022)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 32 No. 127 (Sep. 2022)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 32 No. 128 (Dec. 2022)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 33 No. 129 (Mar. 2023)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 33 No. 130 (Jun. 2023)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 33 No. 131 (Sep. 2023)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 33 No. 132 (Dec. 2023)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 33 No. 133 (Mar. 2024)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 33 No. 134 (Jun. 2024)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 33 No. 135 (Sep. 2024)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 34 No. 136 (Dec. 2024)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 34 No. 137 (Mar. 2025)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 07-16" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1:1(1990)-29:114(2019)- " - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 07-16" - } - ], - "notes": [ - "NYPL lacks: no.66 (June 2007). " - ], - "physicalLocation": [ - "JQL 07-16" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "shelfMark": [ - "JQL 07-16" - ], - "uri": "h1015696" - } - ], - "updatedAt": 1714593786527, - "publicationStatement": [ - "Köln : Texte zur Kunst GMBH, c1990-" - ], - "identifier": [ - "urn:shelfmark:JQL 07-16", - "urn:bnum:11634411", - "urn:oclc:26389480", - "urn:lccn:sn 95030055", - "urn:issn:0940-9596", - "urn:identifier:(OCoLC)26389480", - "urn:identifier:(WaOLN)S270000015" - ], - "numCheckinCardItems": [ - 23 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Modern -- 20th century -- Periodicals.", - "Art -- Periodicals." - ], - "titleDisplay": [ - "Texte zur Kunst." - ], - "uri": "b11634411", - "lccClassification": [ - "N6480 .T498" - ], - "placeOfPublication": [ - "Köln" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 14.341686, - "b11634411" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 56, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11634411", - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2025-03-01", - "lte": "2025-03-01" - } - ], - "enumerationChronology": [ - "Vol. 34 No. 137 (Mar. 2025)" - ], - "enumerationChronology_sort": [ - " 34-2025-03-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "identifierV2": [ - { - "value": "JQL 07-16", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 07-16" - ], - "shelfMark_sort": "aJQL 07-000016", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1015696-3", - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "volumeRaw": [ - "Vol. 34 No. 137" - ] - }, - "sort": [ - " 34-2025-03-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11634411", - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2024-12-01", - "lte": "2024-12-01" - } - ], - "enumerationChronology": [ - "Vol. 34 No. 136 (Dec. 2024)" - ], - "enumerationChronology_sort": [ - " 34-2024-12-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "identifierV2": [ - { - "value": "JQL 07-16", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 07-16" - ], - "shelfMark_sort": "aJQL 07-000016", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1015696-4", - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "volumeRaw": [ - "Vol. 34 No. 136" - ] - }, - "sort": [ - " 34-2024-12-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11634411", - "_nested": { - "field": "items", - "offset": 50 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2024-09-01", - "lte": "2024-09-01" - } - ], - "enumerationChronology": [ - "Vol. 33 No. 135 (Sep. 2024)" - ], - "enumerationChronology_sort": [ - " 33-2024-09-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "identifierV2": [ - { - "value": "JQL 07-16", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 07-16" - ], - "shelfMark_sort": "aJQL 07-000016", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1015696-5", - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "volumeRaw": [ - "Vol. 33 No. 135" - ] - }, - "sort": [ - " 33-2024-09-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11810491", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "A preliminary, trial issue called \"Sample issue\" published early 1993.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1, no. 1 (Mar. 1993)-" - ], - "subjectLiteral_exploded": [ - "Art, Asian", - "Art, Asian -- Periodicals", - "Art", - "Art -- Islands of the Pacific", - "Art -- Islands of the Pacific -- Periodicals", - "Art, Modern", - "Art, Modern -- 20th century", - "Art, Modern -- 20th century -- Asia", - "Art, Modern -- 20th century -- Asia -- Periodicals", - "Art, Modern -- 20th century -- Islands of the Pacific", - "Art, Modern -- 20th century -- Islands of the Pacific -- Periodicals" - ], - "numItemDatesParsed": [ - 53 - ], - "publisherLiteral": [ - "Fine Arts Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 54 - ], - "createdYear": [ - 1993 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Art and AsiaPacific." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 11-8" - ], - "numItemVolumesParsed": [ - 52 - ], - "createdString": [ - "1993" - ], - "idLccn": [ - "sn 93031607" - ], - "idIssn": [ - "1039-3625" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1993 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "28942514", - "NYPG94-S1202" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 11-8" - }, - { - "type": "nypl:Bnumber", - "value": "11810491" - }, - { - "type": "nypl:Oclc", - "value": "28942514" - }, - { - "type": "nypl:Oclc", - "value": "NYPG94-S1202" - }, - { - "type": "bf:Lccn", - "value": "sn 93031607" - }, - { - "type": "bf:Issn", - "value": "1039-3625" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0358034" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)28942514" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 127 (Mar. 2022)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 128 (May. 2022)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 129 (Jul. 2022)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 130 (Sep. 2022)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 131 (Nov. 2022)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 132 (Mar. 2023)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 133 (May. 2023)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 134 (Jul. 2023)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 135 (Sep. 2023)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 136 (Nov. 2023)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9(xix) (2024)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 137 (Mar. 2024)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Arrived" - }, - { - "coverage": "No. 138 (May. 2024)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Expected" - }, - { - "coverage": "No. 139 (Jul. 2024)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Expected" - }, - { - "coverage": "No. 140 (Sep. 2024)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Expected" - }, - { - "coverage": "No. 141 (Nov. 2024)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 11-8" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(1993/94)-3(1996); 13(1997)-112(2019),114(2019)-126(2021)-", - "Special issue incl. with 1993", - "no. 92 (2015-03/04)-" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 11-8" - } - ], - "physicalLocation": [ - "JQL 11-8" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "shelfMark": [ - "JQL 11-8" - ], - "uri": "h1020618" - } - ], - "updatedAt": 1711637449367, - "publicationStatement": [ - "Singapore : Fine Arts Press, c1993-" - ], - "identifier": [ - "urn:shelfmark:JQL 11-8", - "urn:bnum:11810491", - "urn:oclc:28942514", - "urn:oclc:NYPG94-S1202", - "urn:lccn:sn 93031607", - "urn:issn:1039-3625", - "urn:identifier:(WaOLN)nyp0358034", - "urn:identifier:(OCoLC)28942514" - ], - "numCheckinCardItems": [ - 17 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1993" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Asian -- Periodicals.", - "Art -- Islands of the Pacific -- Periodicals.", - "Art, Modern -- 20th century -- Asia -- Periodicals.", - "Art, Modern -- 20th century -- Islands of the Pacific -- Periodicals." - ], - "titleDisplay": [ - "Art and AsiaPacific." - ], - "uri": "b11810491", - "lccClassification": [ - "N7260 .A78" - ], - "placeOfPublication": [ - "Singapore" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Art AsiaPacific", - "Art and Asia Pacific", - "Art and AsiaPacific quarterly journal", - "Art quarterly" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 14.341686, - "b11810491" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 54, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11810491", - "_nested": { - "field": "items", - "offset": 53 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2024-11-01", - "lte": "2024-11-01" - } - ], - "enumerationChronology": [ - "No. 141 (Nov. 2024)" - ], - "enumerationChronology_sort": [ - " 141-2024-11-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "JQL 11-8", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-8" - ], - "shelfMark_sort": "aJQL 11-000008", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1020618-0", - "volumeRange": [ - { - "gte": 141, - "lte": 141 - } - ], - "volumeRaw": [ - "No. 141" - ] - }, - "sort": [ - " 141-2024-11-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11810491", - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2024-09-01", - "lte": "2024-09-01" - } - ], - "enumerationChronology": [ - "No. 140 (Sep. 2024)" - ], - "enumerationChronology_sort": [ - " 140-2024-09-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "JQL 11-8", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-8" - ], - "shelfMark_sort": "aJQL 11-000008", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1020618-1", - "volumeRange": [ - { - "gte": 140, - "lte": 140 - } - ], - "volumeRaw": [ - "No. 140" - ] - }, - "sort": [ - " 140-2024-09-01" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11810491", - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2024-07-01", - "lte": "2024-07-01" - } - ], - "enumerationChronology": [ - "No. 139 (Jul. 2024)" - ], - "enumerationChronology_sort": [ - " 139-2024-07-01" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "JQL 11-8", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 11-8" - ], - "shelfMark_sort": "aJQL 11-000008", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1020618-2", - "volumeRange": [ - { - "gte": 139, - "lte": 139 - } - ], - "volumeRaw": [ - "No. 139" - ] - }, - "sort": [ - " 139-2024-07-01" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11828771", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill. (part col.)" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Periodico d'arte contemporanea.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Art, Modern", - "Art, Modern -- 20th century", - "Art, Modern -- 20th century -- Periodicals" - ], - "numItemDatesParsed": [ - 33 - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 33 - ], - "createdYear": [ - null - ], - "title": [ - "D'Ars." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 09-15" - ], - "numItemVolumesParsed": [ - 33 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "4611582", - "NYPG774217066-S" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 09-15" - }, - { - "type": "nypl:Bnumber", - "value": "11828771" - }, - { - "type": "nypl:Oclc", - "value": "4611582" - }, - { - "type": "nypl:Oclc", - "value": "NYPG774217066-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1834253" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4611582" - } - ], - "holdings": [ - { - "holdingStatement": [ - "12(1971)-158(1999), 161(2000)-204(2010)-222(2016)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 09-15" - } - ], - "physicalLocation": [ - "JQL 09-15" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 09-15" - ], - "uri": "h1006398" - } - ], - "updatedAt": 1711062836021, - "publicationStatement": [ - "[Milano]" - ], - "identifier": [ - "urn:shelfmark:JQL 09-15", - "urn:bnum:11828771", - "urn:oclc:4611582", - "urn:oclc:NYPG774217066-S", - "urn:identifier:(WaOLN)nyp1834253", - "urn:identifier:(OCoLC)4611582" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art, Modern -- 20th century -- Periodicals." - ], - "titleDisplay": [ - "D'Ars." - ], - "uri": "b11828771", - "placeOfPublication": [ - "[Milano]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 14.341686, - "b11828771" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 33, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11828771", - "_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": "1996", - "lte": "1998" - } - ], - "enumerationChronology": [ - "no. 148-156 (1996-1998)" - ], - "enumerationChronology_sort": [ - " 148-1996" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433078286055" - ], - "identifier": [ - "urn:shelfmark:JQL 09-15 no. 148-156 (1996-1998)", - "urn:barcode:33433078286055" - ], - "identifierV2": [ - { - "value": "JQL 09-15 no. 148-156 (1996-1998)", - "type": "bf:ShelfMark" - }, - { - "value": "33433078286055", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 09-15" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 09-15 no. 148-156 (1996-1998)" - ], - "shelfMark_sort": "aJQL 09-15 no. 000148-156 (1996-1998)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 148, - "lte": 156 - } - ], - "uri": "i17520586" - }, - "sort": [ - " 148-1996" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11828771", - "_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": "1994", - "lte": "1995" - } - ], - "enumerationChronology": [ - "no. 143-147 (1994 July-1995 Dec.)" - ], - "enumerationChronology_sort": [ - " 143-1994" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433078286048" - ], - "identifier": [ - "urn:shelfmark:JQL 09-15 no. 143-147 (1994 July-1995 Dec.)", - "urn:barcode:33433078286048" - ], - "identifierV2": [ - { - "value": "JQL 09-15 no. 143-147 (1994 July-1995 Dec.)", - "type": "bf:ShelfMark" - }, - { - "value": "33433078286048", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 09-15" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 09-15 no. 143-147 (1994 July-1995 Dec.)" - ], - "shelfMark_sort": "aJQL 09-15 no. 000143-147 (1994 July-1995 Dec.)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 143, - "lte": 147 - } - ], - "uri": "i17520585" - }, - "sort": [ - " 143-1994" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11828771", - "_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": "1993", - "lte": "1994" - } - ], - "enumerationChronology": [ - "no. 139-142 (1993 Spring-1994 Apr.)" - ], - "enumerationChronology_sort": [ - " 139-1993" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433078286030" - ], - "identifier": [ - "urn:shelfmark:JQL 09-15 no. 139-142 (1993 Spring-1994 Apr.)", - "urn:barcode:33433078286030" - ], - "identifierV2": [ - { - "value": "JQL 09-15 no. 139-142 (1993 Spring-1994 Apr.)", - "type": "bf:ShelfMark" - }, - { - "value": "33433078286030", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 09-15" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 09-15 no. 139-142 (1993 Spring-1994 Apr.)" - ], - "shelfMark_sort": "aJQL 09-15 no. 000139-142 (1993 Spring-1994 Apr.)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 139, - "lte": 142 - } - ], - "uri": "i17520584" - }, - "sort": [ - " 139-1993" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12082346", - "_score": 14.341686, - "_source": { - "extent": [ - "v. : ill. (some col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 3-5 : Herausgegeben von Hans-Joachim Raupp, Rudolf E.O. Ekkart und Ulrich Grossmann.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 2-5: \"In Verbindung mit dem Rijksbureau voor Kunsthistorische Documentatie ... und dem Zentrum für Niederlande-Studien der Westfälischen Wilhelms-Universität Münster.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "SØR Rusche-Sammlung", - "SØR Rusche-Sammlung -- Catalogs", - "Painting, Dutch", - "Painting, Dutch -- 17th century", - "Painting, Dutch -- 17th century -- Catalogs", - "Painting, Flemish", - "Painting, Flemish -- 17th century", - "Painting, Flemish -- 17th century -- Catalogs", - "Painting", - "Painting -- Private collections", - "Painting -- Private collections -- Germany", - "Painting -- Private collections -- Germany -- Catalogs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lit" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 11 - ], - "createdYear": [ - 1995 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Niederländische Malerei des 17. Jahrhunderts der SØR Rusche-Sammlung" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 06-5" - ], - "numItemVolumesParsed": [ - 9 - ], - "createdString": [ - "1995" - ], - "idLccn": [ - "97139074" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Raupp, H.-J. (Hans-Joachim)", - "Grossmann, G. Ulrich (Georg Ulrich)", - "Ekkart, Rudolf E. O.", - "Universität Münster. Zentrum für Niederlande-Studien.", - "SØR Rusche-Sammlung.", - "Netherlands. Rijksbureau voor Kunsthistorische Documentatie." - ], - "dateStartYear": [ - 1995 - ], - "idOclc": [ - "35320855" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 06-5" - }, - { - "type": "nypl:Bnumber", - "value": "12082346" - }, - { - "type": "bf:Isbn", - "value": "3825822044 (v. 1)" - }, - { - "type": "bf:Isbn", - "value": "3825822370 (v. 2)" - }, - { - "type": "bf:Isbn", - "value": "3825822389 (v. 3)" - }, - { - "type": "bf:Isbn", - "value": "9783825822408 (v. 4)" - }, - { - "type": "bf:Isbn", - "value": "3825822397 (v. 5)" - }, - { - "type": "nypl:Oclc", - "value": "35320855" - }, - { - "type": "bf:Lccn", - "value": "97139074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M220000088" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 1", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 2", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 3", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 4", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Arrived" - }, - { - "coverage": "No. 5", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "v. 4" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 06-5 Library has: Bd. 1- 5" - } - ], - "notes": [ - "Bookset to be complete in 6 vols." - ], - "physicalLocation": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "uri": "h1025797" - } - ], - "updatedAt": 1711012409600, - "publicationStatement": [ - "Münster : Lit, [1995]-<2004>" - ], - "idIsbn": [ - "3825822044 (v. 1)", - "3825822370 (v. 2)", - "3825822389 (v. 3)", - "9783825822408 (v. 4)", - "3825822397 (v. 5)" - ], - "identifier": [ - "urn:shelfmark:JQL 06-5", - "urn:bnum:12082346", - "urn:isbn:3825822044 (v. 1)", - "urn:isbn:3825822370 (v. 2)", - "urn:isbn:3825822389 (v. 3)", - "urn:isbn:9783825822408 (v. 4)", - "urn:isbn:3825822397 (v. 5)", - "urn:oclc:35320855", - "urn:lccn:97139074", - "urn:identifier:(WaOLN)M220000088" - ], - "numCheckinCardItems": [ - 7 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1995" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "SØR Rusche-Sammlung -- Catalogs.", - "Painting, Dutch -- 17th century -- Catalogs.", - "Painting, Flemish -- 17th century -- Catalogs.", - "Painting -- Private collections -- Germany -- Catalogs." - ], - "titleDisplay": [ - "Niederländische Malerei des 17. Jahrhunderts der SØR Rusche-Sammlung / herausgegeben von Hans-Joachim Raupp und Ulrich Grossmann in Verbindung mit dem Zentrum für Niederlande-Studien der Westfälischen Wilhelms-Universität Münster." - ], - "uri": "b12082346", - "lccClassification": [ - "ND636 .N5 1996" - ], - "placeOfPublication": [ - "Münster" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Niederländische Malerei des siebzehnten Jahrhunderts der SØR Rusche-Sammlung" - ], - "tableOfContents": [ - "Bd. 1. Portraits / Hans-Joachim Raupp (Hrsg.) -- Bd. 2. Genre / Hans-Joachim Raupp (Hrsg.) -- Bd. 3. Landschaften und Seestücke / Hans-Joachim Raupp (Hrsg.) -- Bd. 5. Stilleben und Tierstücke / Hans-Joachim Raupp (Hrsg.) -- Bd. 4. Historien und Allegorien / Hans-Joachim Raupp (Hrsg.)" - ], - "dimensions": [ - "23 cm." - ], - "idIsbn_clean": [ - "38258220441", - "38258223702", - "38258223893", - "97838258224084", - "38258223975" - ] - }, - "sort": [ - 14.341686, - "b12082346" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 11, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12082346", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "enumerationChronology": [ - "No. 5" - ], - "enumerationChronology_sort": [ - " 5-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 06-5 Library has: Bd. 1- 5", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "shelfMark_sort": "aJQL 06-5 Library has: Bd. 1- 000005", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1025797-4", - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "volumeRaw": [ - "No. 5" - ] - }, - "sort": [ - " 5-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12082346", - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "Bd. 5" - ], - "enumerationChronology_sort": [ - " 5-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433068763394" - ], - "identifier": [ - "urn:shelfmark:JQL 06-5 Bd. 5", - "urn:barcode:33433068763394" - ], - "identifierV2": [ - { - "value": "JQL 06-5 Bd. 5", - "type": "bf:ShelfMark" - }, - { - "value": "33433068763394", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 06-5" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 06-5 Bd. 5" - ], - "shelfMark_sort": "aJQL 06-5 Bd. 000005", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "uri": "i15101716" - }, - "sort": [ - " 5-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12082346", - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "enumerationChronology": [ - "No. 4" - ], - "enumerationChronology_sort": [ - " 4-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "identifierV2": [ - { - "value": "JQL 06-5 Library has: Bd. 1- 5", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "JQL 06-5 Library has: Bd. 1- 5" - ], - "shelfMark_sort": "aJQL 06-5 Library has: Bd. 1- 000005", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1025797-3", - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "volumeRaw": [ - "No. 4" - ] - }, - "sort": [ - " 4-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14076408", - "_score": 14.341686, - "_source": { - "extent": [ - "14 v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: E. Bénézit.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Artists", - "Artists -- Biography", - "Artists -- Biography -- Dictionaries", - "Painters", - "Painters -- Biography", - "Painters -- Biography -- Dictionaries", - "Sculptors", - "Sculptors -- Biography", - "Sculptors -- Biography -- Dictionaries", - "Engravers", - "Engravers -- Biography", - "Engravers -- Biography -- Dictionaries", - "Artists' marks", - "Artists' marks -- Dictionaries", - "Monograms", - "Monograms -- Dictionaries" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Gründ" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 14 - ], - "createdYear": [ - 1999 - ], - "title": [ - "Dictionnaire critique et documentaire des peintres, sculpteurs, dessinateurs et graveurs de tous les temps et de tous les pays" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 12-5" - ], - "numItemVolumesParsed": [ - 14 - ], - "createdString": [ - "1999" - ], - "creatorLiteral": [ - "Bénézit, E. (Emmanuel), 1854-1920." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Busse, Jacques." - ], - "dateStartYear": [ - 1999 - ], - "idOclc": [ - "41241991" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 12-5" - }, - { - "type": "nypl:Bnumber", - "value": "14076408" - }, - { - "type": "bf:Isbn", - "value": "2700030109 (série classique)" - }, - { - "type": "bf:Isbn", - "value": "2700030117 (v. 1)" - }, - { - "type": "nypl:Oclc", - "value": "41241991" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M020000174" - } - ], - "updatedAt": 1711393822056, - "publicationStatement": [ - "Paris : Gründ, 1999." - ], - "idIsbn": [ - "2700030109 (série classique)", - "2700030117 (v. 1)" - ], - "identifier": [ - "urn:shelfmark:JQL 12-5", - "urn:bnum:14076408", - "urn:isbn:2700030109 (série classique)", - "urn:isbn:2700030117 (v. 1)", - "urn:oclc:41241991", - "urn:identifier:(WaOLN)M020000174" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Artists -- Biography -- Dictionaries.", - "Painters -- Biography -- Dictionaries.", - "Sculptors -- Biography -- Dictionaries.", - "Engravers -- Biography -- Dictionaries.", - "Artists' marks -- Dictionaries.", - "Monograms -- Dictionaries." - ], - "titleDisplay": [ - "Dictionnaire critique et documentaire des peintres, sculpteurs, dessinateurs et graveurs de tous les temps et de tous les pays / par un groupe d'écrivains spécialistes français et étrangers." - ], - "uri": "b14076408", - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Dictionnaire des peintres, sculpteurs, dessinateurs et graveurs" - ], - "dimensions": [ - "25 cm." - ], - "idIsbn_clean": [ - "2700030109", - "27000301171" - ] - }, - "sort": [ - 14.341686, - "b14076408" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 14, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14076408", - "_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" - ], - "enumerationChronology": [ - "v. 14 (VALENTIN - ZYW)" - ], - "enumerationChronology_sort": [ - " 14-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433062420140" - ], - "identifier": [ - "urn:shelfmark:JQL 12-5 v. 14 (VALENTIN - ZYW)", - "urn:barcode:33433062420140" - ], - "identifierV2": [ - { - "value": "JQL 12-5 v. 14 (VALENTIN - ZYW)", - "type": "bf:ShelfMark" - }, - { - "value": "33433062420140", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "JQL 12-5" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JQL 12-5 v. 14 (VALENTIN - ZYW)" - ], - "shelfMark_sort": "aJQL 12-5 v. 000014 (VALENTIN - ZYW)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 14 - } - ], - "uri": "i15244822" - }, - "sort": [ - " 14-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14076408", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 13 (SOLIMENA - VALENTIN)" - ], - "enumerationChronology_sort": [ - " 13-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433062420132" - ], - "identifier": [ - "urn:shelfmark:JQL 12-5 v. 13 (SOLIMENA - VALENTIN)", - "urn:barcode:33433062420132" - ], - "identifierV2": [ - { - "value": "JQL 12-5 v. 13 (SOLIMENA - VALENTIN)", - "type": "bf:ShelfMark" - }, - { - "value": "33433062420132", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 12-5" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 12-5 v. 13 (SOLIMENA - VALENTIN)" - ], - "shelfMark_sort": "aJQL 12-5 v. 000013 (SOLIMENA - VALENTIN)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "uri": "i15244821" - }, - "sort": [ - " 13-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14076408", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 12 (ROTTENHAMER - SOLIMENA)" - ], - "enumerationChronology_sort": [ - " 12-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433062420124" - ], - "identifier": [ - "urn:shelfmark:JQL 12-5 v. 12 (ROTTENHAMER - SOLIMENA)", - "urn:barcode:33433062420124" - ], - "identifierV2": [ - { - "value": "JQL 12-5 v. 12 (ROTTENHAMER - SOLIMENA)", - "type": "bf:ShelfMark" - }, - { - "value": "33433062420124", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 12-5" - ], - "recapCustomerCode": [ - "NQ" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 12-5 v. 12 (ROTTENHAMER - SOLIMENA)" - ], - "shelfMark_sort": "aJQL 12-5 v. 000012 (ROTTENHAMER - SOLIMENA)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "uri": "i15244820" - }, - "sort": [ - " 12-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14077800", - "_score": 14.341686, - "_source": { - "extent": [ - "v. ill., plates (part col.) plans, facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. for 1939-1945 include: Cataĺogo de las exposiciones, 1937-1944. Catalogs for 1945- are cataloged separately.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "America, history and life", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Historical abstracts. Part A. Modern history abstracts", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Historical abstracts. Part B. Twentieth century abstracts", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Vols. 1-6 (no. 1-24), 1939-1956 in v. 6, no. 25 suppl. no. 2", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "v. 1- (no. 1- )." - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Periodicals", - "Art -- Mexico", - "Art -- Mexico -- Periodicals", - "Aesthetics", - "Aesthetics -- Societies, etc.", - "Aesthetics -- Societies, etc. -- Periodicals" - ], - "numItemDatesParsed": [ - 53 - ], - "publisherLiteral": [ - "Universidad Nacional Autónomia de México" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 53 - ], - "createdYear": [ - 1937 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Anales del Instituto de Investigaciones Estéticas." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 10-13" - ], - "numItemVolumesParsed": [ - 53 - ], - "createdString": [ - "1937" - ], - "idLccn": [ - "43005555 //r852" - ], - "idIssn": [ - "0185-1276" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "1628173" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 10-13" - }, - { - "type": "nypl:Bnumber", - "value": "14077800" - }, - { - "type": "nypl:Oclc", - "value": "1628173" - }, - { - "type": "bf:Lccn", - "value": "43005555 //r852" - }, - { - "type": "bf:Issn", - "value": "0185-1276" - }, - { - "type": "bf:Issn", - "identifierStatus": "canceled", - "value": "0076-7239" - }, - { - "type": "bf:Identifier", - "value": "045568A" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S180000037" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 85 (Fall 2004)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 86 (Spring 2005)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 87 (Fall 2005)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 88 (Spring 2006)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 89 (Fall 2007)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 90 (Spring 2007)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 91 (2007)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 92 (Spring 2008)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 93 (2008)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 94 (2009)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 95 (Fall 2009)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 96 (Spring 2010)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 97 (Fall 2010)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 98 (Spring 2011)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 99 (Fall 2011)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 100 (Spring 2012)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 101 (Fall 2012)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 102 (Spring 2013)", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 103 (Fall 2013)", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 104 (Spring 2014)", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 105 (Fall 2014)", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 106 (Spring 2015)", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 107 (Fall 2015)", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 108 (Spring 2016)", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 109 (Fall 2016)", - "position": 25, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 110 (Spring 2017)", - "position": 26, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 111 (Fall 2017)", - "position": 27, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 112 (Spring 2018)", - "position": 28, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 113 (Fall 2018)", - "position": 29, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 114 (Spring 2019)", - "position": 30, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 115 (Fall 2019)", - "position": 31, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 116 (Spring 2020)", - "position": 32, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 116 (Spring 2020)", - "position": 33, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 117 (Fall 2020)", - "position": 34, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 118 (Spring 2021)", - "position": 35, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 119 (Fall 2021)", - "position": 36, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 120 (Spring 2023)", - "position": 37, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Arrived" - }, - { - "coverage": "No. 121 (Spring 2024)", - "position": 38, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 10-13" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1(1937)-45(1976),59(1988),70(1997)-84(2004)-91 (2007), 93 (2008)-94 (2009)-96(2010)-", - "no. 97 - no. 120" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 10-13" - } - ], - "physicalLocation": [ - "JQL 10-13" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 10-13" - ], - "uri": "h1081781" - } - ], - "updatedAt": 1713791769218, - "publicationStatement": [ - "México, Universidad Nacional Autónomia de México, 1937-" - ], - "identifier": [ - "urn:shelfmark:JQL 10-13", - "urn:bnum:14077800", - "urn:oclc:1628173", - "urn:lccn:43005555 //r852", - "urn:issn:0185-1276", - "urn:issn:0076-7239", - "urn:identifier:045568A", - "urn:identifier:(WaOLN)S180000037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Periodicals.", - "Art -- Mexico -- Periodicals.", - "Aesthetics -- Societies, etc. -- Periodicals." - ], - "titleDisplay": [ - "Anales del Instituto de Investigaciones Estéticas." - ], - "uri": "b14077800", - "lccClassification": [ - "N16 .M5" - ], - "placeOfPublication": [ - "México" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "An. Inst. Invest. Estét.", - "Anales del Instituto de Investigaciones Estéticas", - "Cataĺogo de las exposiciones." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 14.341686, - "b14077800" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 53, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14077800", - "_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": "2023", - "lte": "2023" - } - ], - "enumerationChronology": [ - "no. 120 (Spr 2023)" - ], - "enumerationChronology_sort": [ - " 120-2023" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433132340229" - ], - "identifier": [ - "urn:shelfmark:JQL 10-13 no. 120 (Spr 2023)", - "urn:barcode:33433132340229" - ], - "identifierV2": [ - { - "value": "JQL 10-13 no. 120 (Spr 2023)", - "type": "bf:ShelfMark" - }, - { - "value": "33433132340229", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 10-13" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 10-13 no. 120 (Spr 2023)" - ], - "shelfMark_sort": "aJQL 10-13 no. 000120 (Spr 2023)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 120, - "lte": 120 - } - ], - "uri": "i40171796" - }, - "sort": [ - " 120-2023" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14077800", - "_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": [ - "no. 119 (Fal 2021)" - ], - "enumerationChronology_sort": [ - " 119-2021" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433133824742" - ], - "identifier": [ - "urn:shelfmark:JQL 10-13 no. 119 (Fal 2021)", - "urn:barcode:33433133824742" - ], - "identifierV2": [ - { - "value": "JQL 10-13 no. 119 (Fal 2021)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133824742", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 10-13" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 10-13 no. 119 (Fal 2021)" - ], - "shelfMark_sort": "aJQL 10-13 no. 000119 (Fal 2021)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 119, - "lte": 119 - } - ], - "uri": "i39659921" - }, - "sort": [ - " 119-2021" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14077800", - "_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": [ - "no. 118 (Spr 2021)" - ], - "enumerationChronology_sort": [ - " 118-2021" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433133790323" - ], - "identifier": [ - "urn:shelfmark:JQL 10-13 no. 118 (Spr 2021)", - "urn:barcode:33433133790323" - ], - "identifierV2": [ - { - "value": "JQL 10-13 no. 118 (Spr 2021)", - "type": "bf:ShelfMark" - }, - { - "value": "33433133790323", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 10-13" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 10-13 no. 118 (Spr 2021)" - ], - "shelfMark_sort": "aJQL 10-13 no. 000118 (Spr 2021)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 118, - "lte": 118 - } - ], - "uri": "i39117623" - }, - "sort": [ - " 118-2021" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14926614", - "_score": 14.341686, - "_source": { - "extent": [ - "volumes : illustrations (some color) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Each volume also has a theme title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and Spanish.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Año 1, no. 1 (1999)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Periodicals", - "Art, Argentine", - "Art, Argentine -- Periodicals" - ], - "numItemDatesParsed": [ - 17 - ], - "publisherLiteral": [ - "Academia Nacional de Bellas Artes, República Argentina" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 17 - ], - "createdYear": [ - 1999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Temas : temas de la Academia." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JQL 02-1" - ], - "numItemVolumesParsed": [ - 15 - ], - "createdString": [ - "1999" - ], - "idLccn": [ - "2001234048" - ], - "idIssn": [ - "1514-8122" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Academia Nacional de Bellas Artes (Argentina)" - ], - "dateStartYear": [ - 1999 - ], - "idOclc": [ - "45818460" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 02-1" - }, - { - "type": "nypl:Bnumber", - "value": "14926614" - }, - { - "type": "nypl:Oclc", - "value": "45818460" - }, - { - "type": "bf:Lccn", - "value": "2001234048" - }, - { - "type": "bf:Issn", - "value": "1514-8122" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)45818460" - } - ], - "uniformTitle": [ - "Temas (Buenos Aires, Argentina : 1999)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "Vol. 1 No. 1 (1999)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 2 No. 2 (2000)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 3 (2002)", - "position": 3, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 4 (2004)", - "position": 4, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 5 (2007)", - "position": 5, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 6 (2008)", - "position": 6, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 7 (2009)", - "position": 7, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 8 (2010)", - "position": 8, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9 (2011)", - "position": 9, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 10 (2012)", - "position": 10, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11 (2013)", - "position": 11, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12 (2014)", - "position": 12, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 13 (2015)", - "position": 13, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 14 (2016)", - "position": 14, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 15 (2017)", - "position": 15, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 16 (2018)", - "position": 16, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "No. 17 (2019)", - "position": 17, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "2021", - "position": 18, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "May. 2022", - "position": 19, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Arrived" - }, - { - "coverage": "", - "position": 20, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 21, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 22, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 23, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": 24, - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 02-1" - ], - "status": "Expected" - } - ], - "holdingStatement": [ - "1:1(1999), 2:2(2000);3(2002)-14(2016)- [incomplete]", - "2021-04; no. 16 (2018) - no. 17 (2019)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 02-1" - } - ], - "physicalLocation": [ - "JQL 02-1" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "shelfMark": [ - "JQL 02-1" - ], - "uri": "h1089039" - } - ], - "updatedAt": 1711011834743, - "publicationStatement": [ - "Capital Federal, Argentina : Academia Nacional de Bellas Artes, República Argentina, 1999-" - ], - "genreForm": [ - "Periodicals.", - "Art." - ], - "identifier": [ - "urn:shelfmark:JQL 02-1", - "urn:bnum:14926614", - "urn:oclc:45818460", - "urn:lccn:2001234048", - "urn:issn:1514-8122", - "urn:identifier:(OCoLC)45818460" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Periodicals.", - "Art, Argentine -- Periodicals.", - "Art.", - "Art, Argentine." - ], - "titleDisplay": [ - "Temas : temas de la Academia." - ], - "uri": "b14926614", - "lccClassification": [ - "N7 .T46" - ], - "placeOfPublication": [ - "Capital Federal, Argentina" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Temas de la Academia Nacional de Bellas Artes", - "Temas de la Academia", - "Temas de la Academia de Bellas Artes" - ], - "dimensions": [ - "25 cm" - ] - }, - "sort": [ - 14.341686, - "b14926614" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 17, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14926614", - "_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": "2019", - "lte": "2019" - } - ], - "enumerationChronology": [ - "no. 17 (2019)" - ], - "enumerationChronology_sort": [ - " 17-2019" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121749372" - ], - "identifier": [ - "urn:shelfmark:JQL 02-1 no. 17 (2019)", - "urn:barcode:33433121749372" - ], - "identifierV2": [ - { - "value": "JQL 02-1 no. 17 (2019)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121749372", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 02-1" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 02-1 no. 17 (2019)" - ], - "shelfMark_sort": "aJQL 02-1 no. 000017 (2019)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 17, - "lte": 17 - } - ], - "uri": "i38011960" - }, - "sort": [ - " 17-2019" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14926614", - "_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": "2018", - "lte": "2018" - } - ], - "enumerationChronology": [ - "no. 16 (2018)" - ], - "enumerationChronology_sort": [ - " 16-2018" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121734580" - ], - "identifier": [ - "urn:shelfmark:JQL 02-1 no. 16 (2018)", - "urn:barcode:33433121734580" - ], - "identifierV2": [ - { - "value": "JQL 02-1 no. 16 (2018)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121734580", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 02-1" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 02-1 no. 16 (2018)" - ], - "shelfMark_sort": "aJQL 02-1 no. 000016 (2018)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 16 - } - ], - "uri": "i37478040" - }, - "sort": [ - " 16-2018" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14926614", - "_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": "2017", - "lte": "2017" - } - ], - "enumerationChronology": [ - "no. 15 (2017)" - ], - "enumerationChronology_sort": [ - " 15-2017" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433121672228" - ], - "identifier": [ - "urn:shelfmark:JQL 02-1 no. 15 (2017)", - "urn:barcode:33433121672228" - ], - "identifierV2": [ - { - "value": "JQL 02-1 no. 15 (2017)", - "type": "bf:ShelfMark" - }, - { - "value": "33433121672228", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "JQL 02-1" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JQL 02-1 no. 15 (2017)" - ], - "shelfMark_sort": "aJQL 02-1 no. 000015 (2017)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 15, - "lte": 15 - } - ], - "uri": "i36576799" - }, - "sort": [ - " 15-2017" - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-303ded0af3bb10477a1a972e31b13f91.json b/test/fixtures/query-7c4896d6e31a27188e7aa31b17fc5877.json similarity index 99% rename from test/fixtures/query-303ded0af3bb10477a1a972e31b13f91.json rename to test/fixtures/query-7c4896d6e31a27188e7aa31b17fc5877.json index e24cff98..8f6591e6 100644 --- a/test/fixtures/query-303ded0af3bb10477a1a972e31b13f91.json +++ b/test/fixtures/query-7c4896d6e31a27188e7aa31b17fc5877.json @@ -1,6 +1,6 @@ { "body": { - "took": 71, + "took": 39, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json b/test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json deleted file mode 100644 index b8035c17..00000000 --- a/test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json +++ /dev/null @@ -1,12745 +0,0 @@ -{ - "body": { - "took": 661, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1287, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b20970375", - "_score": 4137.6357, - "_source": { - "extent": [ - "119 pages : illustrations (color) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toast (Bread)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Phaidon Press Limited" - ], - "description": [ - "The ultimate canvas for sweet and savory culinary creativity. 50 seasonal recipes that reimagine the \"bread and butter\" of cuisine with simple ingredients in surprising ways. Easy enough for breakfast, yet suitable for brunch, lunch, dinner and even dessert, the possibilities of heaping beautiful seasonal ingredients on bread are limitless. Toast guides home chefs as they explore home cuisine's ultimate creative canvas. Organized by season, Toast features 50 recipes from savory to sweet that unleash the power of fresh ingredients and simple techniques guaranteed to impress and satisfy any kitchen audience on any occasion." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2015 - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFF 16-815" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2015" - ], - "creatorLiteral": [ - "Pelzel, Raquel" - ], - "idLccn": [ - "2015473840" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sung, Evan" - ], - "dateStartYear": [ - 2015 - ], - "idOclc": [ - "915941587" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 16-815" - }, - { - "type": "nypl:Bnumber", - "value": "20970375" - }, - { - "type": "bf:Isbn", - "value": "9780714869551" - }, - { - "type": "bf:Isbn", - "value": "0714869554" - }, - { - "type": "nypl:Oclc", - "value": "915941587" - }, - { - "type": "bf:Lccn", - "value": "2015473840" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)915941587" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)905521916" - } - ], - "updatedAt": 1711458034739, - "publicationStatement": [ - "London : Phaidon Press Limited, 2015.", - "©2015" - ], - "genreForm": [ - "Cookbooks." - ], - "idIsbn": [ - "9780714869551", - "0714869554" - ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:bnum:20970375", - "urn:isbn:9780714869551", - "urn:isbn:0714869554", - "urn:oclc:915941587", - "urn:lccn:2015473840", - "urn:identifier:(OCoLC)915941587", - "urn:identifier:(OCoLC)905521916" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2015" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toast (Bread)" - ], - "titleDisplay": [ - "Toast / by Raquel Pelzel ; photographs by Evan Sung." - ], - "uri": "b20970375", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Toast : the cookbook" - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "9780714869551", - "0714869554" - ] - }, - "sort": [ - 4137.6357, - "b20970375" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b20970375", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433118568447" - ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:barcode:33433118568447" - ], - "identifierV2": [ - { - "value": "JFF 16-815", - "type": "bf:ShelfMark" - }, - { - "value": "33433118568447", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFF 16-815" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFF 16-815" - ], - "shelfMark_sort": "aJFF 16-000815", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34162229" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb2817873", - "_score": 4134.967, - "_source": { - "extent": [ - "191 p. ;" - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Wydawn. Literackie" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast" - ], - "shelfMark": [ - "PG7158.H43" - ], - "creatorLiteral": [ - "Hen, Józef." - ], - "createdString": [ - "1967" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PG7158.H43" - }, - { - "type": "nypl:Bnumber", - "value": "2817873" - }, - { - "type": "nypl:Oclc", - "value": "ocm10101466" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm10101466" - } - ], - "idOclc": [ - "ocm10101466" - ], - "holdings": [], - "updatedAt": 1652147205024, - "publicationStatement": [ - "Kraków : Wydawn. Literackie, 1967." - ], - "identifier": [ - "urn:bnum:2817873", - "urn:oclc:ocm10101466", - "urn:undefined:(OCoLC)ocm10101466" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / Józef Hen." - ], - "uri": "pb2817873", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kraków" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 4134.967, - "pb2817873" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb2817873", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi5571886", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PG7158.H43T637 1967" - ], - "identifierV2": [ - { - "value": "PG7158.H43T637 1967", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101075229904" - } - ], - "physicalLocation": [ - "PG7158.H43T637 1967" - ], - "recapCustomerCode": [ - "PA" - ], - "identifier": [ - "urn:barcode:32101075229904" - ], - "idBarcode": [ - "32101075229904" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPG7158.H43T637 001967" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb2847934", - "_score": 4134.967, - "_source": { - "extent": [ - "103 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First performed at the Royal Court Theatre Upstairs ... on 12th February 1999.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Oberon" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast" - ], - "creatorLiteral": [ - "Bean, Richard, 1956-" - ], - "createdString": [ - "1999" - ], - "dateStartYear": [ - 1999 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "2847934" - }, - { - "type": "bf:Isbn", - "value": "1840021047" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)GAEGO42263032-B" - }, - { - "type": "bf:Identifier", - "value": "(GEU)(Sirsi)o42263032" - } - ], - "holdings": [], - "updatedAt": 1655841488336, - "publicationStatement": [ - "London : Oberon, 1999." - ], - "identifier": [ - "urn:bnum:2847934", - "urn:isbn:1840021047", - "urn:undefined:(CStRLIN)GAEGO42263032-B", - "urn:undefined:(GEU)(Sirsi)o42263032" - ], - "idIsbn": [ - "1840021047" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / by Richard Bean." - ], - "uri": "pb2847934", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1840021047" - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 4134.967, - "pb2847934" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb2847934", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi2440892", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR6052.E176 T627 1999" - ], - "identifierV2": [ - { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101095377683" - } - ], - "physicalLocation": [ - "PR6052.E176 T627 1999" - ], - "recapCustomerCode": [ - "PA" - ], - "identifier": [ - "urn:barcode:32101095377683" - ], - "idBarcode": [ - "32101095377683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPR6052.E176 T627 001999" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11361121", - "_score": 4025.9436, - "_source": { - "extent": [ - "191 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wydawnictwo Literackie" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*QPM 90-2088" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "creatorLiteral": [ - "Hen, Józef." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "idOclc": [ - "NYPG89-B29663" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QPM 90-2088" - }, - { - "type": "nypl:Bnumber", - "value": "11361121" - }, - { - "type": "nypl:Oclc", - "value": "NYPG89-B29663" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1369053" - } - ], - "updatedAt": 1712114351472, - "publicationStatement": [ - "Krakow : Wydawnictwo Literackie, 1974." - ], - "identifier": [ - "urn:shelfmark:*QPM 90-2088", - "urn:bnum:11361121", - "urn:oclc:NYPG89-B29663", - "urn:identifier:(WaOLN)nyp1369053" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / Józef Hen." - ], - "uri": "b11361121", - "placeOfPublication": [ - "Krakow" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 4025.9436, - "b11361121" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11361121", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433044323693" - ], - "identifier": [ - "urn:shelfmark:*QPM 90-2088", - "urn:barcode:33433044323693" - ], - "identifierV2": [ - { - "value": "*QPM 90-2088", - "type": "bf:ShelfMark" - }, - { - "value": "33433044323693", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*QPM 90-2088" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*QPM 90-2088" - ], - "shelfMark_sort": "a*QPM 90-002088", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13172719" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17982563", - "_score": 4025.9436, - "_source": { - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Artists' books" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MEMZ (Featheringill) 09-981" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "creatorLiteral": [ - "Featheringill, Julia." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MEMZ (Featheringill) 09-981" - }, - { - "type": "nypl:Bnumber", - "value": "17982563" - } - ], - "updatedAt": 1712870065425, - "publicationStatement": [ - "Ithaca, NY: Julia Featheringill, 2001" - ], - "genreForm": [ - "Artists' books." - ], - "identifier": [ - "urn:shelfmark:MEMZ (Featheringill) 09-981", - "urn:bnum:17982563" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Artists' books." - ], - "titleDisplay": [ - "Toast" - ], - "uri": "b17982563", - "placeOfPublication": [ - "Ithaca, NY: Julia Featheringill, 2001" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 4025.9436, - "b17982563" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17982563", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:p", - "label": "Permit needed" - } - ], - "accessMessage_packed": [ - "accessMessage:p||Permit needed" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mauu2", - "label": "Schwarzman Building - Print Collection Room 308" - } - ], - "holdingLocation_packed": [ - "loc:mauu2||Schwarzman Building - Print Collection Room 308" - ], - "identifier": [ - "urn:shelfmark:MEMZ (Featheringill) 09-981" - ], - "identifierV2": [ - { - "value": "MEMZ (Featheringill) 09-981", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1112", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - } - ], - "owner_packed": [ - "orgs:1112||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - ], - "physicalLocation": [ - "MEMZ (Featheringill) 09-981" - ], - "requestable": [ - false - ], - "shelfMark": [ - "MEMZ (Featheringill) 09-981" - ], - "shelfMark_sort": "aMEMZ (Featheringill) 09-000981", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17446741", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Featheringill%2C+Julia.&CallNumber=MEMZ+%28Featheringill%29+09-981&Date=++++&Form=30&Genre=book+non-circ&ItemInfo1=Permit+needed&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17982563&ItemISxN=i174467412&ItemPlace=Ithaca%2C+NY%3A+Julia+Featheringill%2C+2001&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b17982563x&Site=SASPR&Title=Toast" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17759113", - "_score": 4023.9436, - "_source": { - "extent": [ - "1 film reel (12 min.) : sd., col. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally released as a short film in 1974.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Narration, Michael Ryan ; music, Klaus Schulze, Achim Reichel, Kraftwerk.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Fuel", - "Energy conservation" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[s.n.]" - ], - "description": [ - "Focuses on the excessive use of fossil fuels in the preparation and marketing of food by tracing the production and distribution of a loaf of bread from the oil well to consumption. Also illustrates the concept of net energy profit." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1974" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Hoffman, Daniel.", - "Earth Chronicles (Firm)" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "17759113" - } - ], - "updatedAt": 1712870018139, - "publicationStatement": [ - "[S.l.] : [s.n.], 1974." - ], - "genreForm": [ - "Short films.", - "Educational films." - ], - "identifier": [ - "urn:bnum:17759113" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:mov", - "label": "Moving image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Fuel.", - "Energy conservation." - ], - "titleDisplay": [ - "Toast [motion picture] / Earth Chronicles presents ; a film by Daniel Hoffman ... [et al.]." - ], - "uri": "b17759113", - "placeOfPublication": [ - "[S.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 mm." - ] - }, - "sort": [ - 4023.9436, - "b17759113" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17759113", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:a", - "label": "By appointment only" - } - ], - "accessMessage_packed": [ - "accessMessage:a||By appointment only" - ], - "catalogItemType": [ - { - "id": "catalogItemType:72", - "label": "rfvc - film" - } - ], - "catalogItemType_packed": [ - "catalogItemType:72||rfvc - film" - ], - "enumerationChronology": [ - "C.1 REEL 1 OF 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Moving image" - ], - "holdingLocation": [ - { - "id": "loc:rcpr8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpr8||Offsite" - ], - "idBarcode": [ - "33433081452009" - ], - "identifier": [ - "urn:shelfmark:M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1", - "urn:barcode:33433081452009" - ], - "identifierV2": [ - { - "value": "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433081452009", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "M16 5213 T C.1 REEL 1 OF 1" - ], - "recapCustomerCode": [ - "NN" - ], - "requestable": [ - true - ], - "shelfMark": [ - "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1" - ], - "shelfMark_sort": "aM16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i23965823", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M16+5213+T+C.1+REEL+1+OF+1&Date=1974&Form=30&Genre=rfvc+-+film&ItemInfo1=By+appointment+only&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17759113&ItemISxN=i239658231&ItemNumber=33433081452009&ItemPlace=%5BS.l.%5D&ItemPublisher=%5Bs.n.%5D%2C+1974.&ItemVolume=C.1+REEL+1+OF+1&Location=ReCAP&ReferenceNumber=b177591134&Site=LPARF&SubLocation=rcpr8&Title=Toast" - ] - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9928178733506421", - "_score": 4023.2744, - "_source": { - "extent": [ - "191 p. ;" - ], - "nyplSource": [ - "recap-pul" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wydawn. Literackie" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "title": [ - "Toast" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1967" - ], - "creatorLiteral": [ - "Hen, Józef." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "idOclc": [ - "ocm10101466", - "SCSB-944961" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9928178733506421" - }, - { - "type": "nypl:Oclc", - "value": "ocm10101466" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-944961" - }, - { - "type": "bf:Identifier", - "value": "(NjP)2817873-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm10101466" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager2817873" - } - ], - "updatedAt": 1696128431618, - "publicationStatement": [ - "Kraków : Wydawn. Literackie, 1967." - ], - "identifier": [ - "urn:bnum:9928178733506421", - "urn:oclc:ocm10101466", - "urn:oclc:SCSB-944961", - "urn:identifier:(NjP)2817873-princetondb", - "urn:identifier:(OCoLC)ocm10101466", - "urn:identifier:(NjP)Voyager2817873" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / Józef Hen." - ], - "uri": "pb9928178733506421", - "placeOfPublication": [ - "Kraków" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 4023.2744, - "pb9928178733506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9928178733506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101075229904" - ], - "identifier": [ - "urn:shelfmark:PG7158.H43 T637 1967", - "urn:barcode:32101075229904" - ], - "identifierV2": [ - { - "value": "PG7158.H43 T637 1967", - "type": "bf:ShelfMark" - }, - { - "value": "32101075229904", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "PG7158.H43 T637 1967" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "PG7158.H43 T637 1967" - ], - "shelfMark_sort": "aPG7158.H43 T637 001967", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23546661110006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9928479343506421", - "_score": 4023.2744, - "_source": { - "extent": [ - "103 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First performed at the Royal Court Theatre Upstairs ... on 12th February 1999.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Oberon" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bean, Richard, 1956-" - ], - "createdString": [ - "1999" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1999 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9928479343506421" - }, - { - "type": "bf:Isbn", - "value": "1840021047" - }, - { - "type": "nypl:Oclc", - "value": "ocm53231811" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-964143" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)GAEGO42263032-B" - }, - { - "type": "bf:Identifier", - "value": "(GEU)(Sirsi)o42263032" - }, - { - "type": "bf:Identifier", - "value": "(NjP)2847934-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm53231811" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager2847934" - } - ], - "idOclc": [ - "ocm53231811", - "SCSB-964143" - ], - "holdings": [], - "updatedAt": 1692410724232, - "publicationStatement": [ - "London : Oberon, 1999." - ], - "identifier": [ - "urn:bnum:9928479343506421", - "urn:isbn:1840021047", - "urn:oclc:ocm53231811", - "urn:oclc:SCSB-964143", - "urn:undefined:(CStRLIN)GAEGO42263032-B", - "urn:undefined:(GEU)(Sirsi)o42263032", - "urn:undefined:(NjP)2847934-princetondb", - "urn:undefined:(OCoLC)ocm53231811", - "urn:undefined:(NjP)Voyager2847934" - ], - "idIsbn": [ - "1840021047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast / by Richard Bean." - ], - "uri": "pb9928479343506421", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1840021047" - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 4023.2744, - "pb9928479343506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9928479343506421", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi23486469710006421", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR6052.E176 T627 1999" - ], - "identifierV2": [ - { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101095377683" - } - ], - "physicalLocation": [ - "PR6052.E176 T627 1999" - ], - "recapCustomerCode": [ - "PA" - ], - "identifier": [ - "urn:barcode:32101095377683" - ], - "idBarcode": [ - "32101095377683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPR6052.E176 T627 001999" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990052336220203941", - "_score": 2431.1274, - "_source": { - "extent": [ - "187 p." - ], - "note": [ - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wydawnictwo Literackie" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1964 - ], - "title": [ - "Toast." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1964" - ], - "creatorLiteral": [ - "Hen, Józef" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1964 - ], - "idOclc": [ - "7224766", - "SCSB-10588391" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990052336220203941" - }, - { - "type": "nypl:Oclc", - "value": "7224766" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-10588391" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7224766" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)977353017" - } - ], - "updatedAt": 1707092059930, - "publicationStatement": [ - "Kraków, Wydawnictwo Literackie [1964]" - ], - "genreForm": [ - "Polish fiction" - ], - "identifier": [ - "urn:bnum:990052336220203941", - "urn:oclc:7224766", - "urn:oclc:SCSB-10588391", - "urn:identifier:(OCoLC)7224766", - "urn:identifier:(OCoLC)977353017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast." - ], - "uri": "hb990052336220203941", - "lccClassification": [ - "PG7158.H43 T6" - ], - "placeOfPublication": [ - "Kraków" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 2431.1274, - "hb990052336220203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990052336220203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "HNAASE" - ], - "identifier": [ - "urn:shelfmark:Slav 7147.24.2110", - "urn:barcode:HNAASE" - ], - "identifierV2": [ - { - "value": "Slav 7147.24.2110", - "type": "bf:ShelfMark" - }, - { - "value": "HNAASE", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "physicalLocation": [ - "Slav 7147.24.2110" - ], - "recapCustomerCode": [ - "HW" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Slav 7147.24.2110" - ], - "shelfMark_sort": "aSlav 7147.24.002110", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "hi231942284890003941" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13056591", - "_score": 931.66595, - "_source": { - "extent": [ - "[90] p." - ], - "note": [ - { - "noteType": "Note", - "label": "Text within colored ornamental border.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Brewer, Barse" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1909 - ], - "title": [ - "Toasts" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NANF (Waters, M. Toasts)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Ivers, Margaret." - ], - "idLccn": [ - "09013608" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "5303838" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NANF (Waters, M. Toasts)" - }, - { - "type": "nypl:Bnumber", - "value": "13056591" - }, - { - "type": "nypl:Oclc", - "value": "5303838" - }, - { - "type": "bf:Lccn", - "value": "09013608" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3035194" - } - ], - "updatedAt": 1711433900004, - "publicationStatement": [ - "Chicago, Brewer, Barse [c1909]" - ], - "identifier": [ - "urn:shelfmark:NANF (Waters, M. Toasts)", - "urn:bnum:13056591", - "urn:oclc:5303838", - "urn:lccn:09013608", - "urn:identifier:(WaOLN)nyp3035194" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Toasts, comp. by Margaret Waters." - ], - "uri": "b13056591", - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - 931.66595, - "b13056591" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13056591", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433103910927" - ], - "identifier": [ - "urn:shelfmark:NANF (Waters, M. Toasts)", - "urn:barcode:33433103910927" - ], - "identifierV2": [ - { - "value": "NANF (Waters, M. Toasts)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103910927", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NANF (Waters, M. Toasts)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NANF (Waters, M. Toasts)" - ], - "shelfMark_sort": "aNANF (Waters, M. Toasts)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16219980" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11373665", - "_score": 906.66595, - "_source": { - "extent": [ - "1 ms. score (6 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Copyist's ms., in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Stamp on pp. [1] & 6: Fred P. Champlin, Autographing and Copying.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1918 - ], - "title": [ - "The toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JPB 84-312" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1918" - ], - "creatorLiteral": [ - "Sousa, John Philip, 1854-1932." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Burnside, R. H. (Robert Hubberthorne), 1873-1952.", - "Champlin, Fred P." - ], - "dateStartYear": [ - 1918 - ], - "idOclc": [ - "NYPG004000622-C" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 84-312" - }, - { - "type": "nypl:Bnumber", - "value": "11373665" - }, - { - "type": "nypl:Oclc", - "value": "NYPG004000622-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405622" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1381621" - } - ], - "updatedAt": 1712854138515, - "publicationStatement": [ - "[ca. 1918]" - ], - "identifier": [ - "urn:shelfmark:JPB 84-312", - "urn:bnum:11373665", - "urn:oclc:NYPG004000622-C", - "urn:identifier:NNSZ00405622", - "urn:identifier:(WaOLN)nyp1381621" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "The toast / words by R.J. Burnside ; music by John Philip Sousa." - ], - "uri": "b11373665", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - 906.66595, - "b11373665" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11373665", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:JPB 84-312" - ], - "identifierV2": [ - { - "value": "JPB 84-312", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 84-312" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 84-312" - ], - "shelfMark_sort": "aJPB 84-000312", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15897006", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-312&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373665&ItemISxN=i158970068&ItemPublisher=%5Bca.+1918%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736654&Site=LPAMR&Title=The+toast" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11373666", - "_score": 902.95825, - "_source": { - "extent": [ - "1 ms. score (5 leaves) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph signed, in ink and pencil.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and orchestra; music for orchestra only (includes cue for voice).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Alternate musical setting from mss. of Mar. 6, 1918.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At end: N.Y., March 15, 1918.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title from caption (in pencil); other caption title information illegible.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sousa, John Philip, 1854-1932", - "Sousa, John Philip, 1854-1932 -- Manuscripts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1918 - ], - "title": [ - "The toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JPB 84-313" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1918" - ], - "creatorLiteral": [ - "Sousa, John Philip, 1854-1932." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1918 - ], - "idOclc": [ - "NYPG004000623-C" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 84-313" - }, - { - "type": "nypl:Bnumber", - "value": "11373666" - }, - { - "type": "nypl:Oclc", - "value": "NYPG004000623-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405623" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1381622" - } - ], - "updatedAt": 1712854138515, - "publicationStatement": [ - "1918 Mar. 15" - ], - "identifier": [ - "urn:shelfmark:JPB 84-313", - "urn:bnum:11373666", - "urn:oclc:NYPG004000623-C", - "urn:identifier:NNSZ00405623", - "urn:identifier:(WaOLN)nyp1381622" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sousa, John Philip, 1854-1932 -- Manuscripts." - ], - "titleDisplay": [ - "The toast / J.P.S. [John Philip Sousa]." - ], - "uri": "b11373666", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - 902.95825, - "b11373666" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11373666", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:JPB 84-313" - ], - "identifierV2": [ - { - "value": "JPB 84-313", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 84-313" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 84-313" - ], - "shelfMark_sort": "aJPB 84-000313", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15897007", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-313&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373666&ItemISxN=i15897007x&ItemPublisher=1918+Mar.+15&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736666&Site=LPAMR&Title=The+toast" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11373667", - "_score": 902.95825, - "_source": { - "extent": [ - "1 ms. score (14 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph signed, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Without the words.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Alternate musical setting from mss. of Mar. 15, 1918.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At end: Port Washington, March 6th 1918.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sousa, John Philip, 1854-1932", - "Sousa, John Philip, 1854-1932 -- Manuscripts", - "Songs (Medium voice) with orchestra", - "Songs (Medium voice) with orchestra -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1918 - ], - "title": [ - "The toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JPB 84-314" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1918" - ], - "creatorLiteral": [ - "Sousa, John Philip, 1854-1932." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Burnside, R. H. (Robert Hubberthorne), 1873-1952." - ], - "dateStartYear": [ - 1918 - ], - "idOclc": [ - "NYPG004000624-C" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 84-314" - }, - { - "type": "nypl:Bnumber", - "value": "11373667" - }, - { - "type": "nypl:Oclc", - "value": "NYPG004000624-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405624" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1381623" - } - ], - "updatedAt": 1712854138515, - "publicationStatement": [ - "1918 Mar. 6" - ], - "identifier": [ - "urn:shelfmark:JPB 84-314", - "urn:bnum:11373667", - "urn:oclc:NYPG004000624-C", - "urn:identifier:NNSZ00405624", - "urn:identifier:(WaOLN)nyp1381623" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sousa, John Philip, 1854-1932 -- Manuscripts.", - "Songs (Medium voice) with orchestra -- Scores." - ], - "titleDisplay": [ - "The toast / words by Frank Warren & R.H. Burnside ; music by John Philip Sousa." - ], - "uri": "b11373667", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - 902.95825, - "b11373667" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11373667", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:JPB 84-314" - ], - "identifierV2": [ - { - "value": "JPB 84-314", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 84-314" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 84-314" - ], - "shelfMark_sort": "aJPB 84-000314", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15897008", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-314&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373667&ItemISxN=i158970081&ItemPublisher=1918+Mar.+6&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736678&Site=LPAMR&Title=The+toast" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19650848", - "_score": 902.95825, - "_source": { - "extent": [ - "256, 31 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Advertisements: p. [1]-31 (second group).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Metheun" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1916 - ], - "title": [ - "On toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NCW (Ridge, W. P. On toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1916" - ], - "creatorLiteral": [ - "Ridge, W. Pett (William Pett), -1930." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1916 - ], - "idOclc": [ - "26167955" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NCW (Ridge, W. P. On toast)" - }, - { - "type": "nypl:Bnumber", - "value": "19650848" - }, - { - "type": "nypl:Oclc", - "value": "26167955" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)26167955" - } - ], - "updatedAt": 1711547522050, - "publicationStatement": [ - "London : Metheun, 1916." - ], - "identifier": [ - "urn:shelfmark:NCW (Ridge, W. P. On toast)", - "urn:bnum:19650848", - "urn:oclc:26167955", - "urn:identifier:(OCoLC)26167955" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1916" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "On toast / by W. Pett Ridge." - ], - "uri": "b19650848", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 902.95825, - "b19650848" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19650848", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433101440497" - ], - "identifier": [ - "urn:shelfmark:NCW (Ridge, W. P. On toast)", - "urn:barcode:33433101440497" - ], - "identifierV2": [ - { - "value": "NCW (Ridge, W. P. On toast)", - "type": "bf:ShelfMark" - }, - { - "value": "33433101440497", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NCW (Ridge, W. P. On toast)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NCW (Ridge, W. P. On toast)" - ], - "shelfMark_sort": "aNCW (Ridge, W. P. On toast)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28924660" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb2606198", - "_score": 881.05835, - "_source": { - "extent": [ - "xiv p., 1 l., 17-327 p. front., plates, ports." - ], - "note": [ - { - "noteType": "Note", - "label": "\"First edition.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "The Bobbs-Merrill company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1935 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A toast to rebellion,", - "A toast to rebellion, by Giuseppe Garibaldi." - ], - "creatorLiteral": [ - "Garibaldi, Giuseppe, 1879-" - ], - "createdString": [ - "1935" - ], - "idLccn": [ - " 35025393 " - ], - "dateStartYear": [ - 1935 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "2606198" - }, - { - "type": "bf:Lccn", - "value": " 35025393 " - }, - { - "type": "nypl:Oclc", - "value": "ocm01526251" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm01526251" - } - ], - "idOclc": [ - "ocm01526251" - ], - "holdings": [], - "updatedAt": 1641868029903, - "publicationStatement": [ - "Indianapolis, New York, The Bobbs-Merrill company [c1935]" - ], - "identifier": [ - "urn:bnum:2606198", - "urn:lccn: 35025393 ", - "urn:oclc:ocm01526251", - "urn:undefined:(OCoLC)ocm01526251" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1935" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast to rebellion, by Giuseppe Garibaldi." - ], - "uri": "pb2606198", - "lccClassification": [ - "D413.G3 A35" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Indianapolis, New York," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 881.05835, - "pb2606198" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb2606198", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi4372152", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "14093.378" - ], - "identifierV2": [ - { - "value": "14093.378", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101058673474" - } - ], - "physicalLocation": [ - "14093.378" - ], - "identifier": [ - "urn:barcode:32101058673474" - ], - "idBarcode": [ - "32101058673474" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a14093.000378" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13055466", - "_score": 875.01465, - "_source": { - "extent": [ - "xviii, 299 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Anecdotes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edwardt J. Clode" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1923 - ], - "title": [ - "Toasts and anecdotes" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NANF (Kearney, P. W. Toasts and anecdotes)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1923" - ], - "creatorLiteral": [ - "Kearney, Paul W. (Paul William), 1896-" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1923 - ], - "idOclc": [ - "7366274" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NANF (Kearney, P. W. Toasts and anecdotes)" - }, - { - "type": "nypl:Bnumber", - "value": "13055466" - }, - { - "type": "nypl:Oclc", - "value": "7366274" - } - ], - "updatedAt": 1711434319901, - "publicationStatement": [ - "New York, Edwardt J. Clode [c1923]" - ], - "identifier": [ - "urn:shelfmark:NANF (Kearney, P. W. Toasts and anecdotes)", - "urn:bnum:13055466", - "urn:oclc:7366274" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1923" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts.", - "Anecdotes." - ], - "titleDisplay": [ - "Toasts and anecdotes / by Paul W. Kearney." - ], - "uri": "b13055466", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 875.01465, - "b13055466" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13055466", - "_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:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "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": [ - "33433103910596" - ], - "identifier": [ - "urn:shelfmark:NANF (Kearney, P. W. Toasts and anecdotes)", - "urn:barcode:33433103910596" - ], - "identifierV2": [ - { - "value": "NANF (Kearney, P. W. Toasts and anecdotes)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103910596", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NANF (Kearney, P. W. Toasts and anecdotes)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NANF (Kearney, P. W. Toasts and anecdotes)" - ], - "shelfMark_sort": "aNANF (Kearney, P. W. Toasts and anecdotes)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16219215" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19635190", - "_score": 875.01465, - "_source": { - "extent": [ - "1 sound disc (46 min.) : digital, mono. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Audio portion of CBS Television broadcast.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Transfer to compact disc incomplete due to damage to the original lacquer discs; side one is completely delaminated, and other sides have minor damage. Original program ran 60 min.", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access to original items restricted.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Marlo Lewis and Ed Sullivan (producers) ; John Wray (direction) ; Ray Bloch (musical direction)", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Forms part of the Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955.", - "type": "bf:Note" - } - ], - "partOf": [ - "Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hammerstein, Oscar, II, 1895-1960", - "Hammerstein, Oscar, II, 1895-1960 -- Interviews", - "Lyricists", - "Lyricists -- United States", - "Lyricists -- United States -- Biography", - "Musicals", - "Musicals -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "dateEndString": [ - "0909" - ], - "title": [ - "Toast of the town." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LDC 37733" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sullivan, Ed, 1901-1974.", - "Hammerstein, Oscar, II, 1895-1960", - "Horne, Lena", - "Merrill, Robert, 1917-2004.", - "Benzell, Mimi.", - "Tabbert, William, 1919-1974.", - "Hall, George, 1916-2002.", - "Cox, Wally, 1924-1973." - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "794597226" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LDC 37733" - }, - { - "type": "nypl:Bnumber", - "value": "19635190" - }, - { - "type": "nypl:Oclc", - "value": "794597226" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)794597226" - } - ], - "uniformTitle": [ - "Ed Sullivan show (Television program)" - ], - "dateEndYear": [ - 909 - ], - "updatedAt": 1712870775817, - "publicationStatement": [ - "1951." - ], - "genreForm": [ - "Variety shows (Television programs)", - "Television commercials." - ], - "identifier": [ - "urn:shelfmark:*LDC 37733", - "urn:bnum:19635190", - "urn:oclc:794597226", - "urn:identifier:(OCoLC)794597226" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hammerstein, Oscar, II, 1895-1960 -- Interviews.", - "Lyricists -- United States -- Biography.", - "Musicals -- Excerpts." - ], - "titleDisplay": [ - "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." - ], - "uri": "b19635190", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Oscar Hammerstein story, pt. 1", - "Oscar Hammerstein collection of noncommercial sound recordings." - ], - "tableOfContents": [ - "Opening commentary and early biography of Oscar Hammerstein II -- Indian love call (Mimi Benzell and Robert Merrill) -- Biography continued (incomplete) -- One alone (Bill Tabbert) (incomplete) -- Biography continued -- Can't help lovin' that man (Lena Horne) -- Biography continued (incomplete) -- Old man river (Robert Merrill) -- Biography continued (incomplete) -- Lover come back to me (Mimi Benzell) -- Comedy skit (incomplete) / George Hall ; Wally Cox -- Interview with Oscar Hammerstein II -- Ending commentary & sponsor's advertisements (Lincoln automobiles) -- Announcement for the next show." - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 875.01465, - "b19635190" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19635190", - "_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:23", - "label": "archival sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:23||archival sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433099082954" - ], - "identifier": [ - "urn:shelfmark:*LDC 37733", - "urn:barcode:33433099082954" - ], - "identifierV2": [ - { - "value": "*LDC 37733", - "type": "bf:ShelfMark" - }, - { - "value": "33433099082954", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LDC 37733" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LDC 37733" - ], - "shelfMark_sort": "a*LDC 037733", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28802558", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+37733&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635190&ItemISxN=i288025581&ItemNumber=33433099082954&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b19635190x&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19635203", - "_score": 875.01465, - "_source": { - "extent": [ - "1 sound disc (46 min.) : digital, mono. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Audio portion of CBS Television broadcast.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Audio distortion from original source. Transfer to compact disc incomplete due to damage to the original lacquer discs; side one, two, five, and seven are completely delaminated, and other sides have minor damage. Original program ran 60 min.", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access to original items restricted.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Marlo Lewis and Ed Sullivan (producers) ; John Wray (direction) ; Ray Bloch (musical direction)", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Forms part of the Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955.", - "type": "bf:Note" - } - ], - "partOf": [ - "Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hammerstein, Oscar, II, 1895-1960", - "Hammerstein, Oscar, II, 1895-1960 -- Interviews", - "Rodgers, Richard, 1902-1979", - "Rodgers, Richard, 1902-1979 -- Interviews", - "Lyricists", - "Lyricists -- United States", - "Lyricists -- United States -- Biography", - "Musicals", - "Musicals -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "dateEndString": [ - "0916" - ], - "title": [ - "Toast of the town." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LDC 50447" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sullivan, Ed, 1901-1974.", - "Hammerstein, Oscar, II, 1895-1960", - "Rodgers, Richard, 1902-1979", - "Rodgers, Richard, 1902-1979.", - "Deel, Sandra.", - "Merrill, Robert, 1917-2004.", - "Rahn, Muriel.", - "Tabbert, William, 1919-1974.", - "Lawrence, Gertrude." - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "794597454" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LDC 50447" - }, - { - "type": "nypl:Bnumber", - "value": "19635203" - }, - { - "type": "nypl:Oclc", - "value": "794597454" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)794597454" - } - ], - "uniformTitle": [ - "Ed Sullivan show (Television program)" - ], - "dateEndYear": [ - 916 - ], - "updatedAt": 1712870775817, - "publicationStatement": [ - "1951." - ], - "genreForm": [ - "Variety shows (Television programs)", - "Television commercials." - ], - "identifier": [ - "urn:shelfmark:*LDC 50447", - "urn:bnum:19635203", - "urn:oclc:794597454", - "urn:identifier:(OCoLC)794597454" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hammerstein, Oscar, II, 1895-1960 -- Interviews.", - "Rodgers, Richard, 1902-1979 -- Interviews.", - "Lyricists -- United States -- Biography.", - "Musicals -- Excerpts." - ], - "titleDisplay": [ - "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." - ], - "uri": "b19635203", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Oscar Hammerstein story, pt. 2", - "Oscar Hammerstein collection of noncommercial sound recordings." - ], - "tableOfContents": [ - "[Sides 1 & 2 unplayable] -- Commentary on Oklahoma (Ed Sullivan, incomplete) -- People will say we're in love (Robert Merrill & Sandra Deel) -- Habanera from Carmen Jones (Murial Rahn, incomplete) -- [Side 5 unplayable] -- Some Enchanted Evening (Robert Merrill) -- You've Got To Be Carefully Taught (Bill Tabbert) -- Sullivan speaks with Hammerstein and Richard Rodgers about their partnership -- Whistle A Happy Tune & Getting To Know You (Gertrude Lawrence & Richard Rodgers, piano) -- You'll never walk alone (Merrill) -- Commercial announcement for Lincoln automobiles -- Concluding announcements (incomplete)" - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 875.01465, - "b19635203" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19635203", - "_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:23", - "label": "archival sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:23||archival sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433099082962" - ], - "identifier": [ - "urn:shelfmark:*LDC 50447", - "urn:barcode:33433099082962" - ], - "identifierV2": [ - { - "value": "*LDC 50447", - "type": "bf:ShelfMark" - }, - { - "value": "33433099082962", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LDC 50447" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LDC 50447" - ], - "shelfMark_sort": "a*LDC 050447", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28802585", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+50447&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635203&ItemISxN=i288025854&ItemNumber=33433099082962&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b196352034&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21290385", - "_score": 871.5295, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "Compiled by The Billy Rose Theatre Division, The New York Public Library.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Four reviews of ToasT by Lemon Andersen. This prison drama starring Keith David and John Earl Jelks takes place in Attica just prior to the riots of 1971. Opened May 5, 2015, at Public Theater, 425 Lafayette Street, New York, N.Y. Most of the characters are African Americans.", - "type": "bf:Note" - } - ], - "partOf": [ - "Collection of newspaper clippings of dramatic criticism, 2014/15." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Andersen, Lemon", - "Attica Correctional Facility", - "Attica Correctional Facility -- Drama", - "Public Theater (New York, N.Y.)", - "Theater", - "Theater -- New York (State)", - "Theater -- New York (State) -- New York", - "Theater -- New York (State) -- New York -- Reviews", - "Prisons", - "Prisons -- Drama" - ], - "numItemDatesParsed": [ - 0 - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "ToasT (Andersen)" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-NBL+ Collection 2014/15 (ToasT)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "New York Public Library for the Performing Arts. Billy Rose Theatre Division. com" - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-NBL+ Collection 2014/15 (ToasT)" - }, - { - "type": "nypl:Bnumber", - "value": "21290385" - } - ], - "updatedAt": 1711659268085, - "genreForm": [ - "Reviews (document genre)." - ], - "identifier": [ - "urn:shelfmark:*T-NBL+ Collection 2014/15 (ToasT)", - "urn:bnum:21290385" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Andersen, Lemon.", - "Attica Correctional Facility -- Drama.", - "Public Theater (New York, N.Y.)", - "Theater -- New York (State) -- New York -- Reviews.", - "Prisons -- Drama." - ], - "titleDisplay": [ - "ToasT (Andersen), 2014/15 : reviews." - ], - "uri": "b21290385", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 871.5295, - "b21290385" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21290385", - "_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:22", - "label": "clipping files" - } - ], - "catalogItemType_packed": [ - "catalogItemType:22||clipping files" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pat11", - "label": "Performing Arts Research Collections - Theatre - Reference" - } - ], - "holdingLocation_packed": [ - "loc:pat11||Performing Arts Research Collections - Theatre - Reference" - ], - "identifier": [ - "urn:shelfmark:*T-NBL+ Collection 2014/15 (ToasT)" - ], - "identifierV2": [ - { - "value": "*T-NBL+ Collection 2014/15 (ToasT)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*T-NBL+ Collection 2014/15 (ToasT)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-NBL+ Collection 2014/15 (ToasT)" - ], - "shelfMark_sort": "a*T-NBL+ Collection 2014/15 (ToasT)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37684790" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21501833", - "_score": 871.5295, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "Compiled by The Billy Rose Theatre Division, The New York Public Library.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Four reviews of Toast by Richard Bean. This comedy about British factory life was reviewed May 19, 2016, when it was produced as part of Brits Off-Broadway festival at 59E59 Theaters, 59 East 59th Street, New York, N.Y.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Reviewed by Ben Brantley in The New York Times, Hilton Als in The New Yorker, Barry Bassis in The Epoch Times, and Elisabeth Vincentelli in New Yor Post.", - "type": "bf:Note" - } - ], - "partOf": [ - "Collection of newspaper clippings of dramatic criticism, 2015/16." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bean, Richard, 1956-", - "59E59 Theaters (New York, N.Y.)", - "Brits Off-Broadway", - "Theater", - "Theater -- New York (State)", - "Theater -- New York (State) -- New York", - "Theater -- New York (State) -- New York -- Reviews", - "Factories", - "Factories -- England", - "Factories -- England -- Drama", - "Employees", - "Employees -- England", - "Employees -- England -- Drama" - ], - "numItemDatesParsed": [ - 0 - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Toast (Bean)" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-NBL+ Collection 2015/16 (Toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "New York Public Library for the Performing Arts. Billy Rose Theatre Division. com" - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-NBL+ Collection 2015/16 (Toast)" - }, - { - "type": "nypl:Bnumber", - "value": "21501833" - } - ], - "updatedAt": 1711659234093, - "genreForm": [ - "Reviews (document genre)." - ], - "identifier": [ - "urn:shelfmark:*T-NBL+ Collection 2015/16 (Toast)", - "urn:bnum:21501833" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bean, Richard, 1956-", - "59E59 Theaters (New York, N.Y.)", - "Brits Off-Broadway.", - "Theater -- New York (State) -- New York -- Reviews.", - "Factories -- England -- Drama.", - "Employees -- England -- Drama." - ], - "titleDisplay": [ - "Toast (Bean), 2015/16 : reviews." - ], - "uri": "b21501833", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 871.5295, - "b21501833" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21501833", - "_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:22", - "label": "clipping files" - } - ], - "catalogItemType_packed": [ - "catalogItemType:22||clipping files" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pat11", - "label": "Performing Arts Research Collections - Theatre - Reference" - } - ], - "holdingLocation_packed": [ - "loc:pat11||Performing Arts Research Collections - Theatre - Reference" - ], - "identifier": [ - "urn:shelfmark:*T-NBL+ Collection 2015/16 (Toast)" - ], - "identifierV2": [ - { - "value": "*T-NBL+ Collection 2015/16 (Toast)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*T-NBL+ Collection 2015/16 (Toast)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-NBL+ Collection 2015/16 (Toast)" - ], - "shelfMark_sort": "a*T-NBL+ Collection 2015/16 (Toast)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37685439" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14570561", - "_score": 869.5295, - "_source": { - "extent": [ - "[97] p., ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Skeleton head cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Illustrated t.-p.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "John C. Winston Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1905 - ], - "title": [ - "Toast book" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Rare Books 18-3570" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1905" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Dwiggins, Clare Victor." - ], - "dateStartYear": [ - 1905 - ], - "idOclc": [ - "14233575" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Rare Books 18-3570" - }, - { - "type": "nypl:Bnumber", - "value": "14570561" - }, - { - "type": "nypl:Oclc", - "value": "14233575" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R250001642" - } - ], - "updatedAt": 1712866073540, - "publicationStatement": [ - "Philadelphia : John C. Winston Co., c1905." - ], - "identifier": [ - "urn:shelfmark:Rare Books 18-3570", - "urn:bnum:14570561", - "urn:oclc:14233575", - "urn:identifier:(WaOLN)R250001642" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1905" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Toast book / compiled and illustrated by Clare Victor Dwiggins." - ], - "uri": "b14570561", - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 869.5295, - "b14570561" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11518415", - "_score": 854.8394, - "_source": { - "extent": [ - "ix, 256 p. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 252-256).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Crown Pub." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1991 - ], - "title": [ - "Toasts : over 1,500 of the best toasts, sentiments, blessings, and graces" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PN6341" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "idLccn": [ - "91006967" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Dickson, Paul." - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "23141392", - "NYPG92-B3876" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PN6341" - }, - { - "type": "nypl:Bnumber", - "value": "11518415" - }, - { - "type": "bf:Isbn", - "value": "0517584123" - }, - { - "type": "nypl:Oclc", - "value": "23141392" - }, - { - "type": "nypl:Oclc", - "value": "NYPG92-B3876" - }, - { - "type": "bf:Lccn", - "value": "91006967" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1526757" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)23141392" - } - ], - "updatedAt": 1710987073679, - "publicationStatement": [ - "New York : Crown Pub., 1991." - ], - "idIsbn": [ - "0517584123" - ], - "identifier": [ - "urn:shelfmark:PN6341", - "urn:bnum:11518415", - "urn:isbn:0517584123", - "urn:oclc:23141392", - "urn:oclc:NYPG92-B3876", - "urn:lccn:91006967", - "urn:identifier:(WaOLN)nyp1526757", - "urn:identifier:(OCoLC)23141392" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Toasts : over 1,500 of the best toasts, sentiments, blessings, and graces / [compiled by] Paul Dickson ; illustrated by Rollin McGrail." - ], - "uri": "b11518415", - "lccClassification": [ - "PN6341 .T634 1991" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ], - "idIsbn_clean": [ - "0517584123" - ] - }, - "sort": [ - 854.8394, - "b11518415" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11518415", - "_nested": { - "field": "items", - "offset": 0 - }, - "_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:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433076689698" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. PN6341 .T634 1991", - "urn:barcode:33433076689698" - ], - "identifierV2": [ - { - "value": "Pub. Cat. PN6341 .T634 1991", - "type": "bf:ShelfMark" - }, - { - "value": "33433076689698", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. PN6341 .T634 1991" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. PN6341 .T634 1991" - ], - "shelfMark_sort": "aPub. Cat. PN6341 .T634 001991", - "status": [ - { - "id": "status:u", - "label": "Temporarily unavailable" - } - ], - "status_packed": [ - "status:u||Temporarily unavailable" - ], - "type": [ - "bf:Item" - ], - "uri": "i15916191" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b20684481", - "_score": 853.9329, - "_source": { - "extent": [ - "vi,48p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "The titlepage is engraved.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Reproduction of original from British Library.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "English Short Title Catalog", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Electronic reproduction.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Toasts -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed for W. Thiselton, Circulating Library, 37, Goodge Street, Tottenham Court Road" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1791 - ], - "title": [ - "The toast master, being a genteel collection of sentiments + toasts." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1791" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1791 - ], - "idOclc": [ - "642300472", - "ECCO1-T117095" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "20684481" - }, - { - "type": "nypl:Oclc", - "value": "642300472" - }, - { - "type": "nypl:Oclc", - "value": "ECCO1-T117095" - }, - { - "type": "bf:Identifier", - "value": "(Uk-ES)006385605" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)642300472" - } - ], - "updatedAt": 1711315866703, - "publicationStatement": [ - "[London] : Printed for W. Thiselton, Circulating Library, 37, Goodge Street, Tottenham Court Road, [1791]" - ], - "identifier": [ - "urn:bnum:20684481", - "urn:oclc:642300472", - "urn:oclc:ECCO1-T117095", - "urn:identifier:(Uk-ES)006385605", - "urn:identifier:(OCoLC)642300472" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1791" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts -- Early works to 1800." - ], - "titleDisplay": [ - "The toast master, [electronic resource] : being a genteel collection of sentiments + toasts." - ], - "uri": "b20684481", - "electronicResources": [ - { - "label": "Full text online available from home with a valid library card and onsite at NYPL", - "url": "http://find.galegroup.com/ecco/infomark.do?contentSet=ECCOArticles&docType=ECCOArticles&bookId=0912000200&type=getFullCitation&tabID=T001&prodId=ECCO&docLevel=TEXT_GRAPHICS&version=1.0&source=library&userGroupName=nypl" - } - ], - "placeOfPublication": [ - "[London]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "12⁰." - ] - }, - "sort": [ - 853.9329, - "b20684481" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb6955197", - "_score": 852.17035, - "_source": { - "extent": [ - "386 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "publisherLiteral": [ - "Wydawn. \"Czarne\"," - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "createdYear": [ - 2010 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast za przodków /", - "Toast za przodków / Wojciech Górecki." - ], - "creatorLiteral": [ - "Górecki, Wojciech, 1970-" - ], - "createdString": [ - "2010" - ], - "seriesStatement": [ - "Reportaż" - ], - "dateStartYear": [ - 2010 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "6955197" - }, - { - "type": "bf:Isbn", - "value": "9788375361940" - }, - { - "type": "nypl:Oclc", - "value": "ocn671293997" - }, - { - "type": "bf:Identifier", - "value": "(PlWaKWL)lx2010024594" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn671293997" - } - ], - "idOclc": [ - "ocn671293997" - ], - "uniformTitle": [ - "Reportaż." - ], - "holdings": [], - "updatedAt": 1642216898305, - "publicationStatement": [ - "Wołowiec : Wydawn. \"Czarne\", 2010." - ], - "identifier": [ - "urn:bnum:6955197", - "urn:isbn:9788375361940", - "urn:oclc:ocn671293997", - "urn:undefined:(PlWaKWL)lx2010024594", - "urn:undefined:(OCoLC)ocn671293997" - ], - "idIsbn": [ - "9788375361940" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2010" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Toast za przodków / Wojciech Górecki." - ], - "uri": "pb6955197", - "lccClassification": [ - "PG7223.I78 T627 2010" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wołowiec :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 852.17035, - "pb6955197" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb6955197", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "pi6260657", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PG7223.I78 T627 2010" - ], - "identifierV2": [ - { - "value": "PG7223.I78 T627 2010", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32101072287822" - } - ], - "physicalLocation": [ - "PG7223.I78 T627 2010" - ], - "identifier": [ - "urn:barcode:32101072287822" - ], - "idBarcode": [ - "32101072287822" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPG7223.I78 T627 002010" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b20661368", - "_score": 850.4071, - "_source": { - "extent": [ - "36p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Reproduction of original from Bodleian Library (Oxford).", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "English Short Title Catalog", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Electronic reproduction.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Toasts -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "printed and sold by John Abraham, at his circulating-library" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1789 - ], - "title": [ - "The toast master being a genteel collection of sentiments and toasts, ..." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1789" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1789 - ], - "idOclc": [ - "642183187", - "ECCO1-N27382" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "20661368" - }, - { - "type": "nypl:Oclc", - "value": "642183187" - }, - { - "type": "nypl:Oclc", - "value": "ECCO1-N27382" - }, - { - "type": "bf:Identifier", - "value": "(Uk-ES)006019072" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)642183187" - } - ], - "updatedAt": 1711315828102, - "publicationStatement": [ - "London : printed and sold by John Abraham, at his circulating-library, 1789." - ], - "identifier": [ - "urn:bnum:20661368", - "urn:oclc:642183187", - "urn:oclc:ECCO1-N27382", - "urn:identifier:(Uk-ES)006019072", - "urn:identifier:(OCoLC)642183187" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1789" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts -- Early works to 1800." - ], - "titleDisplay": [ - "The toast master [electronic resource] : being a genteel collection of sentiments and toasts, ..." - ], - "uri": "b20661368", - "electronicResources": [ - { - "label": "Full text online available from home with a valid library card and onsite at NYPL", - "url": "http://find.galegroup.com/ecco/infomark.do?contentSet=ECCOArticles&docType=ECCOArticles&bookId=1261400300&type=getFullCitation&tabID=T001&prodId=ECCO&docLevel=TEXT_GRAPHICS&version=1.0&source=library&userGroupName=nypl" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "12⁰." - ] - }, - "sort": [ - 850.4071, - "b20661368" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11302028", - "_score": 850.01465, - "_source": { - "extent": [ - "vi, 301 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cooking, American", - "Cooking, American -- California", - "Cooking, American -- California -- Los Angeles" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Women's Auxiliary of the California Babies' and Children's Hospital" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "Burnt toast." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 89-9691" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "California Babies' and Children's Hospital. Women's Auxiliary." - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "4365987", - "NYPG90-B62543" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 89-9691" - }, - { - "type": "nypl:Bnumber", - "value": "11302028" - }, - { - "type": "nypl:Oclc", - "value": "4365987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B62543" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1309761" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4365987" - } - ], - "updatedAt": 1711595109405, - "publicationStatement": [ - "Los Angeles, Calif. : Women's Auxiliary of the California Babies' and Children's Hospital, 1950." - ], - "identifier": [ - "urn:shelfmark:JFD 89-9691", - "urn:bnum:11302028", - "urn:oclc:4365987", - "urn:oclc:NYPG90-B62543", - "urn:identifier:(WaOLN)nyp1309761", - "urn:identifier:(OCoLC)4365987" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cooking, American -- California -- Los Angeles." - ], - "titleDisplay": [ - "Burnt toast." - ], - "uri": "b11302028", - "placeOfPublication": [ - "Los Angeles, Calif." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 850.01465, - "b11302028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11302028", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433040618625" - ], - "identifier": [ - "urn:shelfmark:JFD 89-9691", - "urn:barcode:33433040618625" - ], - "identifierV2": [ - { - "value": "JFD 89-9691", - "type": "bf:ShelfMark" - }, - { - "value": "33433040618625", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFD 89-9691" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 89-9691" - ], - "shelfMark_sort": "aJFD 89-009691", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13162098" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13056616", - "_score": 850.01465, - "_source": { - "extent": [ - "111 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dodge" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1908 - ], - "title": [ - "Irish toasts." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NANF (Welsh, C. Irish toasts)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1908" - ], - "creatorLiteral": [ - "Welsh, Charles, 1850-1914." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1908 - ], - "idOclc": [ - "10917689" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NANF (Welsh, C. Irish toasts)" - }, - { - "type": "nypl:Bnumber", - "value": "13056616" - }, - { - "type": "nypl:Oclc", - "value": "10917689" - } - ], - "updatedAt": 1711183818822, - "publicationStatement": [ - "New York, Dodge [c1908]" - ], - "identifier": [ - "urn:shelfmark:NANF (Welsh, C. Irish toasts)", - "urn:bnum:13056616", - "urn:oclc:10917689" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1908" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Irish toasts." - ], - "uri": "b13056616", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 850.01465, - "b13056616" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13056616", - "_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:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "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": [ - "33433103911107" - ], - "identifier": [ - "urn:shelfmark:NANF (Welsh, C. Irish toasts)", - "urn:barcode:33433103911107" - ], - "identifierV2": [ - { - "value": "NANF (Welsh, C. Irish toasts)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103911107", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NANF (Welsh, C. Irish toasts)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NANF (Welsh, C. Irish toasts)" - ], - "shelfMark_sort": "aNANF (Welsh, C. Irish toasts)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16219998" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13056620", - "_score": 850.01465, - "_source": { - "extent": [ - "xii, 109 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "H. M. Caldwell co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1908 - ], - "title": [ - "Scottish toasts" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NANF (Welsh, C. Scottish toasts)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1908" - ], - "creatorLiteral": [ - "Welsh, Charles, 1850-1914." - ], - "idLccn": [ - "08022627" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1908 - ], - "idOclc": [ - "2975461" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NANF (Welsh, C. Scottish toasts)" - }, - { - "type": "nypl:Bnumber", - "value": "13056620" - }, - { - "type": "nypl:Oclc", - "value": "2975461" - }, - { - "type": "bf:Lccn", - "value": "08022627" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3035223" - } - ], - "updatedAt": 1711433615224, - "publicationStatement": [ - "New York and Boston, H. M. Caldwell co. [c1908]" - ], - "identifier": [ - "urn:shelfmark:NANF (Welsh, C. Scottish toasts)", - "urn:bnum:13056620", - "urn:oclc:2975461", - "urn:lccn:08022627", - "urn:identifier:(WaOLN)nyp3035223" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1908" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Scottish toasts, by Ivor Ben McIvor [pseud.]" - ], - "uri": "b13056620", - "lccClassification": [ - "PN6347.S3 W3" - ], - "placeOfPublication": [ - "New York and Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "15 cm." - ] - }, - "sort": [ - 850.01465, - "b13056620" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13056620", - "_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:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "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": [ - "33433103910919" - ], - "identifier": [ - "urn:shelfmark:NANF (Welsh, C. Scottish toasts)", - "urn:barcode:33433103910919" - ], - "identifierV2": [ - { - "value": "NANF (Welsh, C. Scottish toasts)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103910919", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NANF (Welsh, C. Scottish toasts)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NANF (Welsh, C. Scottish toasts)" - ], - "shelfMark_sort": "aNANF (Welsh, C. Scottish toasts)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16220000" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13279082", - "_score": 850.01465, - "_source": { - "extent": [ - "41 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"An address delivered on January 16, 1936 before the Municipal art society of Baltimore city and now published under its auspices. Some of the ideas expressed were further developed in lectures given ... at the Rice institute of Houston, Texas, in January, 1937.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Horace" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harvard university press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1937 - ], - "title": [ - "A toast to Horace" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NTRW (Rand, E. K. Toast to Horace)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1937" - ], - "creatorLiteral": [ - "Rand, Edward Kennard, 1871-1945." - ], - "idLccn": [ - "38001889" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "5581153" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NTRW (Rand, E. K. Toast to Horace)" - }, - { - "type": "nypl:Bnumber", - "value": "13279082" - }, - { - "type": "nypl:Oclc", - "value": "5581153" - }, - { - "type": "bf:Lccn", - "value": "38001889" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3256542" - } - ], - "updatedAt": 1711302787483, - "publicationStatement": [ - "Cambridge, Harvard university press, 1937." - ], - "identifier": [ - "urn:shelfmark:NTRW (Rand, E. K. Toast to Horace)", - "urn:bnum:13279082", - "urn:oclc:5581153", - "urn:lccn:38001889", - "urn:identifier:(WaOLN)nyp3256542" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Horace." - ], - "titleDisplay": [ - "A toast to Horace, by Edward Kennard Rand." - ], - "uri": "b13279082", - "lccClassification": [ - "PA6411.Z5 R3" - ], - "placeOfPublication": [ - "Cambridge" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 850.01465, - "b13279082" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13279082", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433097996379" - ], - "identifier": [ - "urn:shelfmark:NTRW (Rand, E. K. Toast to Horace)", - "urn:barcode:33433097996379" - ], - "identifierV2": [ - { - "value": "NTRW (Rand, E. K. Toast to Horace)", - "type": "bf:ShelfMark" - }, - { - "value": "33433097996379", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NTRW (Rand, E. K. Toast to Horace)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NTRW (Rand, E. K. Toast to Horace)" - ], - "shelfMark_sort": "aNTRW (Rand, E. K. Toast to Horace)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16397426" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14267148", - "_score": 850.01465, - "_source": { - "extent": [ - "4 l." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover-title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Printed on outside of double leaf uncut at top, leaf 4 blank.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Spoken at the Family farm, in the valley of the Portola, California, on ... May thirtieth, Mdccccxix.\"--prefatory note, dated Christmas, 1927, and signed: John Henry Nash.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "John Henry Nash" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1927 - ], - "title": [ - "A toast to the ladies." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1927" - ], - "creatorLiteral": [ - "Hamilton, Edward H." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1927 - ], - "idOclc": [ - "6002827" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)" - }, - { - "type": "nypl:Bnumber", - "value": "14267148" - }, - { - "type": "nypl:Oclc", - "value": "6002827" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R040000312" - } - ], - "updatedAt": 1712865343289, - "publicationStatement": [ - "[San Francisco, John Henry Nash, 1927]" - ], - "identifier": [ - "urn:shelfmark:*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)", - "urn:bnum:14267148", - "urn:oclc:6002827", - "urn:identifier:(WaOLN)R040000312" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1927" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast to the ladies." - ], - "uri": "b14267148", - "placeOfPublication": [ - "[San Francisco" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "45 cm." - ] - }, - "sort": [ - 850.01465, - "b14267148" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14267148", - "_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:*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)" - ], - "identifierV2": [ - { - "value": "*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)" - ], - "shelfMark_sort": "a*KP+++ (Nash) (Hamilton, E. H. Toast to the ladies)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16968975", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Hamilton%2C+Edward+H.&CallNumber=*KP%2B%2B%2B+%28Nash%29+%28Hamilton%2C+E.+H.+Toast+to+the+ladies%29&Date=1927&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14267148&ItemISxN=i16968975x&ItemPlace=%5BSan+Francisco&ItemPublisher=John+Henry+Nash%2C+1927%5D&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b142671484&Site=SASRB&Title=A+toast+to+the+ladies." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16019290", - "_score": 850.01465, - "_source": { - "extent": [ - "1 sound disc (29 min.) : analog, 33 1/3 rpm, stereo. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Country songs.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Notes by Jim Malloy on container.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded at Monument Recording Studio, Nashville.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Country music", - "Country music -- 1971-1980" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mega" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "title": [ - "The toast of '45" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZR 33485" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1973" - ], - "creatorLiteral": [ - "Smith, Sammi." - ], - "idLccn": [ - "94764528" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "idOclc": [ - "16918975" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZR 33485" - }, - { - "type": "nypl:Bnumber", - "value": "16019290" - }, - { - "type": "nypl:Oclc", - "value": "16918975" - }, - { - "type": "bf:Lccn", - "value": "94764528" - }, - { - "type": "bf:Identifier", - "value": "M31-1021 Mega" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)A250000131" - } - ], - "updatedAt": 1712867583726, - "publicationStatement": [ - "Nashville, Tenn. : Mega, p1973." - ], - "identifier": [ - "urn:shelfmark:*LZR 33485", - "urn:bnum:16019290", - "urn:oclc:16918975", - "urn:lccn:94764528", - "urn:identifier:M31-1021 Mega", - "urn:identifier:(WaOLN)A250000131" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Country music -- 1971-1980." - ], - "titleDisplay": [ - "The toast of '45 [sound recording] / Sammi Smith." - ], - "uri": "b16019290", - "placeOfPublication": [ - "Nashville, Tenn." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Rings for sale.", - "If I may.", - "Have I stayed away too long.", - "Tony.", - "That's the price I pay for loving you.", - "I miss you most when you're right here.", - "I'm in for stormy weather.", - "City of New Orleans.", - "Send me the pillow you dream on." - ], - "tableOfContents": [ - "Rings for sale (2:14) -- If I may (2:39) -- Have I stayed away too long (3:22) -- Tony (3:02) -- That's the price I pay for loving you (2:14) -- I miss you most when you're right here (3:37) -- I'm in for stormy weather (2:27) -- City of New Orleans (4:15) -- The toast of '45 (2:47) -- Send me the pillow you dream on (2:43)." - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 850.01465, - "b16019290" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16019290", - "_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:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433036315707" - ], - "identifier": [ - "urn:shelfmark:*LZR 33485 [Disc]", - "urn:barcode:33433036315707" - ], - "identifierV2": [ - { - "value": "*LZR 33485 [Disc]", - "type": "bf:ShelfMark" - }, - { - "value": "33433036315707", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LZR 33485 [Disc]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LZR 33485 [Disc]" - ], - "shelfMark_sort": "a*LZR 33485 [Disc]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15431550", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Smith%2C+Sammi.&CallNumber=*LZR+33485+%5BDisc%5D&Date=1973&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16019290&ItemISxN=i154315503&ItemNumber=33433036315707&ItemPlace=Nashville%2C+Tenn.&ItemPublisher=Mega%2C+p1973.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b160192900&Site=LPAMRAMI&Title=The+toast+of+%2745" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16151201", - "_score": 850.01465, - "_source": { - "extent": [ - "1 sound disc : analog, 33 1/3 rpm ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Program notes in English and Spanish on container.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Sung in Spanish.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Spain" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Seeco" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 19 - ], - "title": [ - "The toast of Spain" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZR 43109" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "19uu" - ], - "creatorLiteral": [ - "Flores, Lola." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Gold series" - ], - "contributorLiteral": [ - "Aguilera, F.", - "García Matos, Manuel, 1912-" - ], - "dateStartYear": [ - 19 - ], - "idOclc": [ - "58387713" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZR 43109" - }, - { - "type": "nypl:Bnumber", - "value": "16151201" - }, - { - "type": "nypl:Oclc", - "value": "58387713" - }, - { - "type": "bf:Identifier", - "value": "SCLP 9109 Seeco" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)A070000038" - } - ], - "updatedAt": 1712867971029, - "publicationStatement": [ - "New York, N.Y. : Seeco, [19--?]" - ], - "identifier": [ - "urn:shelfmark:*LZR 43109", - "urn:bnum:16151201", - "urn:oclc:58387713", - "urn:identifier:SCLP 9109 Seeco", - "urn:identifier:(WaOLN)A070000038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "19uu" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Spain." - ], - "titleDisplay": [ - "The toast of Spain [sound recording] / Lola Flores." - ], - "uri": "b16151201", - "placeOfPublication": [ - "New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Lola de España -- Concha veneno -- Tu cartel por las mũrallas -- Mi pelo negro -- Mi embajaora -- Valgame la Magdalena -- Remedios la de montilla -- Venga pronto el volapie -- Gritenme piedras del campo -- Me serenaste -- Pa su papa -- Maldigo tus ojos verdes." - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 850.01465, - "b16151201" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16151201", - "_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:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433036075665" - ], - "identifier": [ - "urn:shelfmark:*LZR 43109 [Disc]", - "urn:barcode:33433036075665" - ], - "identifierV2": [ - { - "value": "*LZR 43109 [Disc]", - "type": "bf:ShelfMark" - }, - { - "value": "33433036075665", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LZR 43109 [Disc]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LZR 43109 [Disc]" - ], - "shelfMark_sort": "a*LZR 43109 [Disc]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15556250", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Flores%2C+Lola.&CallNumber=*LZR+43109+%5BDisc%5D&Date=19uu&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16151201&ItemISxN=i155562502&ItemNumber=33433036075665&ItemPlace=New+York%2C+N.Y.&ItemPublisher=Seeco%2C+%5B19--%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b16151201x&Site=LPAMRAMI&Title=The+toast+of+Spain" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16579957", - "_score": 850.01465, - "_source": { - "extent": [ - "iv, 238 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nigeria", - "Nigeria -- Social conditions", - "Nigeria -- Social conditions -- 1960-", - "Nigeria -- Economic conditions", - "Nigeria -- Economic conditions -- 1960-", - "Nigeria -- Politics and government", - "Nigeria -- Politics and government -- 1960-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S.M.K. Taribo" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1991 - ], - "title": [ - "A toast to Nigeria" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc D 07-1829" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "creatorLiteral": [ - "Taribo, Spiff Micah Kalaokpara." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "35139639" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 07-1829" - }, - { - "type": "nypl:Bnumber", - "value": "16579957" - }, - { - "type": "nypl:Oclc", - "value": "35139639" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)35139639" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M180000413" - } - ], - "updatedAt": 1711412110199, - "publicationStatement": [ - "[Nigeria?] : S.M.K. Taribo, c1991." - ], - "identifier": [ - "urn:shelfmark:Sc D 07-1829", - "urn:bnum:16579957", - "urn:oclc:35139639", - "urn:identifier:(OCoLC)35139639", - "urn:identifier:(WaOLN)M180000413" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nigeria -- Social conditions -- 1960-", - "Nigeria -- Economic conditions -- 1960-", - "Nigeria -- Politics and government -- 1960-" - ], - "titleDisplay": [ - "A toast to Nigeria / by Spiff Micah Kalaokpara Taribo." - ], - "uri": "b16579957", - "lccClassification": [ - "PR9387.9.T37 T63 1991" - ], - "placeOfPublication": [ - "[Nigeria?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 850.01465, - "b16579957" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16579957", - "_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": [ - "33433074287149" - ], - "identifier": [ - "urn:shelfmark:Sc D 07-1829", - "urn:barcode:33433074287149" - ], - "identifierV2": [ - { - "value": "Sc D 07-1829", - "type": "bf:ShelfMark" - }, - { - "value": "33433074287149", - "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 D 07-1829" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc D 07-1829" - ], - "shelfMark_sort": "aSc D 07-001829", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17355861" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16601477", - "_score": 850.01465, - "_source": { - "extent": [ - "1 volume" - ], - "note": [ - { - "noteType": "Note", - "label": "Dictated by Edith Ellis, Feb. 4, 1931.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "The toast of the town" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "CTR 954" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "idOclc": [ - "Local - AREV Theatre Scripts" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "CTR 954" - }, - { - "type": "nypl:Bnumber", - "value": "16601477" - }, - { - "type": "nypl:Oclc", - "value": "Local - AREV Theatre Scripts" - } - ], - "updatedAt": 1711594859497, - "genreForm": [ - "Scripts.", - "Motion picture plays." - ], - "identifier": [ - "urn:shelfmark:CTR 954", - "urn:bnum:16601477", - "urn:oclc:Local - AREV Theatre Scripts" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The toast of the town: typescript, 1931." - ], - "uri": "b16601477", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 850.01465, - "b16601477" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16601477", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:20", - "label": "manuscript" - } - ], - "catalogItemType_packed": [ - "catalogItemType:20||manuscript" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433108291166" - ], - "identifier": [ - "urn:shelfmark:CTR 954", - "urn:barcode:33433108291166" - ], - "identifierV2": [ - { - "value": "CTR 954", - "type": "bf:ShelfMark" - }, - { - "value": "33433108291166", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "CTR 954" - ], - "requestable": [ - false - ], - "shelfMark": [ - "CTR 954" - ], - "shelfMark_sort": "aCTR 000954", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30850632", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=CTR+954&Date=++++&Form=30&Genre=manuscript&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16601477&ItemISxN=i308506327&ItemNumber=33433108291166&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b166014771&Site=LPATH&Title=The+toast+of+the+town%3A+typescript%2C+1931." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12227432", - "_score": 848.01465, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", - "type": "bf:Note" - } - ], - "partOf": [ - "Dance and dancers. London. June/July 1991, p. 33-36. ill." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Martins, Peter, 1946-", - "New York City Ballet", - "Sleeping beauty (Choreographic work : Martins after Petipa, M)" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1991 - ], - "title": [ - "A toast to Beauty." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*MGZA" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1991" - ], - "creatorLiteral": [ - "Barnes, Clive, 1927-2008." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1991 - ], - "idOclc": [ - "NYPY916066942-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*MGZA" - }, - { - "type": "nypl:Bnumber", - "value": "12227432" - }, - { - "type": "nypl:Oclc", - "value": "NYPY916066942-B" - }, - { - "type": "bf:Identifier", - "value": "(NN-PD)916066942" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2214263" - } - ], - "updatedAt": 1711473809402, - "identifier": [ - "urn:shelfmark:*MGZA", - "urn:bnum:12227432", - "urn:oclc:NYPY916066942-B", - "urn:identifier:(NN-PD)916066942", - "urn:identifier:(WaOLN)nyp2214263" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1991" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Martins, Peter, 1946-", - "New York City Ballet.", - "Sleeping beauty (Choreographic work : Martins after Petipa, M)" - ], - "titleDisplay": [ - "A toast to Beauty." - ], - "uri": "b12227432", - "issuance": [ - { - "id": "urn:biblevel:b", - "label": "serial component part" - } - ] - }, - "sort": [ - 848.01465, - "b12227432" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13131869", - "_score": 848.01465, - "_source": { - "extent": [ - "242 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kingston Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1920 - ], - "title": [ - "The royal toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NCM (Back, K. J. Royal toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1920" - ], - "creatorLiteral": [ - "Australianus." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1920 - ], - "idOclc": [ - "18297389" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NCM (Back, K. J. Royal toast)" - }, - { - "type": "nypl:Bnumber", - "value": "13131869" - }, - { - "type": "nypl:Oclc", - "value": "18297389" - } - ], - "updatedAt": 1711048347990, - "publicationStatement": [ - "Sydney [N.S.W.] : Kingston Press, 1920." - ], - "identifier": [ - "urn:shelfmark:NCM (Back, K. J. Royal toast)", - "urn:bnum:13131869", - "urn:oclc:18297389" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1920" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The royal toast / by \"Australianus\"." - ], - "uri": "b13131869", - "placeOfPublication": [ - "Sydney [N.S.W.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 848.01465, - "b13131869" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13131869", - "_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": [ - "33433112057363" - ], - "identifier": [ - "urn:shelfmark:NCM (Back, K. J. Royal toast)", - "urn:barcode:33433112057363" - ], - "identifierV2": [ - { - "value": "NCM (Back, K. J. Royal toast)", - "type": "bf:ShelfMark" - }, - { - "value": "33433112057363", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NCM (Back, K. J. Royal toast)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NCM (Back, K. J. Royal toast)" - ], - "shelfMark_sort": "aNCM (Back, K. J. Royal toast)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16274064" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14264413", - "_score": 848.01465, - "_source": { - "extent": [ - "2 p.l., 7-73 p., 2 l." - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: G.C. Baravelli.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Stalin, Joseph, 1878-1953", - "Communism", - "Communism -- Soviet Union", - "Soviet Union", - "Soviet Union -- Economic conditions", - "Soviet Union -- Economic conditions -- 1917-1945" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edizioni di Novissima" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1937 - ], - "title": [ - "Stalin's toast." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "SB p.v. 443" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1937" - ], - "creatorLiteral": [ - "Baravelli, G. C. (Giulio Cesare)" - ], - "idLccn": [ - "38006165" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "10504920" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "SB p.v. 443" - }, - { - "type": "nypl:Bnumber", - "value": "14264413" - }, - { - "type": "nypl:Oclc", - "value": "10504920" - }, - { - "type": "bf:Lccn", - "value": "38006165" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R020000041" - } - ], - "updatedAt": 1711486550968, - "publicationStatement": [ - "Roma, Edizioni di Novissima [1937]" - ], - "identifier": [ - "urn:shelfmark:SB p.v. 443", - "urn:bnum:14264413", - "urn:oclc:10504920", - "urn:lccn:38006165", - "urn:identifier:(WaOLN)R020000041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Stalin, Joseph, 1878-1953.", - "Communism -- Soviet Union.", - "Soviet Union -- Economic conditions -- 1917-1945." - ], - "titleDisplay": [ - "Stalin's toast." - ], - "uri": "b14264413", - "lccClassification": [ - "DK267 .B27" - ], - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "A class which refuses to die.--Fighting the party.--Rifle shots in Moscow.--The lowest wages in the world.--Sordid housing.--Yagoda: a name and a symbol.--Six million convicts.--The revenge of militarism.--Bolshevism paramount to supercapitalism." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 848.01465, - "b14264413" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17174971", - "_score": 848.01465, - "_source": { - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Putnam" - ], - "description": [ - "Thomas always pretended his favorite menu was creamed angleworms on toast. Then one day when he also pretended he was sick enough to miss school, his family thought he deserved whatever he wanted for lunch." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "dateEndString": [ - "1942" - ], - "title": [ - "Angleworms on toast." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1969" - ], - "creatorLiteral": [ - "Kantor, MacKinlay, 1904-1977." - ], - "idLccn": [ - "68024523" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Wiese, Kurt, 1887-" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "17174971" - }, - { - "type": "bf:Lccn", - "value": "68024523" - } - ], - "dateEndYear": [ - 1942 - ], - "updatedAt": 1711655200426, - "publicationStatement": [ - "New York : Putnam, [1969, c1942]" - ], - "identifier": [ - "urn:bnum:17174971", - "urn:lccn:68024523" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Angleworms on toast. Illustrated by Kurt Wiese." - ], - "uri": "b17174971", - "lccClassification": [ - "PZ7.K128 An5" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 848.01465, - "b17174971" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17174971", - "_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": [ - "33333059683314" - ], - "identifier": [ - "urn:shelfmark:J FIC K", - "urn:barcode:33333059683314" - ], - "identifierV2": [ - { - "value": "J FIC K", - "type": "bf:ShelfMark" - }, - { - "value": "33333059683314", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "J FIC K" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J FIC K" - ], - "shelfMark_sort": "aJ FIC K", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i22474239" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17828730", - "_score": 848.01465, - "_source": { - "extent": [ - "5 p. l., 9-150 p. incl. front., illus, plates." - ], - "note": [ - { - "noteType": "Note", - "label": "The frontpiece and illustrated t.-p. form a double plate; illustrated lining-papers in color.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Coward McCann, inc." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1940 - ], - "title": [ - "A toast to the King" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1940" - ], - "creatorLiteral": [ - "Coatsworth, Elizabeth Jane, 1893-" - ], - "idLccn": [ - "40035992" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Orr, Forrest W." - ], - "dateStartYear": [ - 1940 - ], - "idOclc": [ - "1601210" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "17828730" - }, - { - "type": "nypl:Oclc", - "value": "1601210" - }, - { - "type": "bf:Lccn", - "value": "40035992" - } - ], - "updatedAt": 1711452149914, - "publicationStatement": [ - "New York : Coward McCann, inc., [c1940]" - ], - "identifier": [ - "urn:bnum:17828730", - "urn:oclc:1601210", - "urn:lccn:40035992" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1940" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast to the King, by Elizabeth Coatsworth, with illustrations by Forrest Orr." - ], - "uri": "b17828730", - "lccClassification": [ - "PZ3.C63193 To" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 848.01465, - "b17828730" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17828730", - "_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": [ - "33333081041739" - ], - "identifier": [ - "urn:shelfmark:J FIC C", - "urn:barcode:33333081041739" - ], - "identifierV2": [ - { - "value": "J FIC C", - "type": "bf:ShelfMark" - }, - { - "value": "33333081041739", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "J FIC C" - ], - "recapCustomerCode": [ - "NH" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J FIC C" - ], - "shelfMark_sort": "aJ FIC C", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i21666733" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22244189", - "_score": 848.01465, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Language", - "label": "Sung in French.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "ABC Classics" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2018 - ], - "title": [ - "A toast to Melba" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist." - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1176356131" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "22244189" - }, - { - "type": "nypl:Oclc", - "value": "1176356131" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850205" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850206" - }, - { - "type": "bf:Identifier", - "value": "00028948163625 ABC Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1176356131" - } - ], - "updatedAt": 1711348526951, - "publicationStatement": [ - "[Place of publication not identified] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:22244189", - "urn:oclc:1176356131", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:00028948163625 ABC Classics", - "urn:identifier:(OCoLC)1176356131" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." - ], - "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22244189", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028948163625" - } - ], - "placeOfPublication": [ - "[Place of publication not identified]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." - ] - }, - "sort": [ - 848.01465, - "b22244189" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22839633", - "_score": 848.01465, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Language", - "label": "Sung in French.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "ABC Classics" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2018 - ], - "title": [ - "A toast to Melba" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist." - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1336891241" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "22839633" - }, - { - "type": "nypl:Oclc", - "value": "1336891241" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850205" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850206" - }, - { - "type": "bf:Identifier", - "value": "028948163632 ABC Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1336891241" - } - ], - "updatedAt": 1711207066836, - "publicationStatement": [ - "[Australia] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:22839633", - "urn:oclc:1336891241", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:028948163632 ABC Classics", - "urn:identifier:(OCoLC)1336891241" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." - ], - "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22839633", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" - } - ], - "placeOfPublication": [ - "[Australia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." - ] - }, - "sort": [ - 848.01465, - "b22839633" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_score": 847.3456, - "_source": { - "extent": [ - "1 score (3 unnumbered pages, 12 pages) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes by Jack Gottlieb.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Recorded by the Israel Philharmonic, the composer conducting, on Deutsche Grammophon 2532 052.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Also available in a version for symphonic band.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "publisherLiteral": [ - "Jalni Publications ; Boosey & Hawkes, sole selling agent" - ], - "dateEndString": [ - "1980" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A musical toast" - ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Hawkes pocket scores" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1808514" - }, - { - "type": "nypl:Oclc", - "value": "ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "H.P.S. 976 Boosey & Hawkes" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "(NNC)1808514" - }, - { - "type": "bf:Identifier", - "value": "1808514" - } - ], - "idOclc": [ - "ocm11578466" - ], - "uniformTitle": [ - "Musical toast", - "Hawkes pocket scores." - ], - "dateEndYear": [ - 1980 - ], - "holdings": [], - "updatedAt": 1664590433971, - "publicationStatement": [ - "[Place of publication not identified] : Jalni Publications ; New York, N.Y. : Boosey & Hawkes, sole selling agent, 1984, ©1980." - ], - "identifier": [ - "urn:bnum:1808514", - "urn:oclc:ocm11578466", - "urn:undefined:H.P.S. 976 Boosey & Hawkes", - "urn:undefined:(OCoLC)ocm11578466", - "urn:undefined:(NNC)1808514", - "urn:undefined:1808514" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "cb1808514", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Place of publication not identified] : New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Musical toast" - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 847.3456, - "cb1808514" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci2278358", - "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": [ - "61 B458 M9" - ], - "identifierV2": [ - { - "value": "61 B458 M9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR61509485" - } - ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], - "idBarcode": [ - "MR61509485" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a61 B458 M000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "pb9915897303506421", - "_score": 847.3456, - "_source": { - "extent": [ - "viii pages, 1 unnumbered leaf, 310 pages ;" - ], - "note": [ - { - "noteType": "Note", - "label": "By Adelaide Frances Oke Manning and Cyril Henry Coles.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Hambledon, Tommy (Fictitious character)", - "Hambledon, Tommy (Fictitious character) -- Fiction", - "Intelligence officers", - "Intelligence officers -- Great Britain", - "Intelligence officers -- Great Britain -- Fiction", - "Intelligence service", - "Intelligence service -- Great Britain", - "Intelligence service -- Great Britain -- Fiction", - "Espionage, British", - "Espionage, British -- Germany", - "Espionage, British -- Germany -- Fiction", - "Spy stories", - "Germany", - "Great Britain" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Literary Guild of America, Inc." - ], - "description": [ - "Story of a man who loses his memory after the war and wanders through Germany in search of his earlier life." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1941 - ], - "dateEndString": [ - "1941" - ], - "title": [ - "A toast to tomorrow" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1941" - ], - "creatorLiteral": [ - "Coles, Manning" - ], - "idLccn": [ - "41006171" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1941 - ], - "idOclc": [ - "ocm00168051", - "168051", - "SCSB-14583518" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "9915897303506421" - }, - { - "type": "nypl:Oclc", - "value": "ocm00168051" - }, - { - "type": "nypl:Oclc", - "value": "168051" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-14583518" - }, - { - "type": "bf:Lccn", - "value": "41006171" - }, - { - "type": "bf:Identifier", - "value": "(NjP)1589730-princetondb" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm00168051" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)168051" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)26244815" - }, - { - "type": "bf:Identifier", - "value": "(NjP)Voyager1589730" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)26244815 (OCoLC)1049800956 (OCoLC)1057109875" - } - ], - "dateEndYear": [ - 1941 - ], - "updatedAt": 1709129173756, - "publicationStatement": [ - "New York : Literary Guild of America, Inc., [1941]", - "©1941" - ], - "genreForm": [ - "Fiction.", - "Spy stories." - ], - "identifier": [ - "urn:bnum:9915897303506421", - "urn:oclc:ocm00168051", - "urn:oclc:168051", - "urn:oclc:SCSB-14583518", - "urn:lccn:41006171", - "urn:identifier:(NjP)1589730-princetondb", - "urn:identifier:(OCoLC)ocm00168051", - "urn:identifier:(OCoLC)168051", - "urn:identifier:(OCoLC)26244815", - "urn:identifier:(NjP)Voyager1589730", - "urn:identifier:(OCoLC)26244815 (OCoLC)1049800956 (OCoLC)1057109875" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1941" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hambledon, Tommy (Fictitious character) -- Fiction.", - "Intelligence officers -- Great Britain -- Fiction.", - "Intelligence service -- Great Britain -- Fiction.", - "Espionage, British -- Germany -- Fiction.", - "Spy stories.", - "Espionage, British.", - "Intelligence officers.", - "Intelligence service.", - "Germany", - "Great Britain" - ], - "titleDisplay": [ - "A toast to tomorrow / Manning Coles." - ], - "uri": "pb9915897303506421", - "lccClassification": [ - "PR6005.O334 T63 1941", - "PZ3.C67965 To2" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm" - ] - }, - "sort": [ - 847.3456, - "pb9915897303506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "pb9915897303506421", - "_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:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101118354297" - ], - "identifier": [ - "urn:shelfmark:PR6005.O334 T637 1941", - "urn:barcode:32101118354297" - ], - "identifierV2": [ - { - "value": "PR6005.O334 T637 1941", - "type": "bf:ShelfMark" - }, - { - "value": "32101118354297", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "PR6005.O334 T637 1941" - ], - "recapCustomerCode": [ - "PA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "PR6005.O334 T637 1941" - ], - "shelfMark_sort": "aPR6005.O334 T637 001941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23735371940006421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_score": 846.5295, - "_source": { - "extent": [ - "xxi, 273 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Originally published ... by Charles Scribner's Sons ... in 1940\"--T.p. verso.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vintage Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1990 - ], - "dateEndString": [ - "1940" - ], - "title": [ - "Angels on toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 90-6303" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1990" - ], - "creatorLiteral": [ - "Powell, Dawn." - ], - "idLccn": [ - "89040281" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1990 - ], - "idOclc": [ - "70304237", - "NYPG90-B53168" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 90-6303" - }, - { - "type": "nypl:Bnumber", - "value": "11294632" - }, - { - "type": "bf:Isbn", - "value": "0679726861" - }, - { - "type": "nypl:Oclc", - "value": "70304237" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B53168" - }, - { - "type": "bf:Lccn", - "value": "89040281" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1302350" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)70304237" - } - ], - "dateEndYear": [ - 1940 - ], - "updatedAt": 1711585322970, - "publicationStatement": [ - "New York : Vintage Books, 1990, c1940." - ], - "idIsbn": [ - "0679726861" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:bnum:11294632", - "urn:isbn:0679726861", - "urn:oclc:70304237", - "urn:oclc:NYPG90-B53168", - "urn:lccn:89040281", - "urn:identifier:(WaOLN)nyp1302350", - "urn:identifier:(OCoLC)70304237" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Angels on toast / Dawn Powell ; with an introduction by Gore Vidal." - ], - "uri": "b11294632", - "lccClassification": [ - "PS3531.O936 A83 1989" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "0679726861" - ] - }, - "sort": [ - 846.5295, - "b11294632" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433040606604" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" - ], - "identifierV2": [ - { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" - }, - { - "value": "33433040606604", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFD 90-6303" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 90-6303" - ], - "shelfMark_sort": "aJFD 90-006303", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13057076", - "_score": 846.5295, - "_source": { - "extent": [ - "112 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Henry Altemus company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1902 - ], - "title": [ - "A book of toasts" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NAN (Antrim, M. T. Book of toasts)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1902" - ], - "creatorLiteral": [ - "Antrim, Minna Thomas, 1861-" - ], - "idLccn": [ - "02023740" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1902 - ], - "idOclc": [ - "2739708" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NAN (Antrim, M. T. Book of toasts)" - }, - { - "type": "nypl:Bnumber", - "value": "13057076" - }, - { - "type": "nypl:Oclc", - "value": "2739708" - }, - { - "type": "bf:Lccn", - "value": "02023740" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3035679" - } - ], - "updatedAt": 1711218135225, - "publicationStatement": [ - "Philadelphia, Henry Altemus company [1902]" - ], - "identifier": [ - "urn:shelfmark:NAN (Antrim, M. T. Book of toasts)", - "urn:bnum:13057076", - "urn:oclc:2739708", - "urn:lccn:02023740", - "urn:identifier:(WaOLN)nyp3035679" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1902" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "A book of toasts, by Minna Thomas Antrim (Titian)" - ], - "uri": "b13057076", - "lccClassification": [ - "PN6341 .A6" - ], - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - 846.5295, - "b13057076" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13057076", - "_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:65", - "label": "book, good condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "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": [ - "33433102845660" - ], - "identifier": [ - "urn:shelfmark:NAN (Antrim, M. T. Book of toasts)", - "urn:barcode:33433102845660" - ], - "identifierV2": [ - { - "value": "NAN (Antrim, M. T. Book of toasts)", - "type": "bf:ShelfMark" - }, - { - "value": "33433102845660", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NAN (Antrim, M. T. Book of toasts)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NAN (Antrim, M. T. Book of toasts)" - ], - "shelfMark_sort": "aNAN (Antrim, M. T. Book of toasts)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16220255" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13060795", - "_score": 846.5295, - "_source": { - "extent": [ - "29 p. col. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Grades 1-3.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Coward-McCann, inc." - ], - "description": [ - "Thomas always pretended his favorite menu was creamed angleworms on toast. Then one day when he also pretended he was sick enough to miss school, his family thought he deserved whatever he wanted for lunch." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1942 - ], - "title": [ - "Angleworms on toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NAS (Kantor, M. Angleworms on toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1942" - ], - "creatorLiteral": [ - "Kantor, MacKinlay, 1904-1977." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Wiese, Kurt, 1887-" - ], - "dateStartYear": [ - 1942 - ], - "idOclc": [ - "26982453" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NAS (Kantor, M. Angleworms on toast)" - }, - { - "type": "nypl:Bnumber", - "value": "13060795" - }, - { - "type": "nypl:Oclc", - "value": "26982453" - } - ], - "updatedAt": 1711229275407, - "publicationStatement": [ - "New York, Coward-McCann, inc., c1942." - ], - "identifier": [ - "urn:shelfmark:NAS (Kantor, M. Angleworms on toast)", - "urn:bnum:13060795", - "urn:oclc:26982453" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1942" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Angleworms on toast, by MacKinlay Kantor. Illustrated by Kurt Wiese." - ], - "uri": "b13060795", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 x 25 cm." - ] - }, - "sort": [ - 846.5295, - "b13060795" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13060795", - "_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:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "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": [ - "33433084609134" - ], - "identifier": [ - "urn:shelfmark:NAS (Kantor, M. Angleworms on toast)", - "urn:barcode:33433084609134" - ], - "identifierV2": [ - { - "value": "NAS (Kantor, M. Angleworms on toast)", - "type": "bf:ShelfMark" - }, - { - "value": "33433084609134", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NAS (Kantor, M. Angleworms on toast)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NAS (Kantor, M. Angleworms on toast)" - ], - "shelfMark_sort": "aNAS (Kantor, M. Angleworms on toast)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16222433" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13072770", - "_score": 846.5295, - "_source": { - "extent": [ - "96 p." - ], - "note": [ - { - "noteType": "Note", - "label": "p. 95-96, advertising matter.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Forbes & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1917 - ], - "title": [ - "Patriotic toasts" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NBI (Brooks, F. E. Patriotic toasts)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1917" - ], - "creatorLiteral": [ - "Brooks, Fred Emerson, 1850-1923." - ], - "idLccn": [ - "17025119" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1917 - ], - "idOclc": [ - "2534861" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NBI (Brooks, F. E. Patriotic toasts)" - }, - { - "type": "nypl:Bnumber", - "value": "13072770" - }, - { - "type": "nypl:Oclc", - "value": "2534861" - }, - { - "type": "bf:Lccn", - "value": "17025119" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3051341" - } - ], - "updatedAt": 1710985688066, - "publicationStatement": [ - "Chicago, Forbes & company, 1917." - ], - "identifier": [ - "urn:shelfmark:NBI (Brooks, F. E. Patriotic toasts)", - "urn:bnum:13072770", - "urn:oclc:2534861", - "urn:lccn:17025119", - "urn:identifier:(WaOLN)nyp3051341" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1917" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Patriotic toasts, by Fred Emerson Brooks." - ], - "uri": "b13072770", - "lccClassification": [ - "PS3503.R721 P3 1917" - ], - "electronicResources": [ - { - "label": "NYPL Digital Collections", - "url": "https://digitalcollections.nypl.org/items/03bcafd0-85fa-0131-073e-58d385a7bbd0" - } - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "15 1/2 cm." - ] - }, - "sort": [ - 846.5295, - "b13072770" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13072770", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433078661935" - ], - "identifier": [ - "urn:shelfmark:NBI (Brooks, F. E. Patriotic toasts)", - "urn:barcode:33433078661935" - ], - "identifierV2": [ - { - "value": "NBI (Brooks, F. E. Patriotic toasts)", - "type": "bf:ShelfMark" - }, - { - "value": "33433078661935", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "NBI (Brooks, F. E. Patriotic toasts)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Brooks, F. E. Patriotic toasts)" - ], - "shelfMark_sort": "aNBI (Brooks, F. E. Patriotic toasts)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16229491" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13147602", - "_score": 846.5295, - "_source": { - "extent": [ - "310 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"First edition.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Doubleday" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1941 - ], - "title": [ - "A toast to tomorrow." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NCW (Coles, M. Toast to tomorrow)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1941" - ], - "creatorLiteral": [ - "Coles, Manning." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1941 - ], - "idOclc": [ - "48802346", - "1370631" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NCW (Coles, M. Toast to tomorrow)" - }, - { - "type": "nypl:Bnumber", - "value": "13147602" - }, - { - "type": "nypl:Oclc", - "value": "48802346" - }, - { - "type": "nypl:Oclc", - "value": "1370631" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3125942" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)48802346" - } - ], - "updatedAt": 1711302779644, - "publicationStatement": [ - "Garden City, N.Y. Doubleday [1941]" - ], - "identifier": [ - "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", - "urn:bnum:13147602", - "urn:oclc:48802346", - "urn:oclc:1370631", - "urn:identifier:(WaOLN)nyp3125942", - "urn:identifier:(OCoLC)48802346" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1941" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A toast to tomorrow." - ], - "uri": "b13147602", - "placeOfPublication": [ - "Garden City, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21cm." - ] - }, - "sort": [ - 846.5295, - "b13147602" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13147602", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433114070448" - ], - "identifier": [ - "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", - "urn:barcode:33433114070448" - ], - "identifierV2": [ - { - "value": "NCW (Coles, M. Toast to tomorrow)", - "type": "bf:ShelfMark" - }, - { - "value": "33433114070448", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NCW (Coles, M. Toast to tomorrow)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NCW (Coles, M. Toast to tomorrow)" - ], - "shelfMark_sort": "aNCW (Coles, M. Toast to tomorrow)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16287071" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15876151", - "_score": 846.5295, - "_source": { - "extent": [ - "1 sound disc : analog, 33 1/3 rpm ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Program notes by \"Jonah\" Jones on container.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded Oct. 8, 1954 and May 1955 in Paris.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- France", - "Jazz -- France -- 1951-1960" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Angel Records" - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 195 - ], - "dateEndString": [ - "1954" - ], - "title": [ - "French toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZO 356" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "195" - ], - "creatorLiteral": [ - "Persiany, André." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Jazz series ; vol. 1, no. 10" - ], - "contributorLiteral": [ - "Chevallier, Christian.", - "Lafitte, Guy." - ], - "dateStartYear": [ - 195 - ], - "idOclc": [ - "53378691" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZO 356" - }, - { - "type": "nypl:Bnumber", - "value": "15876151" - }, - { - "type": "nypl:Oclc", - "value": "53378691" - }, - { - "type": "bf:Identifier", - "value": "ANG-60009 Angel Records" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)A100000016" - } - ], - "uniformTitle": [ - "Jazz series (Angel Records) ; vol. 1, no. 10." - ], - "dateEndYear": [ - 1954 - ], - "updatedAt": 1712867110813, - "publicationStatement": [ - "New York, [N.Y.] : Angel Records, [195-]" - ], - "identifier": [ - "urn:shelfmark:*LZO 356", - "urn:bnum:15876151", - "urn:oclc:53378691", - "urn:identifier:ANG-60009 Angel Records", - "urn:identifier:(WaOLN)A100000016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "195" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- France -- 1951-1960." - ], - "titleDisplay": [ - "French toast [sound recording]." - ], - "uri": "b15876151", - "placeOfPublication": [ - "New York, [N.Y.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Nice joke -- Fiction -- Quartet mind -- Saxology -- Little story -- Halbe fünf -- Christmas song -- Two cats and a piece of lung." - ], - "dimensions": [ - "10 in." - ] - }, - "sort": [ - 846.5295, - "b15876151" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15876151", - "_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:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433035294234" - ], - "identifier": [ - "urn:shelfmark:*LZO 356 [Disc]", - "urn:barcode:33433035294234" - ], - "identifierV2": [ - { - "value": "*LZO 356 [Disc]", - "type": "bf:ShelfMark" - }, - { - "value": "33433035294234", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LZO 356 [Disc]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LZO 356 [Disc]" - ], - "shelfMark_sort": "a*LZO 356 [Disc]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14660187", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Persiany%2C+Andr%C3%A9.&CallNumber=*LZO+356+%5BDisc%5D&Date=195&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15876151&ItemISxN=i146601877&ItemNumber=33433035294234&ItemPlace=New+York%2C+%5BN.Y.%5D&ItemPublisher=Angel+Records%2C+%5B195-%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b158761510&Site=LPAMRAMI&Title=French+toast" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15877453", - "_score": 846.5295, - "_source": { - "extent": [ - "1 sound disc : analog, 33 1/3 rpm, stereo. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Alshire: ST-5074 (on container: S-5074).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Selections from musicals arranged for orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes on container.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Musicals", - "Musicals -- Excerpts, Arranged", - "Orchestral music, Arranged" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Alshire" - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "title": [ - "A toast to Broadway" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZR 9189" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1966" - ], - "creatorLiteral": [ - "101 Strings. prf" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "idOclc": [ - "13323483" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZR 9189" - }, - { - "type": "nypl:Bnumber", - "value": "15877453" - }, - { - "type": "nypl:Oclc", - "value": "13323483" - }, - { - "type": "bf:Identifier", - "value": "ST-5074 Alshire" - }, - { - "type": "bf:Identifier", - "value": "S-5074 Alshire" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)A310000041" - } - ], - "updatedAt": 1712867127337, - "publicationStatement": [ - "Burbank, Calif. : Alshire, [1966?]" - ], - "identifier": [ - "urn:shelfmark:*LZR 9189", - "urn:bnum:15877453", - "urn:oclc:13323483", - "urn:identifier:ST-5074 Alshire", - "urn:identifier:S-5074 Alshire", - "urn:identifier:(WaOLN)A310000041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Musicals -- Excerpts, Arranged.", - "Orchestral music, Arranged." - ], - "titleDisplay": [ - "A toast to Broadway [sound recording] / 101 Strings." - ], - "uri": "b15877453", - "placeOfPublication": [ - "Burbank, Calif." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "8:40 curtain.", - "Small world.", - "Till there was you.", - "Just in time.", - "Promise me a rose.", - "Til tomorrow.", - "Hey there.", - "Climb every mountain.", - "I enjoy being a girl.", - "Tonight.", - "Aisle talk." - ], - "tableOfContents": [ - "8:40 curtain -- Small world -- Till there was you -- Just in time -- Promise me a rose -- Til tomorrow -- Hey there -- Climb every mountan -- I enjoy being a girl -- Tonight -- Aisle talk." - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 846.5295, - "b15877453" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15877453", - "_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:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433035395361" - ], - "identifier": [ - "urn:shelfmark:*LZR 9189 [Disc]", - "urn:barcode:33433035395361" - ], - "identifierV2": [ - { - "value": "*LZR 9189 [Disc]", - "type": "bf:ShelfMark" - }, - { - "value": "33433035395361", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LZR 9189 [Disc]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LZR 9189 [Disc]" - ], - "shelfMark_sort": "a*LZR 9189 [Disc]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14661544", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=101+Strings.+prf&CallNumber=*LZR+9189+%5BDisc%5D&Date=1966&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15877453&ItemISxN=i14661544x&ItemNumber=33433035395361&ItemPlace=Burbank%2C+Calif.&ItemPublisher=Alshire%2C+%5B1966%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b15877453x&Site=LPAMRAMI&Title=A+toast+to+Broadway" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-8629997f50513a08337906aa8bf66d1e.json b/test/fixtures/query-8629997f50513a08337906aa8bf66d1e.json deleted file mode 100644 index 1f75daf6..00000000 --- a/test/fixtures/query-8629997f50513a08337906aa8bf66d1e.json +++ /dev/null @@ -1,14217 +0,0 @@ -{ - "body": { - "took": 1241, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 10000, - "relation": "gte" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565153", - "_score": 884.79584, - "_source": { - "extent": [ - "430 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on spine: Ladies companion to the flower garden.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Ladies' companion to the flower-garden (p. [97]-340), has half- title page.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Monthly calendar of work to be done in the flower-garden: p. [425]-430.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Flower gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "John Wiley" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1854 - ], - "dateEndString": [ - "1853" - ], - "title": [ - "Gardening for ladies : and, Companion to the flower-garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1854" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Downing, A. J. (Andrew Jackson), 1815-1852." - ], - "dateStartYear": [ - 1854 - ], - "idOclc": [ - "31237346" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)" - }, - { - "type": "nypl:Bnumber", - "value": "13565153" - }, - { - "type": "nypl:Oclc", - "value": "31237346" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539974" - } - ], - "dateEndYear": [ - 1853 - ], - "updatedAt": 1711584773313, - "publicationStatement": [ - "New York : John Wiley, 1854, c1853." - ], - "identifier": [ - "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1854)", - "urn:bnum:13565153", - "urn:oclc:31237346", - "urn:identifier:(WaOLN)nyp3539974" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1854" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Flower gardening." - ], - "titleDisplay": [ - "Gardening for ladies : and, Companion to the flower-garden / by Mrs. Loudon." - ], - "uri": "b13565153", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006564110" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Companion to the flower-garden.", - "Ladies' companion to the flower garden." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 884.79584, - "b13565153" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565153", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006564110" - ], - "identifier": [ - "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1854)", - "urn:barcode:33433006564110" - ], - "identifierV2": [ - { - "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006564110", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1854)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708577" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565154", - "_score": 36.075512, - "_source": { - "extent": [ - "xii, [13]-430 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "On spine: Ladies companion to the flower garden.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Flowers", - "Flowers -- Dictionaries" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wiley & Halstead" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1857 - ], - "title": [ - "Gardening for ladies : and companion to the flower-garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1857)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1857" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1857 - ], - "idOclc": [ - "19552173" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Loudon, J. W. Gardening for ladies. 1857)" - }, - { - "type": "nypl:Bnumber", - "value": "13565154" - }, - { - "type": "nypl:Oclc", - "value": "19552173" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539975" - } - ], - "updatedAt": 1711458023118, - "publicationStatement": [ - "New York : Wiley & Halstead, 1857." - ], - "identifier": [ - "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1857)", - "urn:bnum:13565154", - "urn:oclc:19552173", - "urn:identifier:(WaOLN)nyp3539975" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1857" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Flowers -- Dictionaries." - ], - "titleDisplay": [ - "Gardening for ladies : and companion to the flower-garden / by Mrs. Loudon." - ], - "uri": "b13565154", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006564128" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Ladies companion to the flower garden." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 36.075512, - "b13565154" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565154", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006564128" - ], - "identifier": [ - "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1857)", - "urn:barcode:33433006564128" - ], - "identifierV2": [ - { - "value": "VQG (Loudon, J. W. Gardening for ladies. 1857)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006564128", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Loudon, J. W. Gardening for ladies. 1857)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1857)" - ], - "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1857)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708578" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13639365", - "_score": 28.415071, - "_source": { - "extent": [ - "1 p. ℓ., [v]-x, 270 p. 58 col. pl. (incl. front.)" - ], - "note": [ - { - "noteType": "Note", - "label": "Plates colored by hand.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Flowers", - "Floriculture", - "Bulbs (Plants)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W.S. Orr & Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1849 - ], - "title": [ - "The ladies' flower-garden of ornamental bulbous plants." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1849" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "idLccn": [ - "11032131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1849 - ], - "idOclc": [ - "22185506" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQH+ (Loudon, J. W. Ladies' flower-garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13639365" - }, - { - "type": "nypl:Oclc", - "value": "22185506" - }, - { - "type": "bf:Lccn", - "value": "11032131" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3612324" - } - ], - "updatedAt": 1710979918308, - "publicationStatement": [ - "London, W.S. Orr & Co. [1849]" - ], - "identifier": [ - "urn:shelfmark:VQH+ (Loudon, J. W. Ladies' flower-garden)", - "urn:bnum:13639365", - "urn:oclc:22185506", - "urn:lccn:11032131", - "urn:identifier:(WaOLN)nyp3612324" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1849" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Flowers.", - "Floriculture.", - "Bulbs (Plants)" - ], - "titleDisplay": [ - "The ladies' flower-garden of ornamental bulbous plants. By Mrs. Loudon." - ], - "uri": "b13639365", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 28.415071, - "b13639365" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13639365", - "_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": [ - "33433007704541" - ], - "identifier": [ - "urn:shelfmark:VQH+ (Loudon, J. W. Ladies' flower-garden)", - "urn:barcode:33433007704541" - ], - "identifierV2": [ - { - "value": "VQH+ (Loudon, J. W. Ladies' flower-garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433007704541", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden)" - ], - "shelfMark_sort": "aVQH+ (Loudon, J. W. Ladies' flower-garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10763416" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13639361", - "_score": 24.665884, - "_source": { - "extent": [ - "260 p., 47 leaves of plates : col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W.S. Orr" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1849 - ], - "title": [ - "The ladies' flower-garden of ornamental annuals" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1849" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1849 - ], - "idOclc": [ - "8407523" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)" - }, - { - "type": "nypl:Bnumber", - "value": "13639361" - }, - { - "type": "nypl:Oclc", - "value": "8407523" - } - ], - "updatedAt": 1711408234088, - "publicationStatement": [ - "London : W.S. Orr, 1849." - ], - "identifier": [ - "urn:shelfmark:VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)", - "urn:bnum:13639361", - "urn:oclc:8407523" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1849" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The ladies' flower-garden of ornamental annuals / By Mrs. Loudon." - ], - "uri": "b13639361", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - 24.665884, - "b13639361" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13639361", - "_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": [ - "33433007704533" - ], - "identifier": [ - "urn:shelfmark:VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)", - "urn:barcode:33433007704533" - ], - "identifierV2": [ - { - "value": "VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)", - "type": "bf:ShelfMark" - }, - { - "value": "33433007704533", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)" - ], - "shelfMark_sort": "aVQH+ (Loudon, J. W. Ladies' flower-garden of ornamental annuals)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10763412" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565218", - "_score": 22.49826, - "_source": { - "extent": [ - "132 p. : ill., plates (part col.) ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Gardening -- New Zealand", - "Gardening -- Australia" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A.H. & A.W. Reed" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Garden treasures : choice flowering plants for Australia and New Zealand" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Matthews, J. W. Garden treasures)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Matthews, James William, 1897-" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "31073710" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Matthews, J. W. Garden treasures)" - }, - { - "type": "nypl:Bnumber", - "value": "13565218" - }, - { - "type": "nypl:Oclc", - "value": "31073710" - } - ], - "updatedAt": 1711575937738, - "publicationStatement": [ - "Wellington [N.Z.] : A.H. & A.W. Reed, [1947]" - ], - "identifier": [ - "urn:shelfmark:VQG (Matthews, J. W. Garden treasures)", - "urn:bnum:13565218", - "urn:oclc:31073710" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening -- New Zealand.", - "Gardening -- Australia." - ], - "titleDisplay": [ - "Garden treasures : choice flowering plants for Australia and New Zealand / by J.W. Matthews." - ], - "uri": "b13565218", - "placeOfPublication": [ - "Wellington [N.Z.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 22.49826, - "b13565218" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565218", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666345" - ], - "identifier": [ - "urn:shelfmark:VQG (Matthews, J. W. Garden treasures)", - "urn:barcode:33433006666345" - ], - "identifierV2": [ - { - "value": "VQG (Matthews, J. W. Garden treasures)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666345", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Matthews, J. W. Garden treasures)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Matthews, J. W. Garden treasures)" - ], - "shelfMark_sort": "aVQG (Matthews, J. W. Garden treasures)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708660" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13562223", - "_score": 22.215607, - "_source": { - "extent": [ - "xx, 372, 32 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes 32 p. of publisher's advertisements.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Gardening -- England", - "Floriculture", - "Horticulture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Longman, Brown, Green, and Longmans" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1847 - ], - "title": [ - "The amateur gardener's calendar : being a monthly guide as.to what should be avoided ... plain rules how to do what is required ... and insects then most injurious to gardens" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQD (Loudon, J. W. Amateur gardener's calendar)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1847" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1847 - ], - "idOclc": [ - "19579447" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQD (Loudon, J. W. Amateur gardener's calendar)" - }, - { - "type": "nypl:Bnumber", - "value": "13562223" - }, - { - "type": "nypl:Oclc", - "value": "19579447" - } - ], - "updatedAt": 1711352566179, - "publicationStatement": [ - "London : Longman, Brown, Green, and Longmans, 1847." - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. W. Amateur gardener's calendar)", - "urn:bnum:13562223", - "urn:oclc:19579447" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1847" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Gardening -- England.", - "Floriculture.", - "Horticulture." - ], - "titleDisplay": [ - "The amateur gardener's calendar : being a monthly guide as.to what should be avoided ... plain rules how to do what is required ... and insects then most injurious to gardens / by Mrs. Loudon." - ], - "uri": "b13562223", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006558369" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 22.215607, - "b13562223" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13562223", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006558369" - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. W. Amateur gardener's calendar)", - "urn:barcode:33433006558369" - ], - "identifierV2": [ - { - "value": "VQD (Loudon, J. W. Amateur gardener's calendar)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006558369", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQD (Loudon, J. W. Amateur gardener's calendar)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQD (Loudon, J. W. Amateur gardener's calendar)" - ], - "shelfMark_sort": "aVQD (Loudon, J. W. Amateur gardener's calendar)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10705499" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565065", - "_score": 21.096102, - "_source": { - "extent": [ - "180 p. incl. plan. 3 col. pl." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Flowers" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Moore & Payne" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1835 - ], - "title": [ - "The flower garden, or monthly calendar of practical directions for the culture of flowers." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Hickey, W. Flower garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1835" - ], - "creatorLiteral": [ - "Doyle, Martin, 1787?-1875." - ], - "idLccn": [ - "11033930" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gale, Leonard D. (Leonard Dunnell), 1800-1883." - ], - "dateStartYear": [ - 1835 - ], - "idOclc": [ - "4651981" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Hickey, W. Flower garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13565065" - }, - { - "type": "nypl:Oclc", - "value": "4651981" - }, - { - "type": "bf:Lccn", - "value": "11033930" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539886" - } - ], - "updatedAt": 1711609270714, - "publicationStatement": [ - "New York, Moore & Payne, 1835." - ], - "identifier": [ - "urn:shelfmark:VQG (Hickey, W. Flower garden)", - "urn:bnum:13565065", - "urn:oclc:4651981", - "urn:lccn:11033930", - "urn:identifier:(WaOLN)nyp3539886" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1835" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Flowers." - ], - "titleDisplay": [ - "The flower garden, or monthly calendar of practical directions for the culture of flowers. By Martin Doyle [pseud.]" - ], - "uri": "b13565065", - "lccClassification": [ - "SB405 .D75" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006563666" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 21.096102, - "b13565065" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565065", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006563666" - ], - "identifier": [ - "urn:shelfmark:VQG (Hickey, W. Flower garden)", - "urn:barcode:33433006563666" - ], - "identifierV2": [ - { - "value": "VQG (Hickey, W. Flower garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006563666", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Hickey, W. Flower garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Hickey, W. Flower garden)" - ], - "shelfMark_sort": "aVQG (Hickey, W. Flower garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708496" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564103", - "_score": 20.84132, - "_source": { - "extent": [ - "108 p. 17 cm." - ], - "note": [ - { - "noteType": "Note", - "label": "Reprinted from the ̀Quarterly review'.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1852 - ], - "dateEndString": [ - "uuuu" - ], - "title": [ - "The flower garden. With an essay on the poetry of gardening ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Flower garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1852" - ], - "creatorLiteral": [ - "James, Thomas, 1809-1863." - ], - "idLccn": [ - "07010914" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1852 - ], - "idOclc": [ - "30435744" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Flower garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13564103" - }, - { - "type": "nypl:Oclc", - "value": "30435744" - }, - { - "type": "bf:Lccn", - "value": "07010914" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538927" - } - ], - "dateEndYear": [ - null - ], - "updatedAt": 1711455215021, - "publicationStatement": [ - "London, J. Murray, 1852." - ], - "identifier": [ - "urn:shelfmark:VQG (Flower garden)", - "urn:bnum:13564103", - "urn:oclc:30435744", - "urn:lccn:07010914", - "urn:identifier:(WaOLN)nyp3538927" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1852" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The flower garden. With an essay on the poetry of gardening ..." - ], - "uri": "b13564103", - "lccClassification": [ - "SB455 .J3" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 20.84132, - "b13564103" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564103", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562098" - ], - "identifier": [ - "urn:shelfmark:VQG (Flower garden)", - "urn:barcode:33433006562098" - ], - "identifierV2": [ - { - "value": "VQG (Flower garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562098", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Flower garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Flower garden)" - ], - "shelfMark_sort": "aVQG (Flower garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707396" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564113", - "_score": 20.84132, - "_source": { - "extent": [ - "195 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J.M. Dent & company; E.P. Dutton & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1905 - ], - "title": [ - "Garden colour: Spring, by Mrs. C. W. Earle; Summer, by E. V. B.; Autumn, by Rose Kingsley; Winter, by the Hon. Vicary Gibbs; etc., etc." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Garden colour)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1905" - ], - "creatorLiteral": [ - "Waterfield, Margaret H." - ], - "idLccn": [ - "06002117" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Earle, Maria Theresa.", - "Boyle, Eleanor Vere Gordon, 1825-1916.", - "Kingsley, Rose Georgina, 1845-", - "Gibbs, Vicary, 1853-1932.", - "Powell, W. Richmond.", - "Crofton, Helen, Mrs.", - "Mount, George." - ], - "dateStartYear": [ - 1905 - ], - "idOclc": [ - "576930" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Garden colour)" - }, - { - "type": "nypl:Bnumber", - "value": "13564113" - }, - { - "type": "nypl:Oclc", - "value": "576930" - }, - { - "type": "bf:Lccn", - "value": "06002117" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538937" - } - ], - "updatedAt": 1711584773313, - "publicationStatement": [ - "London, J.M. Dent & company; New York, E.P. Dutton & company, 1905." - ], - "identifier": [ - "urn:shelfmark:VQG (Garden colour)", - "urn:bnum:13564113", - "urn:oclc:576930", - "urn:lccn:06002117", - "urn:identifier:(WaOLN)nyp3538937" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1905" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Garden colour: Spring, by Mrs. C. W. Earle; Summer, by E. V. B.; Autumn, by Rose Kingsley; Winter, by the Hon. Vicary Gibbs; etc., etc. Notes & water color sketches by Margaret Waterfield." - ], - "uri": "b13564113", - "lccClassification": [ - "SB454 .W25" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006562148" - } - ], - "placeOfPublication": [ - "London, New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 20.84132, - "b13564113" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564113", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562148" - ], - "identifier": [ - "urn:shelfmark:VQG (Garden colour)", - "urn:barcode:33433006562148" - ], - "identifierV2": [ - { - "value": "VQG (Garden colour)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562148", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Garden colour)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Garden colour)" - ], - "shelfMark_sort": "aVQG (Garden colour)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707405" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564041", - "_score": 20.53849, - "_source": { - "extent": [ - "177 p. incl. mounted col. front., illus. (plans) plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "George H. Doran company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1925 - ], - "title": [ - "Gardens: quick results with flowers and vegetables" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Cosgrave, J. G. Gardens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1925" - ], - "creatorLiteral": [ - "Cosgrave, Jessica Garretson, 1873-" - ], - "idLccn": [ - "25021700" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1925 - ], - "idOclc": [ - "971022" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Cosgrave, J. G. Gardens)" - }, - { - "type": "nypl:Bnumber", - "value": "13564041" - }, - { - "type": "nypl:Oclc", - "value": "971022" - }, - { - "type": "bf:Lccn", - "value": "25021700" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538865" - } - ], - "updatedAt": 1711576161767, - "publicationStatement": [ - "New York, George H. Doran company [c1925]" - ], - "identifier": [ - "urn:shelfmark:VQG (Cosgrave, J. G. Gardens)", - "urn:bnum:13564041", - "urn:oclc:971022", - "urn:lccn:25021700", - "urn:identifier:(WaOLN)nyp3538865" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Gardens: quick results with flowers and vegetables, by Jessica G. Cosgrave." - ], - "uri": "b13564041", - "lccClassification": [ - "SB453 .C75" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 20.53849, - "b13564041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564041", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006561728" - ], - "identifier": [ - "urn:shelfmark:VQG (Cosgrave, J. G. Gardens)", - "urn:barcode:33433006561728" - ], - "identifierV2": [ - { - "value": "VQG (Cosgrave, J. G. Gardens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006561728", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Cosgrave, J. G. Gardens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Cosgrave, J. G. Gardens)" - ], - "shelfMark_sort": "aVQG (Cosgrave, J. G. Gardens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707320" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565067", - "_score": 20.53849, - "_source": { - "extent": [ - "173 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Some chapters reprinted from the Manchester Guardian, and Discovery.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Faber and Faber" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1932 - ], - "title": [ - "The curious gardener" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Hill, J. Curious gardener)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1932" - ], - "creatorLiteral": [ - "Hill, Jason." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Nash, John, 1893-1977." - ], - "dateStartYear": [ - 1932 - ], - "idOclc": [ - "6068532" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Hill, J. Curious gardener)" - }, - { - "type": "nypl:Bnumber", - "value": "13565067" - }, - { - "type": "nypl:Oclc", - "value": "6068532" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539888" - } - ], - "updatedAt": 1711458262946, - "publicationStatement": [ - "London : Faber and Faber, 1932." - ], - "identifier": [ - "urn:shelfmark:VQG (Hill, J. Curious gardener)", - "urn:bnum:13565067", - "urn:oclc:6068532", - "urn:identifier:(WaOLN)nyp3539888" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1932" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The curious gardener / by Jason Hill ; with drawings by John Nash." - ], - "uri": "b13565067", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 20.53849, - "b13565067" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565067", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006563682" - ], - "identifier": [ - "urn:shelfmark:VQG (Hill, J. Curious gardener)", - "urn:barcode:33433006563682" - ], - "identifierV2": [ - { - "value": "VQG (Hill, J. Curious gardener)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006563682", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Hill, J. Curious gardener)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Hill, J. Curious gardener)" - ], - "shelfMark_sort": "aVQG (Hill, J. Curious gardener)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708498" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564011", - "_score": 20.517168, - "_source": { - "extent": [ - "xii, [13]-336 p. front." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Flowers" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. P. Jewett & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1851 - ], - "title": [ - "The flower-garden; or, Breck's book of flowers; in which are described all the various hardy herbaceous perennials, annuals, shrubby plants, and evergreen trees, desirable for ornamental purposes, with directions for their cultivation." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Breck, J. Flower-garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1851" - ], - "creatorLiteral": [ - "Breck, Joseph, 1794-1873." - ], - "idLccn": [ - "11033922" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1851 - ], - "idOclc": [ - "13630027" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Breck, J. Flower-garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13564011" - }, - { - "type": "nypl:Oclc", - "value": "13630027" - }, - { - "type": "bf:Lccn", - "value": "11033922" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538835" - } - ], - "updatedAt": 1711609270714, - "publicationStatement": [ - "Boston, J. P. Jewett & company, 1851" - ], - "identifier": [ - "urn:shelfmark:VQG (Breck, J. Flower-garden)", - "urn:bnum:13564011", - "urn:oclc:13630027", - "urn:lccn:11033922", - "urn:identifier:(WaOLN)nyp3538835" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1851" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Flowers." - ], - "titleDisplay": [ - "The flower-garden; or, Breck's book of flowers; in which are described all the various hardy herbaceous perennials, annuals, shrubby plants, and evergreen trees, desirable for ornamental purposes, with directions for their cultivation. By Joseph Breck." - ], - "uri": "b13564011", - "lccClassification": [ - "SB405 .B82" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust - 1851", - "url": "http://hdl.handle.net/2027/ncs1.ark:/13960/t9c54504x" - } - ], - "placeOfPublication": [ - "Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 20.517168, - "b13564011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564011", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006561496" - ], - "identifier": [ - "urn:shelfmark:VQG (Breck, J. Flower-garden)", - "urn:barcode:33433006561496" - ], - "identifierV2": [ - { - "value": "VQG (Breck, J. Flower-garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006561496", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Breck, J. Flower-garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Breck, J. Flower-garden)" - ], - "shelfMark_sort": "aVQG (Breck, J. Flower-garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14891237", - "_score": 20.418747, - "_source": { - "extent": [ - "xii, 516 p. illus., plans" - ], - "note": [ - { - "noteType": "Note", - "label": "First pub. under title: The suburban gardener.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. S. Orr & co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1850 - ], - "title": [ - "The villa gardener; comprising the choice of a suburban villa residence; the laying out, planting, and culture of the garden and grounds; and the management of the villa farm, including the dairy and poultry-yard ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MSD (Loudon, J. C. Villa gardener)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1850" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "idLccn": [ - "12017099" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "dateStartYear": [ - 1850 - ], - "idOclc": [ - "2287223" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MSD (Loudon, J. C. Villa gardener)" - }, - { - "type": "nypl:Bnumber", - "value": "14891237" - }, - { - "type": "nypl:Oclc", - "value": "2287223" - }, - { - "type": "bf:Lccn", - "value": "12017099" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R200000194" - } - ], - "updatedAt": 1711209366006, - "publicationStatement": [ - "London, W. S. Orr & co., 1850." - ], - "identifier": [ - "urn:shelfmark:MSD (Loudon, J. C. Villa gardener)", - "urn:bnum:14891237", - "urn:oclc:2287223", - "urn:lccn:12017099", - "urn:identifier:(WaOLN)R200000194" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1850" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The villa gardener; comprising the choice of a suburban villa residence; the laying out, planting, and culture of the garden and grounds; and the management of the villa farm, including the dairy and poultry-yard ... By J. C. Loudon." - ], - "uri": "b14891237", - "lccClassification": [ - "SB453 .L89" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066615869" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 20.418747, - "b14891237" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14891237", - "_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": [ - "33433066615869" - ], - "identifier": [ - "urn:shelfmark:MSD (Loudon, J. C. Villa gardener)", - "urn:barcode:33433066615869" - ], - "identifierV2": [ - { - "value": "MSD (Loudon, J. C. Villa gardener)", - "type": "bf:ShelfMark" - }, - { - "value": "33433066615869", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "MSD (Loudon, J. C. Villa gardener)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MSD (Loudon, J. C. Villa gardener)" - ], - "shelfMark_sort": "aMSD (Loudon, J. C. Villa gardener)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17101812" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13560429", - "_score": 20.388748, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xl, 1270 p. : ill." - ], - "note": [ - { - "noteType": "Note", - "label": "Other editions cataloged under SB91.L6, 90 L92E, 90 L92E 1850 and 90 L92E 1878.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [xxiii]-xl.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Longman, Rees, Orme, Brown, Green and Longman" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1834 - ], - "title": [ - "An encyclopedia of gardening : comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape-gardening, including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state; with suggestions for its future progress, in the British Isles" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQC (Loudon, J. C. Encyclopedia of gardening)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1834" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Branston, Allen Robert, 1778-1827." - ], - "dateStartYear": [ - 1834 - ], - "idOclc": [ - "3387943" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQC (Loudon, J. C. Encyclopedia of gardening)" - }, - { - "type": "nypl:Bnumber", - "value": "13560429" - }, - { - "type": "nypl:Oclc", - "value": "3387943" - } - ], - "updatedAt": 1711399671697, - "publicationStatement": [ - "London : Longman, Rees, Orme, Brown, Green and Longman, [pref. 1834]" - ], - "identifier": [ - "urn:shelfmark:VQC (Loudon, J. C. Encyclopedia of gardening)", - "urn:bnum:13560429", - "urn:oclc:3387943" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1834" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "An encyclopedia of gardening : comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape-gardening, including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state; with suggestions for its future progress, in the British Isles / by J. C. Loudon ; illustrated with many hundred engravings on wood, by Branston." - ], - "uri": "b13560429", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 20.388748, - "b13560429" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13560429", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433007589413" - ], - "identifier": [ - "urn:shelfmark:VQC (Loudon, J. C. Encyclopedia of gardening)", - "urn:barcode:33433007589413" - ], - "identifierV2": [ - { - "value": "VQC (Loudon, J. C. Encyclopedia of gardening)", - "type": "bf:ShelfMark" - }, - { - "value": "33433007589413", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQC (Loudon, J. C. Encyclopedia of gardening)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQC (Loudon, J. C. Encyclopedia of gardening)" - ], - "shelfMark_sort": "aVQC (Loudon, J. C. Encyclopedia of gardening)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10703766" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13560429", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433007589405" - ], - "identifier": [ - "urn:shelfmark:VQC (Loudon, J. C. Encyclopedia of gardening)", - "urn:barcode:33433007589405" - ], - "identifierV2": [ - { - "value": "VQC (Loudon, J. C. Encyclopedia of gardening)", - "type": "bf:ShelfMark" - }, - { - "value": "33433007589405", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQC (Loudon, J. C. Encyclopedia of gardening)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQC (Loudon, J. C. Encyclopedia of gardening)" - ], - "shelfMark_sort": "aVQC (Loudon, J. C. Encyclopedia of gardening)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10703765" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15960520", - "_score": 19.55349, - "_source": { - "extent": [ - "16 pts. (xvi, iv, 272 p., 48 leaves of plates) : col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Each part (no.) in the original illustrated buff paper covers, as issued monthly. Title page and other preliminaries in pt. 16. Publisher's advertisements on p. [2-4] of covers of pts. 1-16. Additional publisher's advertisements inserted in pts. 12 and 15. \"Catalogue for 1840\" (on folded sheet) tipped into pt. 13.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Illustrations: 48 prints : lithograph, hand col. ; full-page. Signed: Day & Haghe, Lithographers to the Queen. Two also signed: H. Noel del. & lith.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Nissen, C. Botanische Buchillustration (2. Aufl.)", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Stafleu & Cowan. Taxonomic lit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Flowers", - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "William Smith" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1839 - ], - "dateEndString": [ - "1840" - ], - "title": [ - "The ladies' flower-garden of ornamental annuals" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Arents BIP+ (Loudon, J. Ladies 1839) 04-199" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1839" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Noel, H.", - "Day & Haghe, printer of plates." - ], - "dateStartYear": [ - 1839 - ], - "idOclc": [ - "NYPG04-B3559" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Arents BIP+ (Loudon, J. Ladies 1839) 04-199" - }, - { - "type": "nypl:Bnumber", - "value": "15960520" - }, - { - "type": "nypl:Oclc", - "value": "NYPG04-B3559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)G040000036" - } - ], - "dateEndYear": [ - 1840 - ], - "updatedAt": 1712867411184, - "publicationStatement": [ - "London : William Smith, 1839-1840" - ], - "identifier": [ - "urn:shelfmark:Arents BIP+ (Loudon, J. Ladies 1839) 04-199", - "urn:bnum:15960520", - "urn:oclc:NYPG04-B3559", - "urn:identifier:(WaOLN)G040000036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1839" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Flowers.", - "Floriculture." - ], - "titleDisplay": [ - "The ladies' flower-garden of ornamental annuals / by Mrs. Loudon." - ], - "uri": "b15960520", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - 19.55349, - "b15960520" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15960520", - "_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:macc2", - "label": "Schwarzman Building - Arents Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:macc2||Schwarzman Building - Arents Collection Room 328" - ], - "idBarcode": [ - "33433062059369" - ], - "identifier": [ - "urn:shelfmark:Arents BIP+ (Loudon, J. Ladies 1839) 04-199", - "urn:barcode:33433062059369" - ], - "identifierV2": [ - { - "value": "Arents BIP+ (Loudon, J. Ladies 1839) 04-199", - "type": "bf:ShelfMark" - }, - { - "value": "33433062059369", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1109", - "label": "George Arents Collection" - } - ], - "owner_packed": [ - "orgs:1109||George Arents Collection" - ], - "physicalLocation": [ - "Arents BIP+ (Loudon, J. Ladies 1839) 04-199" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Arents BIP+ (Loudon, J. Ladies 1839) 04-199" - ], - "shelfMark_sort": "aArents BIP+ (Loudon, J. Ladies 1839) 04-000199", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14729848", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Loudon%2C+Mrs.+%28Jane%29%2C+1807-1858.&CallNumber=Arents+BIP%2B+%28Loudon%2C+J.+Ladies+1839%29+04-199&Date=1839&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15960520&ItemISxN=i147298489&ItemNumber=33433062059369&ItemPlace=London&ItemPublisher=William+Smith%2C+1839-1840&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b159605209&Site=SASRB&Title=The+ladies%27+flower-garden+of+ornamental+annuals" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565328", - "_score": 19.364315, - "_source": { - "extent": [ - "xx, 304 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Wild flowers", - "Flower gardening", - "Plants, Cultivated" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1903 - ], - "title": [ - "The wild garden, or, The naturalization and natural grouping of hardy exotic plants with a chapter on the garden of British wild flowers" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1903)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1903" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1903 - ], - "idOclc": [ - "1883599", - "28429999" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. Wild garden. 1903)" - }, - { - "type": "nypl:Bnumber", - "value": "13565328" - }, - { - "type": "nypl:Oclc", - "value": "1883599" - }, - { - "type": "nypl:Oclc", - "value": "28429999" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540148" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1883599" - } - ], - "updatedAt": 1711612742840, - "publicationStatement": [ - "London : J. Murray, 1903." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1903)", - "urn:bnum:13565328", - "urn:oclc:1883599", - "urn:oclc:28429999", - "urn:identifier:(WaOLN)nyp3540148", - "urn:identifier:(OCoLC)1883599" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1903" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Wild flowers.", - "Flower gardening.", - "Plants, Cultivated." - ], - "titleDisplay": [ - "The wild garden, or, The naturalization and natural grouping of hardy exotic plants with a chapter on the garden of British wild flowers / by W. Robinson ; illustrated by Alfred Parsons." - ], - "uri": "b13565328", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006666956" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Naturalization and natural grouping of hardy exotic plants." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.364315, - "b13565328" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565328", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666956" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1903)", - "urn:barcode:33433006666956" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. Wild garden. 1903)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666956", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. Wild garden. 1903)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1903)" - ], - "shelfMark_sort": "aVQG (Robinson, W. Wild garden. 1903)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708779" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565330", - "_score": 19.364315, - "_source": { - "extent": [ - "xii, 423 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Doubleday, Page & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1911 - ], - "title": [ - "Garden planning" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Rogers, W. S. Garden planning)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1911" - ], - "creatorLiteral": [ - "Rogers, W. S. (William Snow), 1864-" - ], - "idLccn": [ - "11023306" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Garden library." - ], - "dateStartYear": [ - 1911 - ], - "idOclc": [ - "395457" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Rogers, W. S. Garden planning)" - }, - { - "type": "nypl:Bnumber", - "value": "13565330" - }, - { - "type": "nypl:Oclc", - "value": "395457" - }, - { - "type": "bf:Lccn", - "value": "11023306" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540150" - } - ], - "updatedAt": 1711575946133, - "publicationStatement": [ - "Garden City, New York, Doubleday, Page & company, 1911." - ], - "identifier": [ - "urn:shelfmark:VQG (Rogers, W. S. Garden planning)", - "urn:bnum:13565330", - "urn:oclc:395457", - "urn:lccn:11023306", - "urn:identifier:(WaOLN)nyp3540150" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1911" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Garden planning, by W. S. Rogers; illustrated by the author." - ], - "uri": "b13565330", - "lccClassification": [ - "SB453 .R7 1911" - ], - "placeOfPublication": [ - "Garden City, New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 19.364315, - "b13565330" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565330", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666972" - ], - "identifier": [ - "urn:shelfmark:VQG (Rogers, W. S. Garden planning)", - "urn:barcode:33433006666972" - ], - "identifierV2": [ - { - "value": "VQG (Rogers, W. S. Garden planning)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666972", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Rogers, W. S. Garden planning)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Rogers, W. S. Garden planning)" - ], - "shelfMark_sort": "aVQG (Rogers, W. S. Garden planning)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708781" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13566300", - "_score": 19.364315, - "_source": { - "extent": [ - "4 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Publisher's lettering: House and garden making books.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Water gardens" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "McBride, Nast & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1913 - ], - "title": [ - "Making a water garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Tricker, W. Making a water garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1913" - ], - "creatorLiteral": [ - "Tricker, William." - ], - "idLccn": [ - "13003261" - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "House and garden making books" - ], - "dateStartYear": [ - 1913 - ], - "idOclc": [ - "8308272" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Tricker, W. Making a water garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13566300" - }, - { - "type": "nypl:Oclc", - "value": "8308272" - }, - { - "type": "bf:Lccn", - "value": "13003261" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3541099" - } - ], - "updatedAt": 1711594952718, - "publicationStatement": [ - "New York, McBride, Nast & company, 1913." - ], - "identifier": [ - "urn:shelfmark:VQG (Tricker, W. Making a water garden)", - "urn:bnum:13566300", - "urn:oclc:8308272", - "urn:lccn:13003261", - "urn:identifier:(WaOLN)nyp3541099" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1913" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Water gardens." - ], - "titleDisplay": [ - "Making a water garden, by William Tricker..." - ], - "uri": "b13566300", - "lccClassification": [ - "SB423 .T8" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006667632" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 19.364315, - "b13566300" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13566300", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006667632" - ], - "identifier": [ - "urn:shelfmark:VQG (Tricker, W. Making a water garden)", - "urn:barcode:33433006667632" - ], - "identifierV2": [ - { - "value": "VQG (Tricker, W. Making a water garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006667632", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Tricker, W. Making a water garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Tricker, W. Making a water garden)" - ], - "shelfMark_sort": "aVQG (Tricker, W. Making a water garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10709184" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13571921", - "_score": 19.364315, - "_source": { - "extent": [ - "xiv, 108 p. col. front., illus., plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Water gardens", - "Aquatic plants" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Macmillan company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1931 - ], - "title": [ - "Garden pools, large and small" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Ramsey, L. W. Garden pools)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1931" - ], - "creatorLiteral": [ - "Ramsey, Leonidas Willing, 1891-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lawrence, Charles H." - ], - "dateStartYear": [ - 1931 - ], - "idOclc": [ - "5586852" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Ramsey, L. W. Garden pools)" - }, - { - "type": "nypl:Bnumber", - "value": "13571921" - }, - { - "type": "nypl:Oclc", - "value": "5586852" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3546661" - } - ], - "updatedAt": 1711455611146, - "publicationStatement": [ - "New York, The Macmillan company, 1931." - ], - "identifier": [ - "urn:shelfmark:VQG (Ramsey, L. W. Garden pools)", - "urn:bnum:13571921", - "urn:oclc:5586852", - "urn:identifier:(WaOLN)nyp3546661" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1931" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Water gardens.", - "Aquatic plants." - ], - "titleDisplay": [ - "Garden pools, large and small, by Leonidas W. Ramsey and Charles H. Lawrence." - ], - "uri": "b13571921", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.364315, - "b13571921" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13571921", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666766" - ], - "identifier": [ - "urn:shelfmark:VQG (Ramsey, L. W. Garden pools)", - "urn:barcode:33433006666766" - ], - "identifierV2": [ - { - "value": "VQG (Ramsey, L. W. Garden pools)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666766", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Ramsey, L. W. Garden pools)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Ramsey, L. W. Garden pools)" - ], - "shelfMark_sort": "aVQG (Ramsey, L. W. Garden pools)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10714248" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13571929", - "_score": 19.364315, - "_source": { - "extent": [ - "3 p.l., 472 p., 42 pl." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W.H. & L. Collingridge" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1914 - ], - "title": [ - "The flower garden; its design, formation, planting and management, including the description of all hardy and half-hardy plants, trees, and shrubs adapted for outdoor culture in the British Isles." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Sanders, T. W. Flower garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1914" - ], - "creatorLiteral": [ - "Sanders, Thomas W." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1914 - ], - "idOclc": [ - "38598386" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Sanders, T. W. Flower garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13571929" - }, - { - "type": "nypl:Oclc", - "value": "38598386" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3546669" - } - ], - "updatedAt": 1710978931902, - "publicationStatement": [ - "London, W.H. & L. Collingridge [1914]" - ], - "identifier": [ - "urn:shelfmark:VQG (Sanders, T. W. Flower garden)", - "urn:bnum:13571929", - "urn:oclc:38598386", - "urn:identifier:(WaOLN)nyp3546669" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1914" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The flower garden; its design, formation, planting and management, including the description of all hardy and half-hardy plants, trees, and shrubs adapted for outdoor culture in the British Isles." - ], - "uri": "b13571929", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8vo." - ] - }, - "sort": [ - 19.364315, - "b13571929" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13571929", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006667046" - ], - "identifier": [ - "urn:shelfmark:VQG (Sanders, T. W. Flower garden)", - "urn:barcode:33433006667046" - ], - "identifierV2": [ - { - "value": "VQG (Sanders, T. W. Flower garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006667046", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Sanders, T. W. Flower garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Sanders, T. W. Flower garden)" - ], - "shelfMark_sort": "aVQG (Sanders, T. W. Flower garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10714259" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13609642", - "_score": 19.364315, - "_source": { - "extent": [ - "3 p. l., 9-400 p., 54 pl." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Richards, Ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1912 - ], - "title": [ - "The new gardening; a guide to the most recent developments in the culture of flowers, fruits, and vegetables." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Wright, W. P. New gardening)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1912" - ], - "creatorLiteral": [ - "Wright, Walter Page." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1912 - ], - "idOclc": [ - "38879710" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Wright, W. P. New gardening)" - }, - { - "type": "nypl:Bnumber", - "value": "13609642" - }, - { - "type": "nypl:Oclc", - "value": "38879710" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3583463" - } - ], - "updatedAt": 1710980903779, - "publicationStatement": [ - "London, G. Richards, Ltd. [1912]" - ], - "identifier": [ - "urn:shelfmark:VQG (Wright, W. P. New gardening)", - "urn:bnum:13609642", - "urn:oclc:38879710", - "urn:identifier:(WaOLN)nyp3583463" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1912" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The new gardening; a guide to the most recent developments in the culture of flowers, fruits, and vegetables." - ], - "uri": "b13609642", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8vo." - ] - }, - "sort": [ - 19.364315, - "b13609642" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13609642", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006668051" - ], - "identifier": [ - "urn:shelfmark:VQG (Wright, W. P. New gardening)", - "urn:barcode:33433006668051" - ], - "identifierV2": [ - { - "value": "VQG (Wright, W. P. New gardening)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006668051", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Wright, W. P. New gardening)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Wright, W. P. New gardening)" - ], - "shelfMark_sort": "aVQG (Wright, W. P. New gardening)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10741304" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565310", - "_score": 19.350203, - "_source": { - "extent": [ - "ix-xix, 344 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Landscape gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1910 - ], - "title": [ - "Alpine flowers for gardens; rock, wall, marsh plants, and mountain shrubs" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. Alpine flowers for gardens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1910" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1910 - ], - "idOclc": [ - "404810" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. Alpine flowers for gardens)" - }, - { - "type": "nypl:Bnumber", - "value": "13565310" - }, - { - "type": "nypl:Oclc", - "value": "404810" - } - ], - "updatedAt": 1711306130176, - "publicationStatement": [ - "London, J. Murray, 1910." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Alpine flowers for gardens)", - "urn:bnum:13565310", - "urn:oclc:404810" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1910" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Landscape gardening." - ], - "titleDisplay": [ - "Alpine flowers for gardens; rock, wall, marsh plants, and mountain shrubs, by W. Robinson." - ], - "uri": "b13565310", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.350203, - "b13565310" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565310", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666857" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Alpine flowers for gardens)", - "urn:barcode:33433006666857" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. Alpine flowers for gardens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666857", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. Alpine flowers for gardens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. Alpine flowers for gardens)" - ], - "shelfMark_sort": "aVQG (Robinson, W. Alpine flowers for gardens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708765" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565323", - "_score": 19.350203, - "_source": { - "extent": [ - "236 p. front." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Flowers" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1870 - ], - "title": [ - "The wild garden; or, Our groves & shrubberies made beautiful by the naturalization of hardy exotic plants: with a chapter on the garden of British wild flowers." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1870)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1870" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1870 - ], - "idOclc": [ - "12606491" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. Wild garden. 1870)" - }, - { - "type": "nypl:Bnumber", - "value": "13565323" - }, - { - "type": "nypl:Oclc", - "value": "12606491" - } - ], - "updatedAt": 1711612742840, - "publicationStatement": [ - "London, J. Murray, 1870." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1870)", - "urn:bnum:13565323", - "urn:oclc:12606491" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1870" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Flowers." - ], - "titleDisplay": [ - "The wild garden; or, Our groves & shrubberies made beautiful by the naturalization of hardy exotic plants: with a chapter on the garden of British wild flowers. By W. Robinson." - ], - "uri": "b13565323", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006666931" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 19.350203, - "b13565323" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565323", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666931" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1870)", - "urn:barcode:33433006666931" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. Wild garden. 1870)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666931", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. Wild garden. 1870)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1870)" - ], - "shelfMark_sort": "aVQG (Robinson, W. Wild garden. 1870)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708775" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565327", - "_score": 19.350203, - "_source": { - "extent": [ - "xiv, 179 p., [7] leaves of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wild flower gardening", - "Wild flowers", - "Wild flowers -- Great Britain" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray ; Scribner and Welford" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1883 - ], - "title": [ - "The wild garden : or, our groves and gardens made beautiful by the naturalisation of hardy exotic plants; being one way onwards from the dark ages of flower gardening, with suggestions for the regeneration of the bare borders of the London Parks," - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1883)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1883" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1883 - ], - "idOclc": [ - "9755214" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. Wild garden. 1883)" - }, - { - "type": "nypl:Bnumber", - "value": "13565327" - }, - { - "type": "nypl:Oclc", - "value": "9755214" - } - ], - "updatedAt": 1710984403411, - "publicationStatement": [ - "London : J. Murray ; New York : Scribner and Welford, 1883." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1883)", - "urn:bnum:13565327", - "urn:oclc:9755214" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1883" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wild flower gardening.", - "Wild flowers -- Great Britain." - ], - "titleDisplay": [ - "The wild garden : or, our groves and gardens made beautiful by the naturalisation of hardy exotic plants; being one way onwards from the dark ages of flower gardening, with suggestions for the regeneration of the bare borders of the London Parks, / by W. Robinson, ; illustrated by Alfred Parsons." - ], - "uri": "b13565327", - "placeOfPublication": [ - "London : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.350203, - "b13565327" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565327", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666949" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild garden. 1883)", - "urn:barcode:33433006666949" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. Wild garden. 1883)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666949", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. Wild garden. 1883)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. Wild garden. 1883)" - ], - "shelfMark_sort": "aVQG (Robinson, W. Wild garden. 1883)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708778" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565327", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433061770016" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. Wild Garden. 1883)", - "urn:barcode:33433061770016" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. Wild Garden. 1883)", - "type": "bf:ShelfMark" - }, - { - "value": "33433061770016", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. Wild Garden. 1883)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. Wild Garden. 1883)" - ], - "shelfMark_sort": "aVQG (Robinson, W. Wild Garden. 1883)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15192136" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12469129", - "_score": 19.344261, - "_source": { - "extent": [ - "vii p., 1 l., 257 p. front. (port.)" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Tyrrell's march, 1597. Bagpipe tune\": p. 201.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "The biography of Joseph Burr Tyrrell.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tyrell, Joseph Burr, 1858-1957" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Macmillan company of Canada limited" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1930 - ], - "title": [ - "A Canadian geologist" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Tyrrell) (Loudon, W. J. Canadian geologist)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1930" - ], - "creatorLiteral": [ - "Loudon, W. J. (William James)" - ], - "idLccn": [ - "31018433" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1930 - ], - "idOclc": [ - "3660730" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Tyrrell) (Loudon, W. J. Canadian geologist)" - }, - { - "type": "nypl:Bnumber", - "value": "12469129" - }, - { - "type": "nypl:Oclc", - "value": "3660730" - }, - { - "type": "bf:Lccn", - "value": "31018433" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2452918" - } - ], - "updatedAt": 1711218188300, - "publicationStatement": [ - "Toronto, The Macmillan company of Canada limited, 1930." - ], - "identifier": [ - "urn:shelfmark:AN (Tyrrell) (Loudon, W. J. Canadian geologist)", - "urn:bnum:12469129", - "urn:oclc:3660730", - "urn:lccn:31018433", - "urn:identifier:(WaOLN)nyp2452918" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1930" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tyrell, Joseph Burr, 1858-1957." - ], - "titleDisplay": [ - "A Canadian geologist, by W. J. Loudon, B. A." - ], - "uri": "b12469129", - "lccClassification": [ - "QE22.T8 L6" - ], - "placeOfPublication": [ - "Toronto" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 19.344261, - "b12469129" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12469129", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433104239961" - ], - "identifier": [ - "urn:shelfmark:AN (Tyrrell) (Loudon, W. J. Canadian geologist)", - "urn:barcode:33433104239961" - ], - "identifierV2": [ - { - "value": "AN (Tyrrell) (Loudon, W. J. Canadian geologist)", - "type": "bf:ShelfMark" - }, - { - "value": "33433104239961", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Tyrrell) (Loudon, W. J. Canadian geologist)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Tyrrell) (Loudon, W. J. Canadian geologist)" - ], - "shelfMark_sort": "aAN (Tyrrell) (Loudon, W. J. Canadian geologist)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16047503" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13547481", - "_score": 19.247456, - "_source": { - "extent": [ - "xli, 634 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Zoology", - "Zoology -- Juvenile literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bell & Daldy" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1867 - ], - "title": [ - "Mrs. Loudon's Entertaining naturalist, being popular descriptions, tales, and anecdotes of more than five hundred animals." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1867" - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Dallas, W. S. (William Sweetland), 1824-1890." - ], - "dateStartYear": [ - 1867 - ], - "idOclc": [ - "1066101" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)" - }, - { - "type": "nypl:Bnumber", - "value": "13547481" - }, - { - "type": "nypl:Oclc", - "value": "1066101" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3522538" - } - ], - "updatedAt": 1715283788757, - "publicationStatement": [ - "London, Bell & Daldy, 1867." - ], - "identifier": [ - "urn:shelfmark:QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)", - "urn:bnum:13547481", - "urn:oclc:1066101", - "urn:identifier:(WaOLN)nyp3522538" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1867" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Zoology -- Juvenile literature." - ], - "titleDisplay": [ - "Mrs. Loudon's Entertaining naturalist, being popular descriptions, tales, and anecdotes of more than five hundred animals." - ], - "uri": "b13547481", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433011065715" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Entertaining naturalist." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 19.247456, - "b13547481" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13547481", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433011065715" - ], - "identifier": [ - "urn:shelfmark:QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)", - "urn:barcode:33433011065715" - ], - "identifierV2": [ - { - "value": "QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)", - "type": "bf:ShelfMark" - }, - { - "value": "33433011065715", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "QGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)" - ], - "shelfMark_sort": "aQGF (Loudon, J. W. Mrs. Loudon's Entertaining naturalist)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10692798" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565265", - "_score": 19.077652, - "_source": { - "extent": [ - "4 v., 288 leaves of plates : ill. (copper engravings) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Plates taken from the Botanical Register and Sweet's British Flower Garden with Latin text translated into English.\"-Sitwell.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Sitwell, S. Great flower books, 1700-1900", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Plants, Ornamental", - "Plants, Ornamental -- Pictorial works", - "Plants, Ornamental -- Great Britain" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Willis ..." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 5 - ], - "createdYear": [ - 1854 - ], - "title": [ - "The Ornamental flower garden and shrubbery : containing coloured figures and descriptions of the most beautiful and curious flowering plants and shrubs cultivated in Great Britain" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Ornamental flower garden and shrubbery)" - ], - "numItemVolumesParsed": [ - 4 - ], - "createdString": [ - "1854" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lindley, John, 1799-1865.", - "Don, David, 1799-1841.", - "Willis, G.", - "Sweet, Robert, 1783-1835." - ], - "dateStartYear": [ - 1854 - ], - "idOclc": [ - "12800677" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Ornamental flower garden and shrubbery)" - }, - { - "type": "nypl:Bnumber", - "value": "13565265" - }, - { - "type": "nypl:Oclc", - "value": "12800677" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540085" - } - ], - "updatedAt": 1711553625696, - "publicationStatement": [ - "London : G. Willis ..., 1854." - ], - "genreForm": [ - "Icones – England – 19th century" - ], - "identifier": [ - "urn:shelfmark:VQG (Ornamental flower garden and shrubbery)", - "urn:bnum:13565265", - "urn:oclc:12800677", - "urn:identifier:(WaOLN)nyp3540085" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1854" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Plants, Ornamental -- Pictorial works.", - "Plants, Ornamental -- Great Britain." - ], - "titleDisplay": [ - "The Ornamental flower garden and shrubbery : containing coloured figures and descriptions of the most beautiful and curious flowering plants and shrubs cultivated in Great Britain / selected from the works of John Lindley, ... R. Sweet, ... Professor D. Don ..." - ], - "uri": "b13565265", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm. (8vo)" - ] - }, - "sort": [ - 19.077652, - "b13565265" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 5, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565265", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 4" - ], - "enumerationChronology_sort": [ - " 4-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666659" - ], - "identifier": [ - "urn:shelfmark:VQG (Ornamental flower garden and shrubbery) v. 4", - "urn:barcode:33433006666659" - ], - "identifierV2": [ - { - "value": "VQG (Ornamental flower garden and shrubbery) v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666659", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Ornamental flower garden and shrubbery)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Ornamental flower garden and shrubbery) v. 4" - ], - "shelfMark_sort": "aVQG (Ornamental flower garden and shrubbery) v. 000004", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "uri": "i10708711" - }, - "sort": [ - " 4-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565265", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 3" - ], - "enumerationChronology_sort": [ - " 3-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666642" - ], - "identifier": [ - "urn:shelfmark:VQG (Ornamental flower garden and shrubbery) v. 3", - "urn:barcode:33433006666642" - ], - "identifierV2": [ - { - "value": "VQG (Ornamental flower garden and shrubbery) v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666642", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Ornamental flower garden and shrubbery)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Ornamental flower garden and shrubbery) v. 3" - ], - "shelfMark_sort": "aVQG (Ornamental flower garden and shrubbery) v. 000003", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "uri": "i10708710" - }, - "sort": [ - " 3-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565265", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666634" - ], - "identifier": [ - "urn:shelfmark:VQG (Ornamental flower garden and shrubbery) v. 2", - "urn:barcode:33433006666634" - ], - "identifierV2": [ - { - "value": "VQG (Ornamental flower garden and shrubbery) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666634", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Ornamental flower garden and shrubbery)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Ornamental flower garden and shrubbery) v. 2" - ], - "shelfMark_sort": "aVQG (Ornamental flower garden and shrubbery) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i10708709" - }, - "sort": [ - " 2-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13961578", - "_score": 19.07359, - "_source": { - "extent": [ - "224 p., 8 plates. illus., facsims., maps, plans, ports." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Loudon, J. C. 1783-1843" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Oriel P." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "title": [ - "Mr. Loudon's England: the life and work of John Claudius Loudon, and his influence on architecture and furniture design." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MQZ (Loudon) (Gloag, J. Mr. Loudon's England)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1970" - ], - "creatorLiteral": [ - "Gloag, John, 1896-" - ], - "idLccn": [ - "68055974 //r85" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "idOclc": [ - "100080" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MQZ (Loudon) (Gloag, J. Mr. Loudon's England)" - }, - { - "type": "nypl:Bnumber", - "value": "13961578" - }, - { - "type": "bf:Isbn", - "value": "0853620423" - }, - { - "type": "nypl:Oclc", - "value": "100080" - }, - { - "type": "bf:Lccn", - "value": "68055974 //r85" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0548925" - } - ], - "updatedAt": 1711655374033, - "publicationStatement": [ - "Newcastle upon Tyne, Oriel P., 1970." - ], - "idIsbn": [ - "0853620423" - ], - "identifier": [ - "urn:shelfmark:MQZ (Loudon) (Gloag, J. Mr. Loudon's England)", - "urn:bnum:13961578", - "urn:isbn:0853620423", - "urn:oclc:100080", - "urn:lccn:68055974 //r85", - "urn:identifier:(WaOLN)nyp0548925" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Loudon, J. C. 1783-1843." - ], - "titleDisplay": [ - "Mr. Loudon's England: the life and work of John Claudius Loudon, and his influence on architecture and furniture design." - ], - "uri": "b13961578", - "lccClassification": [ - "NA997.L63 G55" - ], - "placeOfPublication": [ - "Newcastle upon Tyne" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ], - "idIsbn_clean": [ - "0853620423" - ] - }, - "sort": [ - 19.07359, - "b13961578" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13961578", - "_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:mab88", - "label": "SASB M1 - Art & Architecture Rm 300" - } - ], - "holdingLocation_packed": [ - "loc:mab88||SASB M1 - Art & Architecture Rm 300" - ], - "idBarcode": [ - "33433065857470" - ], - "identifier": [ - "urn:shelfmark:MQZ (Loudon) (Gloag, J. Mr. Loudon's England)", - "urn:barcode:33433065857470" - ], - "identifierV2": [ - { - "value": "MQZ (Loudon) (Gloag, J. Mr. Loudon's England)", - "type": "bf:ShelfMark" - }, - { - "value": "33433065857470", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "MQZ (Loudon) (Gloag, J. Mr. Loudon's England)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MQZ (Loudon) (Gloag, J. Mr. Loudon's England)" - ], - "shelfMark_sort": "aMQZ (Loudon) (Gloag, J. Mr. Loudon's England)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15232234" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13562228", - "_score": 18.875933, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "1 p. l., [v]-i, 1278 p. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography, p. xxii-xxix.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed for Longman, Brown, Green, and Longmans" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1850 - ], - "title": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and lanscape gardening; including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state; with suggestions for its future progress in the British isles." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1850)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1850" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "idLccn": [ - "11014061" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858.", - "Branston." - ], - "dateStartYear": [ - 1850 - ], - "idOclc": [ - "6858645" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1850)" - }, - { - "type": "nypl:Bnumber", - "value": "13562228" - }, - { - "type": "nypl:Oclc", - "value": "6858645" - }, - { - "type": "bf:Lccn", - "value": "11014061" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0447248" - } - ], - "updatedAt": 1711399671697, - "publicationStatement": [ - "London, Printed for Longman, Brown, Green, and Longmans, 1850." - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1850)", - "urn:bnum:13562228", - "urn:oclc:6858645", - "urn:lccn:11014061", - "urn:identifier:(WaOLN)nyp0447248" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1850" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and lanscape gardening; including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state; with suggestions for its future progress in the British isles. By J. C. Loudon. Illustrated with many hundred engravings on wood, by Branston." - ], - "uri": "b13562228", - "lccClassification": [ - "SB91 .L89" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 18.875933, - "b13562228" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13562228", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006558385" - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1850)", - "urn:barcode:33433006558385" - ], - "identifierV2": [ - { - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1850)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006558385", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1850)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1850)" - ], - "shelfMark_sort": "aVQD (Loudon, J. C. Encyclopædia of gardening. 1850)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10705503" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624478", - "_score": 18.875933, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xii, 1233 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Longman, Rees, Orme, Brown and Green" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1826 - ], - "title": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape-gardening, including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state with suggestions for its future progress, in the British Isles." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1826)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1826" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1826 - ], - "idOclc": [ - "38930153" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1826)" - }, - { - "type": "nypl:Bnumber", - "value": "13624478" - }, - { - "type": "nypl:Oclc", - "value": "38930153" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0451763" - } - ], - "updatedAt": 1711406981358, - "publicationStatement": [ - "London, Longman, Rees, Orme, Brown and Green, 1826." - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1826)", - "urn:bnum:13624478", - "urn:oclc:38930153", - "urn:identifier:(WaOLN)nyp0451763" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1826" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape-gardening, including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state with suggestions for its future progress, in the British Isles. By J.C. London ... Illustrated with many hundred engravings on wood by Branston." - ], - "uri": "b13624478", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 18.875933, - "b13624478" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624478", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006558419" - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1826)", - "urn:barcode:33433006558419" - ], - "identifierV2": [ - { - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1826)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006558419", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1826)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1826)" - ], - "shelfMark_sort": "aVQD (Loudon, J. C. Encyclopædia of gardening. 1826)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624479", - "_score": 18.875933, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xl, 1278 p. illus., tables." - ], - "note": [ - { - "noteType": "Note", - "label": "Bound in 2 v.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Longmans, Green, and Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1871 - ], - "title": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape gardening; including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state, with suggestions for its future progress in the British Isles." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1871)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1871" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "dateStartYear": [ - 1871 - ], - "idOclc": [ - "38930156" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1871)" - }, - { - "type": "nypl:Bnumber", - "value": "13624479" - }, - { - "type": "nypl:Oclc", - "value": "38930156" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0451764" - } - ], - "updatedAt": 1711573210990, - "publicationStatement": [ - "London, Longmans, Green, and Co., 1871." - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1871)", - "urn:bnum:13624479", - "urn:oclc:38930156", - "urn:identifier:(WaOLN)nyp0451764" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1871" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "An encyclopædia of gardening; comprising the theory and practice of horticulture, floriculture, arboriculture, and landscape gardening; including all the latest improvements; a general history of gardening in all countries; and a statistical view of its present state, with suggestions for its future progress in the British Isles. By J.C. Loudon ... Illustrated with many hundred engravings on wood, by Branston." - ], - "uri": "b13624479", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006558393" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 18.875933, - "b13624479" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624479", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006558401" - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 2", - "urn:barcode:33433006558401" - ], - "identifierV2": [ - { - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433006558401", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1871)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 2" - ], - "shelfMark_sort": "aVQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i10752338" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624479", - "_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:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006558393" - ], - "identifier": [ - "urn:shelfmark:VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 1", - "urn:barcode:33433006558393" - ], - "identifierV2": [ - { - "value": "VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433006558393", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1871)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 1" - ], - "shelfMark_sort": "aVQD (Loudon, J. C. Encyclopædia of gardening. 1871) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i10752337" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14471198", - "_score": 18.875933, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xvi, 752 p. illus. (incl. plans)" - ], - "note": [ - { - "noteType": "Note", - "label": "2d edition has title: The villa gardener.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The author" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1838 - ], - "title": [ - "The suburban gardener, and villa companion: comprising the choice of a suburban or villa residence, or of a situation on which to form one; the arrangement and furnishing of the house; and the laying out, planting, and general management of the garden and grounds ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-MSD (Loudon, J. C. Suburban gardener)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1838" - ], - "creatorLiteral": [ - "Loudon, J. C. (John Claudius), 1783-1843." - ], - "idLccn": [ - "12017098" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1838 - ], - "idOclc": [ - "2338338" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MSD (Loudon, J. C. Suburban gardener)" - }, - { - "type": "nypl:Bnumber", - "value": "14471198" - }, - { - "type": "nypl:Oclc", - "value": "2338338" - }, - { - "type": "bf:Lccn", - "value": "12017098" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R190000130" - } - ], - "updatedAt": 1711209022544, - "publicationStatement": [ - "London, The author, 1838." - ], - "identifier": [ - "urn:shelfmark:3-MSD (Loudon, J. C. Suburban gardener)", - "urn:bnum:14471198", - "urn:oclc:2338338", - "urn:lccn:12017098", - "urn:identifier:(WaOLN)R190000130" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1838" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "The suburban gardener, and villa companion: comprising the choice of a suburban or villa residence, or of a situation on which to form one; the arrangement and furnishing of the house; and the laying out, planting, and general management of the garden and grounds ... By J. C. Loudon ..." - ], - "uri": "b14471198", - "lccClassification": [ - "SB453 .L88" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 18.875933, - "b14471198" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14471198", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433003299900" - ], - "identifier": [ - "urn:shelfmark:3-MSD (Loudon, J. C. Suburban gardener)", - "urn:barcode:33433003299900" - ], - "identifierV2": [ - { - "value": "3-MSD (Loudon, J. C. Suburban gardener)", - "type": "bf:ShelfMark" - }, - { - "value": "33433003299900", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "3-MSD (Loudon, J. C. Suburban gardener)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-MSD (Loudon, J. C. Suburban gardener)" - ], - "shelfMark_sort": "a3-MSD (Loudon, J. C. Suburban gardener)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10857197" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564092", - "_score": 18.853975, - "_source": { - "extent": [ - "xi, 316 p. front., plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardens", - "Gardens -- England", - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "E. Arnold" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1909 - ], - "title": [ - "In a Yorkshire garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Farrer, R. J. In a Yorkshire garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Farrer, Reginald, 1880-1920." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "884041" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Farrer, R. J. In a Yorkshire garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13564092" - }, - { - "type": "nypl:Oclc", - "value": "884041" - } - ], - "updatedAt": 1711458993673, - "publicationStatement": [ - "London, E. Arnold, 1909." - ], - "identifier": [ - "urn:shelfmark:VQG (Farrer, R. J. In a Yorkshire garden)", - "urn:bnum:13564092", - "urn:oclc:884041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardens -- England.", - "Floriculture." - ], - "titleDisplay": [ - "In a Yorkshire garden, by Reginald Farrer." - ], - "uri": "b13564092", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 18.853975, - "b13564092" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564092", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562015" - ], - "identifier": [ - "urn:shelfmark:VQG (Farrer, R. J. In a Yorkshire garden)", - "urn:barcode:33433006562015" - ], - "identifierV2": [ - { - "value": "VQG (Farrer, R. J. In a Yorkshire garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562015", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Farrer, R. J. In a Yorkshire garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Farrer, R. J. In a Yorkshire garden)" - ], - "shelfMark_sort": "aVQG (Farrer, R. J. In a Yorkshire garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707384" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565202", - "_score": 18.853975, - "_source": { - "extent": [ - "215 p., [8] leaves of plates : ill., plan ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Printed in Great Britain.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Charles Scribner's Sons" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1925 - ], - "title": [ - "A real ABC of gardening" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (MacSelf, A. J. Real ABC of gardening)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1925" - ], - "creatorLiteral": [ - "Macself, A. J. (Albert James), 1878-1952." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Lettered on cover: The home garden books" - ], - "dateStartYear": [ - 1925 - ], - "idOclc": [ - "12219927" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (MacSelf, A. J. Real ABC of gardening)" - }, - { - "type": "nypl:Bnumber", - "value": "13565202" - }, - { - "type": "nypl:Oclc", - "value": "12219927" - }, - { - "type": "bf:Identifier", - "value": "18309" - } - ], - "updatedAt": 1711381205945, - "publicationStatement": [ - "New York : Charles Scribner's Sons, 1925." - ], - "identifier": [ - "urn:shelfmark:VQG (MacSelf, A. J. Real ABC of gardening)", - "urn:bnum:13565202", - "urn:oclc:12219927", - "urn:identifier:18309" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "A real ABC of gardening / by A.J. Macself." - ], - "uri": "b13565202", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 18.853975, - "b13565202" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565202", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666261" - ], - "identifier": [ - "urn:shelfmark:VQG (MacSelf, A. J. Real ABC of gardening)", - "urn:barcode:33433006666261" - ], - "identifierV2": [ - { - "value": "VQG (MacSelf, A. J. Real ABC of gardening)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666261", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (MacSelf, A. J. Real ABC of gardening)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (MacSelf, A. J. Real ABC of gardening)" - ], - "shelfMark_sort": "aVQG (MacSelf, A. J. Real ABC of gardening)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708637" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564072", - "_score": 18.75181, - "_source": { - "extent": [ - "320 p. mounted col. front., illus., plates (part mounted col.)" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rock gardens" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ward, Lock & co., limited" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1929 - ], - "title": [ - "Rock gardens, how to plan and plant them" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Edwards, A. Rock gardens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1929" - ], - "creatorLiteral": [ - "Edwards, A." - ], - "idLccn": [ - "29024896" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1929 - ], - "idOclc": [ - "3238455" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Edwards, A. Rock gardens)" - }, - { - "type": "nypl:Bnumber", - "value": "13564072" - }, - { - "type": "nypl:Oclc", - "value": "3238455" - }, - { - "type": "bf:Lccn", - "value": "29024896" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538896" - } - ], - "updatedAt": 1711348516804, - "publicationStatement": [ - "London, Melbourne, Ward, Lock & co., limited [1929]" - ], - "identifier": [ - "urn:shelfmark:VQG (Edwards, A. Rock gardens)", - "urn:bnum:13564072", - "urn:oclc:3238455", - "urn:lccn:29024896", - "urn:identifier:(WaOLN)nyp3538896" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1929" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rock gardens." - ], - "titleDisplay": [ - "Rock gardens, how to plan and plant them, with sections on the wall, paved, marsh, and water gardens, by A. Edwards. 8 plates in colour and 50 photographs and diagrams." - ], - "uri": "b13564072", - "lccClassification": [ - "SB454 .E4" - ], - "placeOfPublication": [ - "London, Melbourne" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 18.75181, - "b13564072" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564072", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006561900" - ], - "identifier": [ - "urn:shelfmark:VQG (Edwards, A. Rock gardens)", - "urn:barcode:33433006561900" - ], - "identifierV2": [ - { - "value": "VQG (Edwards, A. Rock gardens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006561900", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Edwards, A. Rock gardens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Edwards, A. Rock gardens)" - ], - "shelfMark_sort": "aVQG (Edwards, A. Rock gardens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13674843", - "_score": 18.705221, - "_source": { - "extent": [ - "202 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Gardening -- 1926-", - "Landscape gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Meredith Pub. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Gardening guide." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG+ (Better homes and gardens. Gardening guide)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "Better Homes and Gardens." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "39136077" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG+ (Better homes and gardens. Gardening guide)" - }, - { - "type": "nypl:Bnumber", - "value": "13674843" - }, - { - "type": "nypl:Oclc", - "value": "39136077" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3646011" - } - ], - "updatedAt": 1711575985205, - "publicationStatement": [ - "Des Moines [Iowa] Meredith Pub. Co., c1951." - ], - "identifier": [ - "urn:shelfmark:VQG+ (Better homes and gardens. Gardening guide)", - "urn:bnum:13674843", - "urn:oclc:39136077", - "urn:identifier:(WaOLN)nyp3646011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening -- 1926-", - "Landscape gardening." - ], - "titleDisplay": [ - "Gardening guide." - ], - "uri": "b13674843", - "placeOfPublication": [ - "Des Moines [Iowa]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - 18.705221, - "b13674843" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13674843", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433007880747" - ], - "identifier": [ - "urn:shelfmark:VQG+ (Better homes and gardens. Gardening guide)", - "urn:barcode:33433007880747" - ], - "identifierV2": [ - { - "value": "VQG+ (Better homes and gardens. Gardening guide)", - "type": "bf:ShelfMark" - }, - { - "value": "33433007880747", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG+ (Better homes and gardens. Gardening guide)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG+ (Better homes and gardens. Gardening guide)" - ], - "shelfMark_sort": "aVQG+ (Better homes and gardens. Gardening guide)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10778193" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564073", - "_score": 17.903217, - "_source": { - "extent": [ - "52 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "McBride, Nast & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1912 - ], - "title": [ - "Making a garden of perennials" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Egan, W. C. Making a garden of perennials)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1912" - ], - "creatorLiteral": [ - "Egan, W. C. (William Constantine), 1841-1930." - ], - "idLccn": [ - "12016605" - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "House and garden making books" - ], - "dateStartYear": [ - 1912 - ], - "idOclc": [ - "381593" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Egan, W. C. Making a garden of perennials)" - }, - { - "type": "nypl:Bnumber", - "value": "13564073" - }, - { - "type": "nypl:Oclc", - "value": "381593" - }, - { - "type": "bf:Lccn", - "value": "12016605" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538897" - } - ], - "updatedAt": 1711594952718, - "publicationStatement": [ - "New York, McBride, Nast & company, 1912." - ], - "identifier": [ - "urn:shelfmark:VQG (Egan, W. C. Making a garden of perennials)", - "urn:bnum:13564073", - "urn:oclc:381593", - "urn:lccn:12016605", - "urn:identifier:(WaOLN)nyp3538897" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1912" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Floriculture." - ], - "titleDisplay": [ - "Making a garden of perennials, by W. C. Egan." - ], - "uri": "b13564073", - "lccClassification": [ - "SB453 .E4" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006561918" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "17 cm." - ] - }, - "sort": [ - 17.903217, - "b13564073" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564073", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006561918" - ], - "identifier": [ - "urn:shelfmark:VQG (Egan, W. C. Making a garden of perennials)", - "urn:barcode:33433006561918" - ], - "identifierV2": [ - { - "value": "VQG (Egan, W. C. Making a garden of perennials)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006561918", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Egan, W. C. Making a garden of perennials)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Egan, W. C. Making a garden of perennials)" - ], - "shelfMark_sort": "aVQG (Egan, W. C. Making a garden of perennials)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707363" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564101", - "_score": 17.903217, - "_source": { - "extent": [ - "vii, 96 p. 9 pl. (incl. front.)" - ], - "note": [ - { - "noteType": "Note", - "label": "Title in red and green within green line border.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Lane" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1903 - ], - "title": [ - "The book of the wild garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Fitzherbert, S. W. Book of the wild garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1903" - ], - "creatorLiteral": [ - "Fitzherbert, S. W." - ], - "idLccn": [ - "03015762" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Handbooks of practical gardening, XIII" - ], - "dateStartYear": [ - 1903 - ], - "idOclc": [ - "2287321" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Fitzherbert, S. W. Book of the wild garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13564101" - }, - { - "type": "nypl:Oclc", - "value": "2287321" - }, - { - "type": "bf:Lccn", - "value": "03015762" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538925" - } - ], - "updatedAt": 1710977679289, - "publicationStatement": [ - "London, New York, J. Lane, 1903." - ], - "identifier": [ - "urn:shelfmark:VQG (Fitzherbert, S. W. Book of the wild garden)", - "urn:bnum:13564101", - "urn:oclc:2287321", - "urn:lccn:03015762", - "urn:identifier:(WaOLN)nyp3538925" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1903" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture." - ], - "titleDisplay": [ - "The book of the wild garden, by S. W. Fitzherbert." - ], - "uri": "b13564101", - "lccClassification": [ - "SB454 .F6" - ], - "placeOfPublication": [ - "London, New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Wild garden." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 17.903217, - "b13564101" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564101", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562072" - ], - "identifier": [ - "urn:shelfmark:VQG (Fitzherbert, S. W. Book of the wild garden)", - "urn:barcode:33433006562072" - ], - "identifierV2": [ - { - "value": "VQG (Fitzherbert, S. W. Book of the wild garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562072", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Fitzherbert, S. W. Book of the wild garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Fitzherbert, S. W. Book of the wild garden)" - ], - "shelfMark_sort": "aVQG (Fitzherbert, S. W. Book of the wild garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707394" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565311", - "_score": 17.903217, - "_source": { - "extent": [ - "xxii, 751 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Gardening", - "Gardening -- Dictionaries", - "Landscape gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "John Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1893 - ], - "title": [ - "The English flower garden : style position & arrangement" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1893)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1893" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1893 - ], - "idOclc": [ - "4622382" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. English flower garden. 1893)" - }, - { - "type": "nypl:Bnumber", - "value": "13565311" - }, - { - "type": "nypl:Oclc", - "value": "4622382" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540131" - } - ], - "updatedAt": 1710978889299, - "publicationStatement": [ - "London : John Murray, 1893." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1893)", - "urn:bnum:13565311", - "urn:oclc:4622382", - "urn:identifier:(WaOLN)nyp3540131" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1893" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Gardening -- Dictionaries.", - "Landscape gardening." - ], - "titleDisplay": [ - "The English flower garden : style position & arrangement / followed by a description of all the best plants for it, their culture and arrangemet." - ], - "uri": "b13565311", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 17.903217, - "b13565311" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565311", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666873" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1893)", - "urn:barcode:33433006666873" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. English flower garden. 1893)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666873", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. English flower garden. 1893)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1893)" - ], - "shelfMark_sort": "aVQG (Robinson, W. English flower garden. 1893)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708767" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565311", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666865" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1893)", - "urn:barcode:33433006666865" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. English flower garden. 1893)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666865", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. English flower garden. 1893)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1893)" - ], - "shelfMark_sort": "aVQG (Robinson, W. English flower garden. 1893)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708766" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565316", - "_score": 17.903217, - "_source": { - "extent": [ - "xii, 902 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture", - "Gardens", - "Gardens -- England" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1896 - ], - "title": [ - "The English flower garden : design and arrangement shown by existing examples of gardens in Great Britain and Ireland followed by a description of the best plants for the open-air garden and their culture" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1896)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1896" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1896 - ], - "idOclc": [ - "6031757" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. English flower garden. 1896)" - }, - { - "type": "nypl:Bnumber", - "value": "13565316" - }, - { - "type": "nypl:Oclc", - "value": "6031757" - } - ], - "updatedAt": 1710978889299, - "publicationStatement": [ - "London : Murray, 1896." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1896)", - "urn:bnum:13565316", - "urn:oclc:6031757" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1896" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture.", - "Gardens -- England." - ], - "titleDisplay": [ - "The English flower garden : design and arrangement shown by existing examples of gardens in Great Britain and Ireland followed by a description of the best plants for the open-air garden and their culture / by W. Robinson ; illus. with many engravings on wood." - ], - "uri": "b13565316", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006666899" - } - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 17.903217, - "b13565316" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565316", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666881" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1896)", - "urn:barcode:33433006666881" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. English flower garden. 1896)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666881", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. English flower garden. 1896)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1896)" - ], - "shelfMark_sort": "aVQG (Robinson, W. English flower garden. 1896)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708770" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565316", - "_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:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666899" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1896)", - "urn:barcode:33433006666899" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. English flower garden. 1896)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666899", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. English flower garden. 1896)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1896)" - ], - "shelfMark_sort": "aVQG (Robinson, W. English flower garden. 1896)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708771" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565317", - "_score": 17.903217, - "_source": { - "extent": [ - "xii, 796 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murry" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1921 - ], - "title": [ - "The English flower garden and home grounds : design and arrangement followed by a description of the plants, shrubs and trees for the open-air garden and their culture" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1921)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1921" - ], - "creatorLiteral": [ - "Robinson, W. (William), 1838-1935." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1921 - ], - "idOclc": [ - "4743040" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Robinson, W. English flower garden. 1921)" - }, - { - "type": "nypl:Bnumber", - "value": "13565317" - }, - { - "type": "nypl:Oclc", - "value": "4743040" - } - ], - "updatedAt": 1710978889299, - "publicationStatement": [ - "London : J. Murry, 1921." - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1921)", - "urn:bnum:13565317", - "urn:oclc:4743040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1921" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture." - ], - "titleDisplay": [ - "The English flower garden and home grounds : design and arrangement followed by a description of the plants, shrubs and trees for the open-air garden and their culture / by W. Robinson." - ], - "uri": "b13565317", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 17.903217, - "b13565317" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565317", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666907" - ], - "identifier": [ - "urn:shelfmark:VQG (Robinson, W. English flower garden. 1921)", - "urn:barcode:33433006666907" - ], - "identifierV2": [ - { - "value": "VQG (Robinson, W. English flower garden. 1921)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666907", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Robinson, W. English flower garden. 1921)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Robinson, W. English flower garden. 1921)" - ], - "shelfMark_sort": "aVQG (Robinson, W. English flower garden. 1921)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708772" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565331", - "_score": 17.903217, - "_source": { - "extent": [ - "xi, 301 p. front., illus. (incl. plans)" - ], - "note": [ - { - "noteType": "Note", - "label": "Previously published under title: Garden planning.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Doubleday, Page & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1923 - ], - "dateEndString": [ - "uuuu" - ], - "title": [ - "Planning your garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Rogers, W. S. Planning your garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1923" - ], - "creatorLiteral": [ - "Rogers, W. S. (William Snow), 1864-" - ], - "idLccn": [ - "23008208" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "The Amateur's book of the garden series" - ], - "dateStartYear": [ - 1923 - ], - "idOclc": [ - "5665307" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Rogers, W. S. Planning your garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13565331" - }, - { - "type": "nypl:Oclc", - "value": "5665307" - }, - { - "type": "bf:Lccn", - "value": "23008208" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540151" - } - ], - "dateEndYear": [ - null - ], - "updatedAt": 1711457822509, - "publicationStatement": [ - "Garden City, N.Y., Doubleday, Page & company, 1923." - ], - "identifier": [ - "urn:shelfmark:VQG (Rogers, W. S. Planning your garden)", - "urn:bnum:13565331", - "urn:oclc:5665307", - "urn:lccn:23008208", - "urn:identifier:(WaOLN)nyp3540151" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1923" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Planning your garden, by W. S. Rogers; illustrated by the author." - ], - "uri": "b13565331", - "lccClassification": [ - "SB453 .R7 1923" - ], - "placeOfPublication": [ - "Garden City, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 17.903217, - "b13565331" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565331", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666980" - ], - "identifier": [ - "urn:shelfmark:VQG (Rogers, W. S. Planning your garden)", - "urn:barcode:33433006666980" - ], - "identifierV2": [ - { - "value": "VQG (Rogers, W. S. Planning your garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666980", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Rogers, W. S. Planning your garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Rogers, W. S. Planning your garden)" - ], - "shelfMark_sort": "aVQG (Rogers, W. S. Planning your garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708782" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13566240", - "_score": 17.903217, - "_source": { - "extent": [ - "66 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardens", - "Gardens -- Great Britain" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cassell" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1952 - ], - "title": [ - "The royal gardeners, King George VI and his Queen." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Shewell-Cooper, W. E. Royal gardeners)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1952" - ], - "creatorLiteral": [ - "Shewell-Cooper, W. E. (Wilfred Edward), 1900-" - ], - "idLccn": [ - "52068103" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1952 - ], - "idOclc": [ - "1654115" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Shewell-Cooper, W. E. Royal gardeners)" - }, - { - "type": "nypl:Bnumber", - "value": "13566240" - }, - { - "type": "nypl:Oclc", - "value": "1654115" - }, - { - "type": "bf:Lccn", - "value": "52068103" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3541039" - } - ], - "updatedAt": 1711459585012, - "publicationStatement": [ - "London, Cassell [1952]" - ], - "identifier": [ - "urn:shelfmark:VQG (Shewell-Cooper, W. E. Royal gardeners)", - "urn:bnum:13566240", - "urn:oclc:1654115", - "urn:lccn:52068103", - "urn:identifier:(WaOLN)nyp3541039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1952" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardens -- Great Britain." - ], - "titleDisplay": [ - "The royal gardeners, King George VI and his Queen." - ], - "uri": "b13566240", - "lccClassification": [ - "SB466.G7 S5 1952" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 17.903217, - "b13566240" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13566240", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006667186" - ], - "identifier": [ - "urn:shelfmark:VQG (Shewell-Cooper, W. E. Royal gardeners)", - "urn:barcode:33433006667186" - ], - "identifierV2": [ - { - "value": "VQG (Shewell-Cooper, W. E. Royal gardeners)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006667186", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Shewell-Cooper, W. E. Royal gardeners)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Shewell-Cooper, W. E. Royal gardeners)" - ], - "shelfMark_sort": "aVQG (Shewell-Cooper, W. E. Royal gardeners)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10709115" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13571035", - "_score": 17.903217, - "_source": { - "extent": [ - "xii, 227 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Country life; Charles Scribner's sons" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1910 - ], - "title": [ - "Rock and water gardens; their making and planting; with chapters on wall and heath gardening" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Meyer, F. W. Rock & water gardens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1910" - ], - "creatorLiteral": [ - "Meyer, F. W." - ], - "idLccn": [ - "a 10001157" - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "Country life library" - ], - "contributorLiteral": [ - "Cook, E. T." - ], - "dateStartYear": [ - 1910 - ], - "idOclc": [ - "599176" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Meyer, F. W. Rock & water gardens)" - }, - { - "type": "nypl:Bnumber", - "value": "13571035" - }, - { - "type": "nypl:Oclc", - "value": "599176" - }, - { - "type": "bf:Lccn", - "value": "a 10001157" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3545774" - } - ], - "updatedAt": 1710969527583, - "publicationStatement": [ - "London, Country life; New York, Charles Scribner's sons [1910]" - ], - "identifier": [ - "urn:shelfmark:VQG (Meyer, F. W. Rock & water gardens)", - "urn:bnum:13571035", - "urn:oclc:599176", - "urn:lccn:a 10001157", - "urn:identifier:(WaOLN)nyp3545774" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1910" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Rock and water gardens; their making and planting; with chapters on wall and heath gardening, by F. W. Meyer; edited by E. T. Cook." - ], - "uri": "b13571035", - "electronicResources": [ - { - "label": "Full text available via HathiTrust - vol. 4", - "url": "http://hdl.handle.net/2027/ucm.5313033146" - } - ], - "placeOfPublication": [ - "London, New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 17.903217, - "b13571035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13571035", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666485" - ], - "identifier": [ - "urn:shelfmark:VQG (Meyer, F. W. Rock & water gardens)", - "urn:barcode:33433006666485" - ], - "identifierV2": [ - { - "value": "VQG (Meyer, F. W. Rock & water gardens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666485", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Meyer, F. W. Rock & water gardens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Meyer, F. W. Rock & water gardens)" - ], - "shelfMark_sort": "aVQG (Meyer, F. W. Rock & water gardens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10713209" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565054", - "_score": 17.890862, - "_source": { - "extent": [ - "2 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Plates printed on both sides.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dean and son ltd.; Brentano's" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1924 - ], - "title": [ - "Garden improvement" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Henslow, T. G. W. Garden improvement)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1924" - ], - "creatorLiteral": [ - "Henslow, Thomas Geoffrey Wall." - ], - "idLccn": [ - "agr25000702" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1924 - ], - "idOclc": [ - "3737320" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Henslow, T. G. W. Garden improvement)" - }, - { - "type": "nypl:Bnumber", - "value": "13565054" - }, - { - "type": "nypl:Oclc", - "value": "3737320" - }, - { - "type": "bf:Lccn", - "value": "agr25000702" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539875" - } - ], - "updatedAt": 1711575937738, - "publicationStatement": [ - "London, Dean and son ltd.; New York, Brentano's 1924." - ], - "identifier": [ - "urn:shelfmark:VQG (Henslow, T. G. W. Garden improvement)", - "urn:bnum:13565054", - "urn:oclc:3737320", - "urn:lccn:agr25000702", - "urn:identifier:(WaOLN)nyp3539875" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1924" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Garden improvement, by T. Geoffrey W. Henslow." - ], - "uri": "b13565054", - "placeOfPublication": [ - "London, New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 17.890862, - "b13565054" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565054", - "_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:60", - "label": "pamphlets, singles, 1-50 pages" - } - ], - "catalogItemType_packed": [ - "catalogItemType:60||pamphlets, singles, 1-50 pages" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006563625" - ], - "identifier": [ - "urn:shelfmark:VQG (Henslow, T. G. W. Garden improvement)", - "urn:barcode:33433006563625" - ], - "identifierV2": [ - { - "value": "VQG (Henslow, T. G. W. Garden improvement)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006563625", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Henslow, T. G. W. Garden improvement)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Henslow, T. G. W. Garden improvement)" - ], - "shelfMark_sort": "aVQG (Henslow, T. G. W. Garden improvement)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708484" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13565214", - "_score": 17.890862, - "_source": { - "extent": [ - "xii, 307 p. front., plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardens" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Williams & Norgate" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1924 - ], - "title": [ - "The secrets of many gardens" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Martineau, A. V.-W. Secrets of many gardens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1924" - ], - "creatorLiteral": [ - "Martineau, Alice Vaughan-Williams." - ], - "idLccn": [ - "25000014" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1924 - ], - "idOclc": [ - "5300502" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Martineau, A. V.-W. Secrets of many gardens)" - }, - { - "type": "nypl:Bnumber", - "value": "13565214" - }, - { - "type": "nypl:Oclc", - "value": "5300502" - }, - { - "type": "bf:Lccn", - "value": "25000014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3540035" - } - ], - "updatedAt": 1711458652256, - "publicationStatement": [ - "London, Williams & Norgate, 1924." - ], - "identifier": [ - "urn:shelfmark:VQG (Martineau, A. V.-W. Secrets of many gardens)", - "urn:bnum:13565214", - "urn:oclc:5300502", - "urn:lccn:25000014", - "urn:identifier:(WaOLN)nyp3540035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1924" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardens." - ], - "titleDisplay": [ - "The secrets of many gardens, by Mrs. Philip Martineau." - ], - "uri": "b13565214", - "lccClassification": [ - "SB453 .M35" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 17.890862, - "b13565214" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13565214", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006666311" - ], - "identifier": [ - "urn:shelfmark:VQG (Martineau, A. V.-W. Secrets of many gardens)", - "urn:barcode:33433006666311" - ], - "identifierV2": [ - { - "value": "VQG (Martineau, A. V.-W. Secrets of many gardens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006666311", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Martineau, A. V.-W. Secrets of many gardens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Martineau, A. V.-W. Secrets of many gardens)" - ], - "shelfMark_sort": "aVQG (Martineau, A. V.-W. Secrets of many gardens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708651" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13566349", - "_score": 17.890862, - "_source": { - "extent": [ - "xi, 376 p. col. front., 53 pl. (5 col.)" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Floriculture" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Richards ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1911 - ], - "title": [ - "Popular garden flowers; anemones: asters: begonias: carnations: chrysanthemums: crocuses: daffodils: dahlias: geraniums: gladioli: hollyhocks: hyacinths: irises: lilies: pansies: phloxes: primulas: sweet peas: stocks: tulips: roses &c" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Wright, W. P. Popular garden flowers)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1911" - ], - "creatorLiteral": [ - "Wright, Walter Page, 1864-1940." - ], - "idLccn": [ - "agr11000633" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1911 - ], - "idOclc": [ - "6562636" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Wright, W. P. Popular garden flowers)" - }, - { - "type": "nypl:Bnumber", - "value": "13566349" - }, - { - "type": "nypl:Oclc", - "value": "6562636" - }, - { - "type": "bf:Lccn", - "value": "agr11000633" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3541148" - } - ], - "updatedAt": 1711657872006, - "publicationStatement": [ - "London, G. Richards ltd. [1911]" - ], - "identifier": [ - "urn:shelfmark:VQG (Wright, W. P. Popular garden flowers)", - "urn:bnum:13566349", - "urn:oclc:6562636", - "urn:lccn:agr11000633", - "urn:identifier:(WaOLN)nyp3541148" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1911" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Floriculture." - ], - "titleDisplay": [ - "Popular garden flowers; anemones: asters: begonias: carnations: chrysanthemums: crocuses: daffodils: dahlias: geraniums: gladioli: hollyhocks: hyacinths: irises: lilies: pansies: phloxes: primulas: sweet peas: stocks: tulips: roses &c, by Walter P. Wright." - ], - "uri": "b13566349", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 17.890862, - "b13566349" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13566349", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006668069" - ], - "identifier": [ - "urn:shelfmark:VQG (Wright, W. P. Popular garden flowers)", - "urn:barcode:33433006668069" - ], - "identifierV2": [ - { - "value": "VQG (Wright, W. P. Popular garden flowers)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006668069", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Wright, W. P. Popular garden flowers)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Wright, W. P. Popular garden flowers)" - ], - "shelfMark_sort": "aVQG (Wright, W. P. Popular garden flowers)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10709233" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564052", - "_score": 17.432762, - "_source": { - "extent": [ - "x, 333 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Macmillan" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1936 - ], - "title": [ - "Flower garden primer; or, Gardening without tears." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Cummins, J. H. Flower garden primer)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1936" - ], - "creatorLiteral": [ - "Cummins, Julia H." - ], - "idLccn": [ - "36027054" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1936 - ], - "idOclc": [ - "331212" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Cummins, J. H. Flower garden primer)" - }, - { - "type": "nypl:Bnumber", - "value": "13564052" - }, - { - "type": "nypl:Oclc", - "value": "331212" - }, - { - "type": "bf:Lccn", - "value": "36027054" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538876" - } - ], - "updatedAt": 1711334245563, - "publicationStatement": [ - "New York, Macmillan, 1936." - ], - "identifier": [ - "urn:shelfmark:VQG (Cummins, J. H. Flower garden primer)", - "urn:bnum:13564052", - "urn:oclc:331212", - "urn:lccn:36027054", - "urn:identifier:(WaOLN)nyp3538876" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1936" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening." - ], - "titleDisplay": [ - "Flower garden primer; or, Gardening without tears. Drawings by Bryan J. Lynch." - ], - "uri": "b13564052", - "lccClassification": [ - "SB453 .C8" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Gardening without tears." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 17.432762, - "b13564052" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564052", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006561793" - ], - "identifier": [ - "urn:shelfmark:VQG (Cummins, J. H. Flower garden primer)", - "urn:barcode:33433006561793" - ], - "identifierV2": [ - { - "value": "VQG (Cummins, J. H. Flower garden primer)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006561793", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Cummins, J. H. Flower garden primer)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Cummins, J. H. Flower garden primer)" - ], - "shelfMark_sort": "aVQG (Cummins, J. H. Flower garden primer)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707337" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564094", - "_score": 17.432762, - "_source": { - "extent": [ - "xii, 303 p., [16] leaves of plates ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Landscape gardening", - "Rock gardens" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "E. Arnold" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1913 - ], - "title": [ - "My rock-garden" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Farrer, R. J. My rock-garden)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1913" - ], - "creatorLiteral": [ - "Farrer, Reginald, 1880-1920." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1913 - ], - "idOclc": [ - "37860790" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Farrer, R. J. My rock-garden)" - }, - { - "type": "nypl:Bnumber", - "value": "13564094" - }, - { - "type": "nypl:Oclc", - "value": "37860790" - } - ], - "updatedAt": 1711655216147, - "publicationStatement": [ - "London : E. Arnold, 1913." - ], - "identifier": [ - "urn:shelfmark:VQG (Farrer, R. J. My rock-garden)", - "urn:bnum:13564094", - "urn:oclc:37860790" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1913" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Landscape gardening.", - "Rock gardens." - ], - "titleDisplay": [ - "My rock-garden / by Reginald Farrer." - ], - "uri": "b13564094", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 17.432762, - "b13564094" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564094", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562023" - ], - "identifier": [ - "urn:shelfmark:VQG (Farrer, R. J. My rock-garden)", - "urn:barcode:33433006562023" - ], - "identifierV2": [ - { - "value": "VQG (Farrer, R. J. My rock-garden)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562023", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Farrer, R. J. My rock-garden)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Farrer, R. J. My rock-garden)" - ], - "shelfMark_sort": "aVQG (Farrer, R. J. My rock-garden)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707386" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13564105", - "_score": 17.432762, - "_source": { - "extent": [ - "319, [1] p. incl. col. front., illus. (part col.)" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Flower gardening", - "Flowers", - "Flowers -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Macmillan company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1943 - ], - "title": [ - "Garden flowers in color" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VQG (Foley, D. J. Garden flowers in color)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1943" - ], - "creatorLiteral": [ - "Foley, Daniel J." - ], - "idLccn": [ - "43016282" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1943 - ], - "idOclc": [ - "296405" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Foley, D. J. Garden flowers in color)" - }, - { - "type": "nypl:Bnumber", - "value": "13564105" - }, - { - "type": "nypl:Oclc", - "value": "296405" - }, - { - "type": "bf:Lccn", - "value": "43016282" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3538929" - } - ], - "updatedAt": 1711575937738, - "publicationStatement": [ - "New York, The Macmillan company, 1943." - ], - "identifier": [ - "urn:shelfmark:VQG (Foley, D. J. Garden flowers in color)", - "urn:bnum:13564105", - "urn:oclc:296405", - "urn:lccn:43016282", - "urn:identifier:(WaOLN)nyp3538929" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1943" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Flower gardening.", - "Flowers.", - "Flowers -- Pictorial works." - ], - "titleDisplay": [ - "Garden flowers in color, by Daniel J. Foley ..." - ], - "uri": "b13564105", - "lccClassification": [ - "SB405 .F77" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 17.432762, - "b13564105" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13564105", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433006562106" - ], - "identifier": [ - "urn:shelfmark:VQG (Foley, D. J. Garden flowers in color)", - "urn:barcode:33433006562106" - ], - "identifierV2": [ - { - "value": "VQG (Foley, D. J. Garden flowers in color)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006562106", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VQG (Foley, D. J. Garden flowers in color)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VQG (Foley, D. J. Garden flowers in color)" - ], - "shelfMark_sort": "aVQG (Foley, D. J. Garden flowers in color)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10707398" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-7cc0c70c11effcdd76960546b9958640.json b/test/fixtures/query-89ea8fb70d6c1eaa88ba88106bc16832.json similarity index 99% rename from test/fixtures/query-7cc0c70c11effcdd76960546b9958640.json rename to test/fixtures/query-89ea8fb70d6c1eaa88ba88106bc16832.json index 282c1aff..0b6227a8 100644 --- a/test/fixtures/query-7cc0c70c11effcdd76960546b9958640.json +++ b/test/fixtures/query-89ea8fb70d6c1eaa88ba88106bc16832.json @@ -1,6 +1,6 @@ { "body": { - "took": 770, + "took": 482, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-5627033ee5089c2a4329559bc9a5ad08.json b/test/fixtures/query-8f2d9906e378d27c986cf8653bda6915.json similarity index 99% rename from test/fixtures/query-5627033ee5089c2a4329559bc9a5ad08.json rename to test/fixtures/query-8f2d9906e378d27c986cf8653bda6915.json index 37152da5..960d5b44 100644 --- a/test/fixtures/query-5627033ee5089c2a4329559bc9a5ad08.json +++ b/test/fixtures/query-8f2d9906e378d27c986cf8653bda6915.json @@ -1,6 +1,6 @@ { "body": { - "took": 895, + "took": 922, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json b/test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json deleted file mode 100644 index ab838543..00000000 --- a/test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json +++ /dev/null @@ -1,12204 +0,0 @@ -{ - "body": { - "took": 400, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 34, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_score": 847.3456, - "_source": { - "extent": [ - "1 score (3 unnumbered pages, 12 pages) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes by Jack Gottlieb.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Recorded by the Israel Philharmonic, the composer conducting, on Deutsche Grammophon 2532 052.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Also available in a version for symphonic band.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "publisherLiteral": [ - "Jalni Publications ; Boosey & Hawkes, sole selling agent" - ], - "dateEndString": [ - "1980" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A musical toast" - ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Hawkes pocket scores" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1808514" - }, - { - "type": "nypl:Oclc", - "value": "ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "H.P.S. 976 Boosey & Hawkes" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm11578466" - }, - { - "type": "bf:Identifier", - "value": "(NNC)1808514" - }, - { - "type": "bf:Identifier", - "value": "1808514" - } - ], - "idOclc": [ - "ocm11578466" - ], - "uniformTitle": [ - "Musical toast", - "Hawkes pocket scores." - ], - "dateEndYear": [ - 1980 - ], - "holdings": [], - "updatedAt": 1664590433971, - "publicationStatement": [ - "[Place of publication not identified] : Jalni Publications ; New York, N.Y. : Boosey & Hawkes, sole selling agent, 1984, ©1980." - ], - "identifier": [ - "urn:bnum:1808514", - "urn:oclc:ocm11578466", - "urn:undefined:H.P.S. 976 Boosey & Hawkes", - "urn:undefined:(OCoLC)ocm11578466", - "urn:undefined:(NNC)1808514", - "urn:undefined:1808514" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "cb1808514", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Place of publication not identified] : New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Musical toast" - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 847.3456, - "cb1808514" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb1808514", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci2278358", - "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": [ - "61 B458 M9" - ], - "identifierV2": [ - { - "value": "61 B458 M9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR61509485" - } - ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], - "idBarcode": [ - "MR61509485" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a61 B458 M000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_score": 846.5295, - "_source": { - "extent": [ - "xxi, 273 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Originally published ... by Charles Scribner's Sons ... in 1940\"--T.p. verso.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vintage Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1990 - ], - "dateEndString": [ - "1940" - ], - "title": [ - "Angels on toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JFD 90-6303" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1990" - ], - "creatorLiteral": [ - "Powell, Dawn." - ], - "idLccn": [ - "89040281" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1990 - ], - "idOclc": [ - "70304237", - "NYPG90-B53168" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 90-6303" - }, - { - "type": "nypl:Bnumber", - "value": "11294632" - }, - { - "type": "bf:Isbn", - "value": "0679726861" - }, - { - "type": "nypl:Oclc", - "value": "70304237" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B53168" - }, - { - "type": "bf:Lccn", - "value": "89040281" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1302350" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)70304237" - } - ], - "dateEndYear": [ - 1940 - ], - "updatedAt": 1711585322970, - "publicationStatement": [ - "New York : Vintage Books, 1990, c1940." - ], - "idIsbn": [ - "0679726861" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:bnum:11294632", - "urn:isbn:0679726861", - "urn:oclc:70304237", - "urn:oclc:NYPG90-B53168", - "urn:lccn:89040281", - "urn:identifier:(WaOLN)nyp1302350", - "urn:identifier:(OCoLC)70304237" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Angels on toast / Dawn Powell ; with an introduction by Gore Vidal." - ], - "uri": "b11294632", - "lccClassification": [ - "PS3531.O936 A83 1989" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ], - "idIsbn_clean": [ - "0679726861" - ] - }, - "sort": [ - 846.5295, - "b11294632" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11294632", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433040606604" - ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" - ], - "identifierV2": [ - { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" - }, - { - "value": "33433040606604", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFD 90-6303" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 90-6303" - ], - "shelfMark_sort": "aJFD 90-006303", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10981311", - "_score": 844.5295, - "_source": { - "extent": [ - "1 miniature score (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Pl. no.: H.P.S. 976.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Fondly dedicated to the memory of André Kostelanetz.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jalni Publications : Boosey & Hawkes, sole selling agent" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1984 - ], - "dateEndString": [ - "1980" - ], - "title": [ - "A musical toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "JNF 87-27" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1984" - ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kostelanetz, Andre, 1901-1980." - ], - "dateStartYear": [ - 1984 - ], - "idOclc": [ - "11578466", - "NYPG85-C1260" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNF 87-27" - }, - { - "type": "nypl:Bnumber", - "value": "10981311" - }, - { - "type": "nypl:Oclc", - "value": "11578466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG85-C1260" - }, - { - "type": "bf:Identifier", - "value": "HPS 976. Boosey & Hawkes" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0988546" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11578466" - } - ], - "dateEndYear": [ - 1980 - ], - "updatedAt": 1711307724968, - "publicationStatement": [ - "[United States] : Jalni Publications : Boosey & Hawkes, sole selling agent, 1984, c1980." - ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:bnum:10981311", - "urn:oclc:11578466", - "urn:oclc:NYPG85-C1260", - "urn:identifier:HPS 976. Boosey & Hawkes", - "urn:identifier:(WaOLN)nyp0988546", - "urn:identifier:(OCoLC)11578466" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "b10981311", - "placeOfPublication": [ - "[United States]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 844.5295, - "b10981311" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10981311", - "_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:57", - "label": "printed music limited circ MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:57||printed music limited circ MaRLI" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "idBarcode": [ - "33433047232982" - ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:barcode:33433047232982" - ], - "identifierV2": [ - { - "value": "JNF 87-27", - "type": "bf:ShelfMark" - }, - { - "value": "33433047232982", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "physicalLocation": [ - "JNF 87-27" - ], - "recapCustomerCode": [ - "NP" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JNF 87-27" - ], - "shelfMark_sort": "aJNF 87-000027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13956002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_score": 750.54047, - "_source": { - "extent": [ - "v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Nation Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1909 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Verse and toast. Series 1-" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Rowe, William H., Jr." - ], - "idLccn": [ - "09014147" - ], - "numElectronicResources": [ - 2 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "12310878" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NBI (Rowe, W. H. Verse and toast)" - }, - { - "type": "nypl:Bnumber", - "value": "13111567" - }, - { - "type": "nypl:Oclc", - "value": "12310878" - }, - { - "type": "bf:Lccn", - "value": "09014147" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3090092" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711009811615, - "publicationStatement": [ - "New York, The Nation Press, 1909-" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast)", - "urn:bnum:13111567", - "urn:oclc:12310878", - "urn:lccn:09014147", - "urn:identifier:(WaOLN)nyp3090092" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Verse and toast. Series 1- By Col. William H. Rowe, Jr." - ], - "uri": "b13111567", - "electronicResources": [ - { - "label": "Full text available via HathiTrust--ser. 1", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644091" - }, - { - "label": "Full text available via HathiTrust--ser. 2", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" - } - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 750.54047, - "b13111567" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_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" - ], - "enumerationChronology": [ - "ser. 2" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433066644109" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", - "urn:barcode:33433066644109" - ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) ser. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644109", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) ser. 2" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16815166" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13111567", - "_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:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "enumerationChronology": [ - "ser. 1" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433066644091" - ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "urn:barcode:33433066644091" - ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644091", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16257903" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b18106748", - "_score": 647.88916, - "_source": { - "extent": [ - "24 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A publication commemorating the bicentennial of the evacuation of the British from New York City on November 25, 1783, ...\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "The research and implementation of this project ... with the assistance of the Sons of the Revolution in the State of New York.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "\"Selected bibliography\": p. 24.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Evacuation Day, New York, N.Y., 1783", - "Evacuation Day, New York, N.Y., 1783 -- Anniversaries, etc", - "New York (N.Y.)", - "New York (N.Y.) -- History", - "New York (N.Y.) -- History -- Revolution, 1775-1783" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fraunces Tavern Museum" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1984 - ], - "title": [ - "A Toast to freedom : New York celebrates Evacuation Day." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NYGB N.Y. L M314.43 F73" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1984" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Fraunces Tavern Museum.", - "Sons of the American Revolution. New York State Society.", - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1984 - ], - "donor": [ - "Gift of the New York Genealogical and Biographical Society." - ], - "idOclc": [ - "15527116" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NYGB N.Y. L M314.43 F73" - }, - { - "type": "nypl:Bnumber", - "value": "18106748" - }, - { - "type": "nypl:Oclc", - "value": "15527116" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)15527116" - } - ], - "updatedAt": 1711602363339, - "publicationStatement": [ - "New York : Fraunces Tavern Museum, 1984." - ], - "identifier": [ - "urn:shelfmark:NYGB N.Y. L M314.43 F73", - "urn:bnum:18106748", - "urn:oclc:15527116", - "urn:identifier:(OCoLC)15527116" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Evacuation Day, New York, N.Y., 1783 -- Anniversaries, etc.", - "New York (N.Y.) -- History -- Revolution, 1775-1783." - ], - "titleDisplay": [ - "A Toast to freedom : New York celebrates Evacuation Day." - ], - "uri": "b18106748", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 647.88916, - "b18106748" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b18106748", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433086370503" - ], - "identifier": [ - "urn:shelfmark:NYGB N.Y. L M314.43 F73", - "urn:barcode:33433086370503" - ], - "identifierV2": [ - { - "value": "NYGB N.Y. L M314.43 F73", - "type": "bf:ShelfMark" - }, - { - "value": "33433086370503", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NYGB N.Y. L M314.43 F73" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB N.Y. L M314.43 F73" - ], - "shelfMark_sort": "aNYGB N.Y. L M314.43 F000073", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24199542" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10861042", - "_score": 645.20856, - "_source": { - "extent": [ - "24 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A publication commemorating the bicentennial of the evacuation of the British from New York City on November 25, 1783, at the end of the Revolutionary War.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 24.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Evacuation Day, New York, N.Y., 1783", - "New York (N.Y.)", - "New York (N.Y.) -- History", - "New York (N.Y.) -- History -- Revolution, 1775-1783" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fraunces Tavern Museum" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1984 - ], - "title": [ - "A toast to freedom New York celebrates Evacuation Day." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*ZI-437 no. 20" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1984" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Fraunces Tavern Museum.", - "Sons of the American Revolution. Empire State Society." - ], - "dateStartYear": [ - 1984 - ], - "idOclc": [ - "NYPG84-B40685" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZI-437 no. 20" - }, - { - "type": "nypl:Bnumber", - "value": "10861042" - }, - { - "type": "nypl:Oclc", - "value": "NYPG84-B40685" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0868084" - } - ], - "updatedAt": 1711309976175, - "publicationStatement": [ - "New York : Fraunces Tavern Museum, 1984." - ], - "identifier": [ - "urn:shelfmark:*ZI-437 no. 20", - "urn:bnum:10861042", - "urn:oclc:NYPG84-B40685", - "urn:identifier:(WaOLN)nyp0868084" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Evacuation Day, New York, N.Y., 1783.", - "New York (N.Y.) -- History -- Revolution, 1775-1783." - ], - "titleDisplay": [ - "A toast to freedom [microform] : New York celebrates Evacuation Day." - ], - "uri": "b10861042", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 645.20856, - "b10861042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10861042", - "_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:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "enumerationChronology": [ - "r. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433110534520" - ], - "identifier": [ - "urn:shelfmark:*ZI-437 r. 2", - "urn:barcode:33433110534520" - ], - "identifierV2": [ - { - "value": "*ZI-437 r. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433110534520", - "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": [ - "*ZI-437" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZI-437 r. 2" - ], - "shelfMark_sort": "a*ZI-437 r. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i31168756" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10861042", - "_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:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "enumerationChronology": [ - "r. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433110534512" - ], - "identifier": [ - "urn:shelfmark:*ZI-437 r. 1", - "urn:barcode:33433110534512" - ], - "identifierV2": [ - { - "value": "*ZI-437 r. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433110534512", - "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": [ - "*ZI-437" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZI-437 r. 1" - ], - "shelfMark_sort": "a*ZI-437 r. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i24076491" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12382054", - "_score": 643.20856, - "_source": { - "extent": [ - "no." - ], - "note": [ - { - "noteType": "Issued By", - "label": "Name of institute: <1907-1911>, Institute of Chemistry of Great Britain and Ireland.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 1 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Anniversary dinner. [Program of toasts, company present, speeches]." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner)" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "999" - ], - "creatorLiteral": [ - "Royal Institute of Chemistry." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "33915019" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner)" - }, - { - "type": "nypl:Bnumber", - "value": "12382054" - }, - { - "type": "nypl:Oclc", - "value": "33915019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2367407" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711307100817, - "publicationStatement": [ - "London. 1" - ], - "identifier": [ - "urn:shelfmark:3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner)", - "urn:bnum:12382054", - "urn:oclc:33915019", - "urn:identifier:(WaOLN)nyp2367407" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Anniversary dinner. [Program of toasts, company present, speeches]." - ], - "uri": "b12382054", - "placeOfPublication": [ - "London." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "8vo" - ] - }, - "sort": [ - 643.20856, - "b12382054" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12382054", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:29", - "label": "bundled materials (vols.)" - } - ], - "catalogItemType_packed": [ - "catalogItemType:29||bundled materials (vols.)" - ], - "dateRange": [ - { - "gte": "1907", - "lte": "1911" - } - ], - "enumerationChronology": [ - "no. 30 (1907), 34 (1911)" - ], - "enumerationChronology_sort": [ - " 30-1907" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433116627567" - ], - "identifier": [ - "urn:shelfmark:3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner) no. 30 (1907), 34 (1911)", - "urn:barcode:33433116627567" - ], - "identifierV2": [ - { - "value": "3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner) no. 30 (1907), 34 (1911)", - "type": "bf:ShelfMark" - }, - { - "value": "33433116627567", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner) no. 30 (1907), 34 (1911)" - ], - "shelfMark_sort": "a3-PKA (Royal Institute of Chemistry of Great Britain and Ireland. Anniversary dinner) no. 000030 (1907), 34 (1911)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i32210654" - }, - "sort": [ - " 30-1907" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990084815100203941", - "_score": 434.5292, - "_source": { - "extent": [ - "301 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally published: New York : Rohde and Haskins, 1904.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Toasts" - ], - "publisherLiteral": [ - "Omnigraphics," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1904" - ], - "createdYear": [ - 2000 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toasts and tributes : a happy book of good cheer, good health, good speed, devoted to the blessings and comforts of life south of the stars / edited by Arthur Gray." - ], - "createdString": [ - "2000" - ], - "idLccn": [ - "^^^99015291^" - ], - "contributorLiteral": [ - "Gray, Arthur." - ], - "dateStartYear": [ - 2000 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990084815100203941" - }, - { - "type": "bf:Isbn", - "value": "0780803051 (alk. paper)" - }, - { - "type": "bf:Lccn", - "value": "^^^99015291^" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)41156324" - } - ], - "dateEndYear": [ - 1904 - ], - "holdings": [], - "updatedAt": 1633058711066, - "publicationStatement": [ - "Detroit : Omnigraphics, 2000." - ], - "identifier": [ - "urn:bnum:990084815100203941", - "urn:isbn:0780803051 (alk. paper)", - "urn:lccn:^^^99015291^", - "urn:undefined:(OCoLC)41156324" - ], - "idIsbn": [ - "0780803051 (alk. paper)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2000" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts." - ], - "titleDisplay": [ - "Toasts and tributes : a happy book of good cheer, good health, good speed, devoted to the blessings and comforts of life south of the stars / edited by Arthur Gray." - ], - "uri": "hb990084815100203941", - "lccClassification": [ - "PN6341 .T62 1999" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Detroit :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 434.5292, - "hb990084815100203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990084815100203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232058938590003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PN6341 .T62 2000x" - ], - "identifierV2": [ - { - "value": "PN6341 .T62 2000x", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HXURI9" - } - ], - "physicalLocation": [ - "PN6341 .T62 2000x" - ], - "identifier": [ - "urn:barcode:HXURI9" - ], - "idBarcode": [ - "HXURI9" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPN6341 .T62 2000x" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990002994230203941", - "_score": 423.19406, - "_source": { - "extent": [ - "xi, 105 p., [1] folded leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 103-105.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Fur trade", - "Fur trade -- Northwestern States", - "Fur trade -- Northwest, Canadian", - "Material culture", - "Material culture -- Northwestern States", - "Material culture -- Northwest, Canadian", - "Northwestern States", - "Northwestern States -- Antiquities", - "Northwest, Canadian", - "Northwest, Canadian -- Antiquities" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wheeler Productions" - ], - "description": [ - "Includes an introduction to the fur trade, many illustrations of artifacts, sections on fur trade accidents, food and drink, and a listing of fur trade sites in Canada and the United States." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A toast to the fur trade : a picture essay on its material culture / by Robert C. Wheeler ; illustrations by David Christofferson ; edited by Ardis Hillman Wheeler." - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wheeler, Robert C., 1913-1986" - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "^^^84091414^" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Wheeler, Ardis Hillman" - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990002994230203941" - }, - { - "type": "bf:Isbn", - "value": "0961436212 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "0961436204 (hard)" - }, - { - "type": "bf:Lccn", - "value": "^^^84091414^" - }, - { - "type": "nypl:Oclc", - "value": "12314723" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-10060378" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12314723" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12272687 (OCoLC)12282112 (OCoLC)12282122 (OCoLC)12321773 (OCoLC)28021603 (OCoLC)1298901854" - } - ], - "idOclc": [ - "12314723", - "SCSB-10060378" - ], - "holdings": [], - "updatedAt": 1677462999158, - "publicationStatement": [ - "St. Paul, MN : Wheeler Productions, c1985." - ], - "identifier": [ - "urn:bnum:990002994230203941", - "urn:isbn:0961436212 (pbk.)", - "urn:isbn:0961436204 (hard)", - "urn:lccn:^^^84091414^", - "urn:oclc:12314723", - "urn:oclc:SCSB-10060378", - "urn:undefined:(OCoLC)12314723", - "urn:undefined:(OCoLC)12272687 (OCoLC)12282112 (OCoLC)12282122 (OCoLC)12321773 (OCoLC)28021603 (OCoLC)1298901854" - ], - "idIsbn": [ - "0961436212 (pbk.)", - "0961436204 (hard)" - ], - "genreForm": [ - "History" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Fur trade -- Northwestern States.", - "Fur trade -- Northwest, Canadian", - "Material culture -- Northwestern States.", - "Material culture -- Northwest, Canadian.", - "Northwestern States -- Antiquities.", - "Northwest, Canadian -- Antiquities." - ], - "titleDisplay": [ - "A toast to the fur trade : a picture essay on its material culture / by Robert C. Wheeler ; illustrations by David Christofferson ; edited by Ardis Hillman Wheeler." - ], - "uri": "hb990002994230203941", - "lccClassification": [ - "F597 .W57 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "St. Paul, MN" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0961436212", - "0961436204" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 423.19406, - "hb990002994230203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990002994230203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi231754796330003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "N.A.ARC. W 565 t" - ], - "identifierV2": [ - { - "value": "N.A.ARC. W 565 t", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "32044042656827" - } - ], - "physicalLocation": [ - "N.A.ARC. W 565 t" - ], - "recapCustomerCode": [ - "TZ" - ], - "identifier": [ - "urn:barcode:32044042656827" - ], - "idBarcode": [ - "32044042656827" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aN.A.ARC. W 565 t" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb1677200", - "_score": 383.29346, - "_source": { - "extent": [ - "193, vi pages ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally published: Chicago : Nakł. i drukiem Władysława Dyniewicza, 1896.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Toasts -- Poland" - ], - "publisherLiteral": [ - "Oficyna Wydawn. Kalliope" - ], - "language": [ - { - "id": "lang:pol", - "label": "Polish" - } - ], - "dateEndString": [ - "1896" - ], - "createdYear": [ - 1994 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Toast polski wierszem i prozą, czyli, Zbiór mów przy uroczystościach wszelkiego rodzaju : jako to, przy weselach, ważniejszych zebraniach, przy obchodach zebraniach, przy obchodach jubileuszowych itd." - ], - "createdString": [ - "1994" - ], - "idLccn": [ - " 95124368 " - ], - "dateStartYear": [ - 1994 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1677200" - }, - { - "type": "bf:Isbn", - "value": "8385549323 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "8385549331(hardcover)" - }, - { - "type": "bf:Lccn", - "value": " 95124368 " - }, - { - "type": "nypl:Oclc", - "value": "ocm34576390" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm34576390" - }, - { - "type": "bf:Identifier", - "value": "1677200" - } - ], - "idOclc": [ - "ocm34576390" - ], - "dateEndYear": [ - 1896 - ], - "holdings": [], - "updatedAt": 1654826078096, - "publicationStatement": [ - "Warszawa : Oficyna Wydawn. Kalliope, 1994." - ], - "identifier": [ - "urn:bnum:1677200", - "urn:isbn:8385549323 (pbk.)", - "urn:isbn:8385549331(hardcover)", - "urn:lccn: 95124368 ", - "urn:oclc:ocm34576390", - "urn:undefined:(OCoLC)ocm34576390", - "urn:undefined:1677200" - ], - "idIsbn": [ - "8385549323 (pbk.)", - "8385549331(hardcover)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts -- Poland." - ], - "titleDisplay": [ - "Toast polski wierszem i prozą, czyli, Zbiór mów przy uroczystościach wszelkiego rodzaju : jako to, przy weselach, ważniejszych zebraniach, przy obchodach zebraniach, przy obchodach jubileuszowych itd." - ], - "uri": "cb1677200", - "lccClassification": [ - "PN6347.P6 T63 1994" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Warszawa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Zbiór mów przy uroczystościach wszelkiego rodzaju" - ], - "idIsbn_clean": [ - "8385549323", - "8385549331" - ], - "dimensions": [ - "17 cm" - ] - }, - "sort": [ - 383.29346, - "cb1677200" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb1677200", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci2131706", - "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": [ - "PN6347.P6 T63 1994" - ], - "identifierV2": [ - { - "value": "PN6347.P6 T63 1994", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU63297698" - } - ], - "physicalLocation": [ - "PN6347.P6 T63 1994" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU63297698" - ], - "idBarcode": [ - "CU63297698" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aPN6347.P6 T63 001994" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990060887580203941", - "_score": 27.179132, - "_source": { - "extent": [ - "48 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Serbo-Croatian (Cyrillic).", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Toasts", - "Toasts -- Yugoslavia", - "Yugoslavia", - "Yugoslavia -- Social life and customs" - ], - "publisherLiteral": [ - "Hipnos : Velvet," - ], - "language": [ - { - "id": "lang:srp", - "label": "Serbian" - } - ], - "dateEndString": [ - "1933" - ], - "createdYear": [ - 1995 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srpska slavarica i narodne zdravice / [urednik Vladimir Maksimović]." - ], - "createdString": [ - "1995" - ], - "contributorLiteral": [ - "Maksimović, Vladimir." - ], - "dateStartYear": [ - 1995 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990060887580203941" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)35797336" - } - ], - "dateEndYear": [ - 1933 - ], - "holdings": [], - "updatedAt": 1631549990777, - "publicationStatement": [ - "Beograd : Hipnos : Velvet, 1995." - ], - "identifier": [ - "urn:bnum:990060887580203941", - "urn:undefined:(OCoLC)35797336" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1995" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Toasts -- Yugoslavia.", - "Yugoslavia -- Social life and customs." - ], - "titleDisplay": [ - "Srpska slavarica i narodne zdravice / [urednik Vladimir Maksimović]." - ], - "uri": "hb990060887580203941", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beograd :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 27.179132, - "hb990060887580203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990060887580203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi231972533450003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "identifier": [ - "urn:barcode:HN9W6Y" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "HN9W6Y" - } - ], - "idBarcode": [ - "HN9W6Y" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [], - "shelfMark_sort": "bhi231972533450003941" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11487687", - "_score": 17.103212, - "_source": { - "extent": [ - "<4> photoprints : silver gelatin, b&w ;", - "<1> photoprint : silver gelatin, b&w ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title devised by cataloger.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Photographers include Talbot, R.D. Jones and James Campbell.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "One photograph has airbrush marks; one has been cropped; one has been inscribed.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Forms part of the Portrait Collection.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Mitchell, Abbie, 1884-1960", - "African American singers", - "African American actresses", - "Women singers", - "Women singers -- United States", - "Toasting", - "Toasting -- 1950-1959", - "African Americans", - "African Americans -- Social life and customs", - "African Americans -- Social life and customs -- 1950-1959" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "Views of singer, actress and the wife of composer Will Marion Cook, Abbie Mitchell. Includes individual studio portraits and a group portrait in which Mitchell is being toasted by unidentified individuals. Half and three-quarter length views are included." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1900 - ], - "dateEndString": [ - "1986" - ], - "title": [ - "Abbie Mitchell portrait collection" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc Photo Mitchell, Abbie" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1900" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Talbot.", - "Campbell, James C.", - "Jones, R. D." - ], - "dateStartYear": [ - 1900 - ], - "donor": [ - "Schomburg NEH Automated Access to Special Collections Project." - ], - "idOclc": [ - "NYPG085000870-F" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Photo Mitchell, Abbie" - }, - { - "type": "nypl:Bnumber", - "value": "11487687" - }, - { - "type": "nypl:Oclc", - "value": "NYPG085000870-F" - }, - { - "type": "bf:Identifier", - "value": "(NN-Sc)08500870" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1495972" - } - ], - "dateEndYear": [ - 1986 - ], - "updatedAt": 1712854298116, - "publicationStatement": [ - "<1900?-1986?>" - ], - "genreForm": [ - "Portrait photographs – 1900-1959.", - "Group portraits – 1950-1959.", - "Silver gelatin photoprints – 1900-1959." - ], - "identifier": [ - "urn:shelfmark:Sc Photo Mitchell, Abbie", - "urn:bnum:11487687", - "urn:oclc:NYPG085000870-F", - "urn:identifier:(NN-Sc)08500870", - "urn:identifier:(WaOLN)nyp1495972" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:img", - "label": "Still image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Mitchell, Abbie, 1884-1960.", - "African American singers.", - "African American actresses.", - "Women singers -- United States.", - "Toasting -- 1950-1959.", - "African Americans -- Social life and customs -- 1950-1959." - ], - "titleDisplay": [ - "Abbie Mitchell portrait collection [graphic]." - ], - "uri": "b11487687", - "issuance": [ - { - "id": "urn:biblevel:d", - "label": "subunit" - } - ], - "dimensions": [ - "26 x 21 cm. or smaller.", - "21 x 26 cm." - ] - }, - "sort": [ - 17.103212, - "b11487687" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11487687", - "_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:15", - "label": "flat graphic" - } - ], - "catalogItemType_packed": [ - "catalogItemType:15||flat graphic" - ], - "formatLiteral": [ - "Still image" - ], - "holdingLocation": [ - { - "id": "loc:scee2", - "label": "Schomburg Center - Photographs & Prints" - } - ], - "holdingLocation_packed": [ - "loc:scee2||Schomburg Center - Photographs & Prints" - ], - "idBarcode": [ - "33433077473407" - ], - "identifier": [ - "urn:shelfmark:Sc Photo Mitchell, Abbie", - "urn:barcode:33433077473407" - ], - "identifierV2": [ - { - "value": "Sc Photo Mitchell, Abbie", - "type": "bf:ShelfMark" - }, - { - "value": "33433077473407", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1118", - "label": "Schomburg Center for Research in Black Culture, Photographs and Prints Division" - } - ], - "owner_packed": [ - "orgs:1118||Schomburg Center for Research in Black Culture, Photographs and Prints Division" - ], - "physicalLocation": [ - "Sc Photo Mitchell, Abbie" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Sc Photo Mitchell, Abbie" - ], - "shelfMark_sort": "aSc Photo Mitchell, Abbie", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16734535", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Photo+Mitchell%2C+Abbie&Date=1900&Form=30&Genre=flat+graphic&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11487687&ItemISxN=i167345357&ItemNumber=33433077473407&ItemPublisher=%3C1900%3F-1986%3F%3E&Location=Schomburg+Center+Photographs+and+Prints&ReferenceNumber=b114876873&Site=SCHPP&Title=Abbie+Mitchell+portrait+collection" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990093581870203941", - "_score": 14.74728, - "_source": { - "extent": [ - "xvi, 244 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 235-237) and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Poetry", - "American poetry", - "American poetry -- African American authors", - "Folk poetry, American", - "Narrative poetry, American", - "Oral tradition", - "Oral tradition -- United States", - "Toasts (African American folk poetry)" - ], - "publisherLiteral": [ - "Routledge," - ], - "description": [ - "\"Originally published in 1974, this work is considered one of the great collections of black literature and folk poetry known as \"toasts\" - probably the only living form of oral narrative poetry in the U.S. which represent a vital genre of black folklore. Includes an audio CD\"--Amazon.com description." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1974" - ], - "createdYear": [ - 2004 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Get your ass in the water and swim like me : African American narrative poetry from oral tradition / [compiled by] Bruce Jackson." - ], - "createdString": [ - "2004" - ], - "idLccn": [ - "^^2006295647" - ], - "contributorLiteral": [ - "Jackson, Bruce, 1936-" - ], - "dateStartYear": [ - 2004 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990093581870203941" - }, - { - "type": "bf:Isbn", - "value": "0415969964" - }, - { - "type": "bf:Isbn", - "value": "0415969972 (pbk.)" - }, - { - "type": "bf:Lccn", - "value": "^^2006295647" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1243869189" - } - ], - "dateEndYear": [ - 1974 - ], - "holdings": [], - "updatedAt": 1634179577715, - "publicationStatement": [ - "New York : Routledge, c2004." - ], - "identifier": [ - "urn:bnum:990093581870203941", - "urn:isbn:0415969964", - "urn:isbn:0415969972 (pbk.)", - "urn:lccn:^^2006295647", - "urn:undefined:(OCoLC)1243869189" - ], - "idIsbn": [ - "0415969964", - "0415969972 (pbk.)" - ], - "genreForm": [ - "Anthologie.", - "Folk poetry", - "Folk poetry.", - "Poetry" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2004" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Poetry.", - "American poetry -- African American authors.", - "Folk poetry, American.", - "Narrative poetry, American.", - "Oral tradition -- United States.", - "Toasts (African American folk poetry)" - ], - "titleDisplay": [ - "Get your ass in the water and swim like me : African American narrative poetry from oral tradition / [compiled by] Bruce Jackson." - ], - "uri": "hb990093581870203941", - "lccClassification": [ - "PS477.5.T6 J3 2004" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "African American narrative poetry from oral tradition" - ], - "tableOfContents": [ - "Telling and learning toasts -- Functions and themes: violence, sex, and the failure of romance -- Pimps and their ladies: insult and reputation -- Badman and trickster: functional outsiders -- Shine and the Titanic: goodbye to Charlie -- Beyond poetry -- Badmen, crime, and jail -- Pimps, whores, and other lovers and friends -- Freaks and supersex -- Signifying and poolshooting monkey -- The Titanic toasts -- Miscellaneous narratives -- Short versus and drinking toasts." - ], - "dimensions": [ - "24 cm. +" - ] - }, - "sort": [ - 14.74728, - "hb990093581870203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990093581870203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232090588840003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PS477.5.T6 J3 2004 +disc" - ], - "identifierV2": [ - { - "value": "PS477.5.T6 J3 2004 +disc", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HXN3HY" - } - ], - "physicalLocation": [ - "PS477.5.T6 J3 2004" - ], - "enumerationChronology": [ - "+disc" - ], - "identifier": [ - "urn:barcode:HXN3HY" - ], - "idBarcode": [ - "HXN3HY" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aPS477.5.T6 J3 2004 +disc" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b17948355", - "_score": 13.784205, - "_source": { - "extent": [ - "1 videodisc (130 min.) : sound, color ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Adaptation of the play by David Storey.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Videodisc release of the 1975 British motion picture by American Film Theatre.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Special features: interview with Alan Bates; interview with David Storey; \"David Storey and In celebration\" an essay by Michael Feingold; AFT Cinebill; stills gallery; AFT scrapbook.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Executive producer, Otto Plaschkes.", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Alan Bates, James Bolam, Brian Cox, Constance Chapman, Gabrielle Daye, Bill Owen.", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "MPAA rating: PG.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "DVD, NTSC, Region 1; letterboxed (1.85:1); monaural.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Storey, David, 1933-2017", - "Storey, David, 1933-2017 -- Film adaptations", - "1900-1999", - "Working class families", - "Working class families -- England", - "Working class families -- England -- Yorkshire", - "Working class families -- England -- Yorkshire -- Drama", - "Families", - "Families -- England", - "Families -- England -- Yorkshire", - "Families -- England -- Yorkshire -- Drama", - "Brothers", - "Brothers -- England", - "Brothers -- England -- Yorkshire", - "Brothers -- England -- Yorkshire -- Drama", - "Manners and customs", - "Yorkshire (England)", - "Yorkshire (England) -- Social life and customs", - "Yorkshire (England) -- Social life and customs -- 20th century", - "Yorkshire (England) -- Social life and customs -- 20th century -- Drama", - "England", - "England -- Social life and customs", - "England -- Social life and customs -- 20th century", - "England -- Social life and customs -- 20th century -- Drama", - "England -- Yorkshire" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kino on Video" - ], - "description": [ - "Three sons return to the primitive Yorkshire mining town of their birth to celebrate their parents' fortieth wedding anniversary. During the celebration, their submerged hatreds and fears emerge from behind their model blue collar family facade." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2003 - ], - "dateEndString": [ - "1975" - ], - "title": [ - "In celebration" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NCOX 2003" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2003" - ], - "idLccn": [ - "738329029029" - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "American film theatre collection ; 2" - ], - "contributorLiteral": [ - "Landau, Ely", - "Storey, David, 1933-2017.", - "Bates, Alan, 1934-2003", - "Cox, Brian, 1946-", - "Anderson, Lindsay, 1923-1994", - "Bolam, James, 1935-", - "Chapman, Constance, 1912-2003", - "Daye, Gabrielle, 1911-2005", - "Owen, Bill, 1914-1999", - "Ely Landau Organization.", - "Cinevision (Firm)", - "American Film Theatre.", - "Kino International Corporation." - ], - "dateStartYear": [ - 2003 - ], - "idOclc": [ - "52778462" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NCOX 2003" - }, - { - "type": "nypl:Bnumber", - "value": "17948355" - }, - { - "type": "nypl:Oclc", - "value": "52778462" - }, - { - "type": "bf:Lccn", - "value": "738329029029" - }, - { - "type": "bf:Identifier", - "value": "K290 DVD Kino on Video" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)52778462" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)178797157 (OCoLC)671677241 (OCoLC)964418821 (OCoLC)980803395 (OCoLC)1006448934 (OCoLC)1020435485 (OCoLC)1037244606 (OCoLC)1043512195 (OCoLC)1050157347 (OCoLC)1059484844 (OCoLC)1066125835 (OCoLC)1104896887" - } - ], - "uniformTitle": [ - "American film theatre. Collection 2." - ], - "dateEndYear": [ - 1975 - ], - "updatedAt": 1711592760815, - "publicationStatement": [ - "New York, NY : Kino on Video, [2003]" - ], - "genreForm": [ - "Feature films.", - "Biographical films.", - "Drama.", - "Film adaptations." - ], - "identifier": [ - "urn:shelfmark:NCOX 2003", - "urn:bnum:17948355", - "urn:oclc:52778462", - "urn:lccn:738329029029", - "urn:identifier:K290 DVD Kino on Video", - "urn:identifier:(OCoLC)52778462", - "urn:identifier:(OCoLC)178797157 (OCoLC)671677241 (OCoLC)964418821 (OCoLC)980803395 (OCoLC)1006448934 (OCoLC)1020435485 (OCoLC)1037244606 (OCoLC)1043512195 (OCoLC)1050157347 (OCoLC)1059484844 (OCoLC)1066125835 (OCoLC)1104896887" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:mov", - "label": "Moving image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2003" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Storey, David, 1933-2017 -- Film adaptations.", - "Storey, David, 1933-2017", - "1900-1999", - "Working class families -- England -- Yorkshire -- Drama.", - "Families -- England -- Yorkshire -- Drama.", - "Brothers -- England -- Yorkshire -- Drama.", - "Brothers.", - "Families.", - "Manners and customs.", - "Working class families.", - "Yorkshire (England) -- Social life and customs -- 20th century -- Drama.", - "England -- Social life and customs -- 20th century -- Drama.", - "England.", - "England -- Yorkshire." - ], - "titleDisplay": [ - "In celebration / the Ely Landau Organization, Inc. and Cinevision Ltée present The American Film Theatre ; produced by Ely Landau ; directed by Lindsay Anderson ; written by David Storey." - ], - "uri": "b17948355", - "lccClassification": [ - "PN1997 .I475 2003" - ], - "electronicResources": [ - { - "label": "Connect to IMDb information for this film", - "url": "http://www.imdb.com/title/tt0073158/" - } - ], - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "David Storey's In celebration" - ], - "tableOfContents": [ - "\"Hello Dad!\" \"Hello Mom!\" \"How does it feel to be home?\" Human hygiene \"Not my cup of tea\" Memories The truth A toast \"Family analysis\" \"What's going on?\" Andrew's vengeance \"We all have our problems\" Choices." - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 13.784205, - "b17948355" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b17948355", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:24", - "label": "archival video recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:24||archival video recording" - ], - "formatLiteral": [ - "Moving image" - ], - "holdingLocation": [ - { - "id": "loc:paf28", - "label": "Performing Arts Research Collections - TOFT" - } - ], - "holdingLocation_packed": [ - "loc:paf28||Performing Arts Research Collections - TOFT" - ], - "idBarcode": [ - "33433063602100" - ], - "identifier": [ - "urn:shelfmark:NCOX 2003", - "urn:barcode:33433063602100" - ], - "identifierV2": [ - { - "value": "NCOX 2003", - "type": "bf:ShelfMark" - }, - { - "value": "33433063602100", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "NCOX 2003" - ], - "requestable": [ - false - ], - "shelfMark": [ - "NCOX 2003" - ], - "shelfMark_sort": "aNCOX 002003", - "status": [ - { - "id": "status:o", - "label": "Use in library" - } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i31588702", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=NCOX+2003&Date=2003&Form=30&Genre=archival+video+recording&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17948355&ItemISxN=i315887023&ItemNumber=33433063602100&ItemPlace=New+York%2C+NY&ItemPublisher=Kino+on+Video&Location=Performing+Arts+Theatre+on+Film+and+Tape+Archive&ReferenceNumber=b179483559&Site=LPATF&Title=In+celebration&Transaction.CustomFields.Custom651=England+Yorkshire.+fast+%28OCoLC%29fst01213252" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15994132", - "_score": 12.464817, - "_source": { - "extent": [ - "1 videocassette (VHS, NTSC) (58 min.) : sd., col. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from original container.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Camera: Caro Thompson.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Videotaped at Jacob's Pillow, Becket, Mass., June 23, Aug. 3 and other dates in summer 1984.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Morris dance", - "Break dancing" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This tape is a compilation of footage from special events during the 1984 season at Jacob's Pillow. The first segment includes footage from opening night festivities, including performances by the Pokingbrook Morris dancers and female garland dancers. The second segment records a brief presentation by Jacob's Pillow director Liz Thompson and dance patron Irene Hunter. Thompson speaks about the first appearance by the Martha Graham company at Jacob's Pillow and her own experience as a Graham dancer, and announces the naming of a building at Jacob's Pillow for Irene Hunter. Thompson proposes an audience toast to Hunter and Graham, and Hunter proposes a toast to Thompson. The third segment on the tape includes footage from outdoor daytime Gala festivities, including performances by two clowns making balloon sculptures, stilt-walkers, and breakdancers from the Rockwell Association. The fourth segment records a raffle held after a performance by the Hubbard Street Dance Company. The segment starts with the curtain calls following the performance; Marge Champion draws seat numbers and announces prizes for members of the audience. The last segment of the tape records breakdancing by a group of children and teenagers from Pittsfield." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1984 - ], - "title": [ - "Jacob's Pillow. special events." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*MGZIA 4-4451" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1984" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Champion, Marge.", - "Thompson, Caro.", - "Jacob's Pillow Dance Festival." - ], - "dateStartYear": [ - 1984 - ], - "donor": [ - "Gift of Jacob's Pillow Dance Festival." - ], - "idOclc": [ - "NYPT04-F167" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*MGZIA 4-4451" - }, - { - "type": "nypl:Bnumber", - "value": "15994132" - }, - { - "type": "nypl:Oclc", - "value": "NYPT04-F167" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)t280000016" - } - ], - "updatedAt": 1712867515154, - "publicationStatement": [ - "1984." - ], - "genreForm": [ - "Dance.", - "Video." - ], - "identifier": [ - "urn:shelfmark:*MGZIA 4-4451", - "urn:bnum:15994132", - "urn:oclc:NYPT04-F167", - "urn:identifier:(WaOLN)t280000016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:mov", - "label": "Moving image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Morris dance.", - "Break dancing." - ], - "titleDisplay": [ - "Jacob's Pillow. 1984 [videorecording] : special events." - ], - "uri": "b15994132", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "June, 1984. Opening night: Morris dancers (11 min.) -- Audience toast (4 min.)", - "June 23, 1984. Gala festivities (19 min.)", - "Aug. 3, 1984. Hubbard Street raffle (8 min.)", - "[n.d.] Breakdancers from Pittsfield (16 min.)" - ], - "dimensions": [ - "1/2 in." - ] - }, - "sort": [ - 12.464817, - "b15994132" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15994132", - "_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:24", - "label": "archival video recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:24||archival video recording" - ], - "formatLiteral": [ - "Moving image" - ], - "holdingLocation": [ - { - "id": "loc:pad22", - "label": "Performing Arts Research Collections - Dance" - } - ], - "holdingLocation_packed": [ - "loc:pad22||Performing Arts Research Collections - Dance" - ], - "idBarcode": [ - "33433064016748" - ], - "identifier": [ - "urn:shelfmark:*MGZIA 4-4451", - "urn:barcode:33433064016748" - ], - "identifierV2": [ - { - "value": "*MGZIA 4-4451", - "type": "bf:ShelfMark" - }, - { - "value": "33433064016748", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*MGZIA 4-4451" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*MGZIA 4-4451" - ], - "shelfMark_sort": "a*MGZIA 4-004451", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15404584", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*MGZIA+4-4451&Date=1984&Form=30&Genre=archival+video+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15994132&ItemISxN=i154045846&ItemNumber=33433064016748&ItemPublisher=1984.&Location=Performing+Arts+Dance+Division&ReferenceNumber=b159941325&Site=LPADNAMI&Title=Jacob%27s+Pillow.+special+events." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22159817", - "_score": 12.428547, - "_source": { - "extent": [ - "1 videodisc (28 min.) : sound, color and black and white ;" - ], - "note": [ - { - "noteType": "Note", - "label": "This disc is a recorded DVD and may not play on all DVD players or drives.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At head of title: A profile.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Documentary originally made in the late '90s.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Summary from videodisc container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Source used: videodisc container.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Producer, Claudia Schadeberg ; cinematographer, Jurgen Schadeberg ; editor, Jurgen Schadeberg ; the Schadeberg Movie Company ; commissioned by NNTV.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "DVD-R, NTSC.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Narrated in English; musical numbers sung in English or Zulu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rathebe, Dolly", - "African Inkspots (Musical group)", - "Singers", - "Singers -- South Africa", - "Singers -- South Africa -- 20th century", - "Singers -- South Africa -- 20th century -- Biography", - "Popular music", - "Popular music -- South Africa", - "Popular music -- South Africa -- 20th century", - "Jazz", - "Jazz -- South Africa", - "Jazz -- South Africa -- 20th century", - "Doo-wop (Music)", - "Doo-wop (Music) -- South Africa", - "Doo-wop (Music) -- South Africa -- 20th century", - "Music", - "Music -- Social aspects", - "Music -- Social aspects -- South Africa", - "Music -- Social aspects -- South Africa -- 20th century", - "Apartheid", - "Apartheid -- South Africa" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Villon Films" - ], - "description": [ - "One of the most dynamic singing combinations to emerge in the early fifties was Dolly Rathebe and the African Inkspots. They were the toast of Sof'town, getting star billing in musical shows round the country and appearing in feature films such as 'Jim Comes to Jo'burg', 'The Magic Garden' and 'Song of Africa'. Our documentary pays tribute to the talents of these jazz greats who have made such a valuable contribution to the musical heritage of South Africa." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2006 - ], - "dateEndString": [ - "199u" - ], - "title": [ - "Dolly and the Inkspots" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc Visual DVD-230 " - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2006" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Schadeberg, Jurgen, 1931-2020", - "Schadeberg, Claudia", - "Rathebe, Dolly.", - "African Inkspots (Musical group)", - "Schadeberg Movie Company, production company.", - "NNTV (Television station : Johannesburg, South Africa)", - "Villon Films." - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "85443392" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Visual DVD-230 " - }, - { - "type": "nypl:Bnumber", - "value": "22159817" - }, - { - "type": "nypl:Oclc", - "value": "85443392" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)85443392" - } - ], - "dateEndYear": [ - 199 - ], - "updatedAt": 1712871275453, - "publicationStatement": [ - "Vancouver, B.C. : Villon Films, [2006?]" - ], - "genreForm": [ - "Documentary television programs.", - "Nonfiction television programs." - ], - "identifier": [ - "urn:shelfmark:Sc Visual DVD-230 ", - "urn:bnum:22159817", - "urn:oclc:85443392", - "urn:identifier:(OCoLC)85443392" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:mov", - "label": "Moving image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rathebe, Dolly.", - "African Inkspots (Musical group)", - "Singers -- South Africa -- 20th century -- Biography.", - "Popular music -- South Africa -- 20th century.", - "Jazz -- South Africa -- 20th century.", - "Doo-wop (Music) -- South Africa -- 20th century.", - "Music -- Social aspects -- South Africa -- 20th century.", - "Apartheid -- South Africa." - ], - "titleDisplay": [ - "Dolly and the Inkspots/ directed by Jurgen Schadeberg." - ], - "uri": "b22159817", - "lccClassification": [ - "ML410.R227 P76 2006" - ], - "placeOfPublication": [ - "Vancouver, B.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Dolly & the Inkspots", - "A profile, Dolly and the Inkspots" - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 12.428547, - "b22159817" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22159817", - "_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:11", - "label": "videorecording, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:11||videorecording, non-circ" - ], - "formatLiteral": [ - "Moving image" - ], - "holdingLocation": [ - { - "id": "loc:scbb2", - "label": "Schomburg Center - Moving Image & Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:scbb2||Schomburg Center - Moving Image & Recorded Sound" - ], - "idBarcode": [ - "33433124442363" - ], - "identifier": [ - "urn:shelfmark:Sc Visual DVD-230", - "urn:barcode:33433124442363" - ], - "identifierV2": [ - { - "value": "Sc Visual DVD-230", - "type": "bf:ShelfMark" - }, - { - "value": "33433124442363", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1117", - "label": "Schomburg Center for Research in Black Culture, Moving Image and Recorded Sound Division" - } - ], - "owner_packed": [ - "orgs:1117||Schomburg Center for Research in Black Culture, Moving Image and Recorded Sound Division" - ], - "physicalLocation": [ - "Sc Visual DVD-230" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Sc Visual DVD-230" - ], - "shelfMark_sort": "aSc Visual DVD-000230", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37875201", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Visual+DVD-230&Date=2006&Form=30&Genre=videorecording%2C+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db22159817&ItemISxN=i378752017&ItemNumber=33433124442363&ItemPlace=Vancouver%2C+B.C.&ItemPublisher=Villon+Films%2C+%5B2006%3F%5D&Location=Schomburg+Moving+Image+and+Recorded+Sound&ReferenceNumber=b221598170&Site=SCHMIRS&Title=Dolly+and+the+Inkspots" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15557108", - "_score": 11.9390745, - "_source": { - "extent": [ - "1 sound disc (64:00) : digital ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Program notes by Peter Dempsey inserted in container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "All selections previously released.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "Compact disc.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Musicals", - "Musicals -- Excerpts", - "Popular music", - "Popular music -- 1931-1940" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Naxos Nostalgia" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2001 - ], - "dateEndString": [ - "1932" - ], - "title": [ - "Mad dogs and Englishmen the complete recordings, vol. 2 : 1932-1936" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LDC 28494 (F)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2001" - ], - "creatorLiteral": [ - "Coward, Noël, 1899-1973." - ], - "idLccn": [ - "636943255926" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2001 - ], - "idOclc": [ - "48993177" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LDC 28494 (F)" - }, - { - "type": "nypl:Bnumber", - "value": "15557108" - }, - { - "type": "nypl:Oclc", - "value": "48993177" - }, - { - "type": "bf:Lccn", - "value": "636943255926" - }, - { - "type": "bf:Identifier", - "value": "8.120559 Naxos Nostalgia" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M170000377" - } - ], - "dateEndYear": [ - 1932 - ], - "updatedAt": 1712866798575, - "publicationStatement": [ - "[S.l.] : Naxos Nostalgia, p2001." - ], - "identifier": [ - "urn:shelfmark:*LDC 28494 (F)", - "urn:bnum:15557108", - "urn:oclc:48993177", - "urn:lccn:636943255926", - "urn:identifier:8.120559 Naxos Nostalgia", - "urn:identifier:(WaOLN)M170000377" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2001" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Musicals -- Excerpts.", - "Popular music -- 1931-1940." - ], - "titleDisplay": [ - "Mad dogs and Englishmen [sound recording] : the complete recordings, vol. 2 : 1932-1936 / Noël Coward." - ], - "uri": "b15557108", - "placeOfPublication": [ - "[S.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Complete recordings. vol. 2, 1932-1936", - "Noël Coward. Vol. 2, Mad dogs and Englishmen" - ], - "tableOfContents": [ - "Mad dogs and Englishmen (2:50) -- Let's say goodbye (3:22) -- Party's over now (3:40) -- Something to do with spring (2:29) -- Noel Coward presents (9:00). Tokay ; World weary ; Caballero ; Green carnations ; I'll see you again ; Poor little rich girl ; Zigeuner ; Dear little cafe ; Call of life ; Ladies of the town -- I travel alone (2:29) -- Most of ev'ry day (2:31) -- Love in bloom (3:08) -- Fare thee well (2:44) -- Mrs. Worthington (2:00) -- We were so young (3:20) -- Family album : scenes (8:04). Here's a toast ; Hearts and flowers -- Shadow play : scenes (8:46). Then ; Play, orchestra ; You were there -- Red peppers : scenes (8:48). Has anybody seen our ship ; Men about town." - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 11.9390745, - "b15557108" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15557108", - "_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": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah32||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433015996212" - ], - "identifier": [ - "urn:shelfmark:*LDC 28494 (F) [Notes]", - "urn:barcode:33433015996212" - ], - "identifierV2": [ - { - "value": "*LDC 28494 (F) [Notes]", - "type": "bf:ShelfMark" - }, - { - "value": "33433015996212", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LDC 28494 (F) [Notes]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LDC 28494 (F) [Notes]" - ], - "shelfMark_sort": "a*LDC 28494 (F) [Notes]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12455194" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b15557108", - "_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:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433015996220" - ], - "identifier": [ - "urn:shelfmark:*LDC 28494 (F) [CD]", - "urn:barcode:33433015996220" - ], - "identifierV2": [ - { - "value": "*LDC 28494 (F) [CD]", - "type": "bf:ShelfMark" - }, - { - "value": "33433015996220", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LDC 28494 (F) [CD]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LDC 28494 (F) [CD]" - ], - "shelfMark_sort": "a*LDC 28494 (F) [CD]", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12455193", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Coward%2C+No%C3%ABl%2C+1899-1973.&CallNumber=*LDC+28494+%28F%29+%5BCD%5D&Date=2001&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15557108&ItemISxN=i124551932&ItemNumber=33433015996220&ItemPlace=%5BS.l.%5D&ItemPublisher=Naxos+Nostalgia%2C+p2001.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b155571084&Site=LPAMRAMI&Title=Mad+dogs+and+Englishmen+the+complete+recordings%2C+vol.+2+%3A+1932-1936" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21858284", - "_score": 10.90081, - "_source": { - "extent": [ - "1 online resource (1 sound file)." - ], - "note": [ - { - "noteType": "Credits", - "label": "Compilation produced by Cary E. Mansfield; compiled by Todd Everett.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Selections recorded and released 1970-1979.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on hard copy version record.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Country music", - "Country music -- 1961-1970", - "Country music -- 1971-1980" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Varèse Sarabande" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1996 - ], - "dateEndString": [ - "1970" - ], - "title": [ - "The best of Sammi Smith" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1996" - ], - "creatorLiteral": [ - "Smith, Sammi." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "Varèse vintage" - ], - "dateStartYear": [ - 1996 - ], - "idOclc": [ - "811549914" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21858284" - }, - { - "type": "nypl:Oclc", - "value": "811549914" - }, - { - "type": "bf:Identifier", - "value": "VSD-5574 Varese Sarabande" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)811549914" - } - ], - "uniformTitle": [ - "Varèse vintage." - ], - "dateEndYear": [ - 1970 - ], - "updatedAt": 1711040128233, - "publicationStatement": [ - "Studio City, CA : Varèse Sarabande, p1996." - ], - "identifier": [ - "urn:bnum:21858284", - "urn:oclc:811549914", - "urn:identifier:VSD-5574 Varese Sarabande", - "urn:identifier:(OCoLC)811549914" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1996" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Country music -- 1961-1970.", - "Country music -- 1971-1980." - ], - "titleDisplay": [ - "The best of Sammi Smith [electronic resource]." - ], - "uri": "b21858284", - "lccClassification": [ - "M1630.18.S657 B47 1996ab" - ], - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=VSD-5574" - } - ], - "placeOfPublication": [ - "Studio City, CA" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Help me make it through the night -- He's everywhere -- Then you walk in -- For the kids -- Kentucky -- I've got to have you -- Toast of '45 -- I miss you most when you're right here -- City of New Orleans -- Rainbow in daddy's eyes -- Long black veil -- Cover me -- Today I started loving you again -- My window faces south -- What a lie -- Letter." - ] - }, - "sort": [ - 10.90081, - "b21858284" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21977011", - "_score": 10.827286, - "_source": { - "extent": [ - "3 audio discs : digital, CD audio, stereo ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Book contains lyrics and interview transcripts, as well as biographical and historical notes by Scott Barretta, David Evans, Tom Rankin, and others in English, in box with 3 CDs and 1 DVD.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes download code on card in box.", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Recorded and filmed by William Ferris.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "1900-1999", - "Blues (Music)", - "Blues (Music) -- Mississippi", - "Blues (Music) -- Mississippi -- 1961-1970", - "Blues (Music) -- Mississippi -- 1971-1980", - "Gospel music", - "Gospel music -- Mississippi", - "Interviews", - "Interviews -- Southern States", - "Southern States", - "Southern States -- Civilization", - "Southern States -- Civilization -- 20th century", - "Mississippi" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dust-to-Digital" - ], - "description": [ - "\"This watershed release represents the life's work of William Ferris, an audio recordist, filmmaker, folklorist, and teacher with an unwavering commitment to establish and to expand the study of the American South. William Ferris was born in Vicksburg, Mississippi in 1942. Growing up on a working farm, Ferris began at a young age documenting the artwork, music, and lives of the people on the farm and in his local community. The archive of recordings that he created and the documentary films that he had a hand in producing have served as powerful tools in institutions of higher learning for decades.\"--" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2018 - ], - "dateEndString": [ - "1966" - ], - "title": [ - "Voices of Mississippi : artists and musicians documented by William Ferris." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZZ 21-3522" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2018" - ], - "idLccn": [ - "880226005320" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ferris, William R.", - "Barretta, Scott", - "Evans, David, 1944-", - "Rankin, Tom" - ], - "dateStartYear": [ - 2018 - ], - "idOclc": [ - "1035954626" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZZ 21-3522" - }, - { - "type": "nypl:Bnumber", - "value": "21977011" - }, - { - "type": "nypl:Oclc", - "value": "1035954626" - }, - { - "type": "bf:Lccn", - "value": "880226005320" - }, - { - "type": "bf:Identifier", - "value": "DTD-53 Dust-to-Digital" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1035954626" - } - ], - "dateEndYear": [ - 1966 - ], - "updatedAt": 1711590318279, - "publicationStatement": [ - "[Atlanta, Georgia] : Dust-to-Digital, 2018.", - "℗2018" - ], - "genreForm": [ - "Blues (Music)", - "Documentary films.", - "Gospel music.", - "Interviews.", - "Nonfiction films.", - "Short films.", - "Field recordings." - ], - "identifier": [ - "urn:shelfmark:*LZZ 21-3522", - "urn:bnum:21977011", - "urn:oclc:1035954626", - "urn:lccn:880226005320", - "urn:identifier:DTD-53 Dust-to-Digital", - "urn:identifier:(OCoLC)1035954626" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2018" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "1900-1999", - "Blues (Music) -- Mississippi -- 1961-1970.", - "Blues (Music) -- Mississippi -- 1971-1980.", - "Gospel music -- Mississippi.", - "Interviews -- Southern States.", - "Blues (Music)", - "Gospel music.", - "Southern States -- Civilization -- 20th century.", - "Mississippi." - ], - "titleDisplay": [ - "Voices of Mississippi : artists and musicians documented by William Ferris." - ], - "uri": "b21977011", - "lccClassification": [ - "M1630.18 .V65 2018" - ], - "placeOfPublication": [ - "[Atlanta, Georgia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Artists and musicians documented by William Ferris" - ], - "tableOfContents": [ - "[Disc 1]. Blues. 44 blues / (James \"Son Ford\" Thomas) -- I feel so good / (Lovey Williams) -- Stackalee and Billy Lyons / (Wallace \"Pine-Top\" Johnson & Maudie Shirley with Jasper Love) -- Lil' Liza Jane / (Scott Dunbar) -- Big fat mama / (Mississippi Fred McDowell) -- Bottle blowing / (Louis Dotson) -- Bring me my shotgun / (Sonny Boy Watson) -- Eyesight to the blind / (Sam Myers) -- Cairo / (James \"Son Ford\" Thomas) -- Jaybird / (Scott Dunbar) -- Cotton eyed Joe / (Tom Dumas) -- Coal black mare / (Lovey Williams) -- I dreamed I went to the U.N. / (Unidentified musician with Mississippi Fred McDowell) -- Darling if you must leave / (Walter Lee Hood) -- I got a letter from Hot Springs / (Mississippi Fred McDowell) -- Baby loves to boogie / (Wallace \"Pine-Top\" Johnson & Maudie Shirley with Jasper Love) -- Nothing / (Wash Heron & \"Big\" Jack Johnson) -- Dust my broom / (James \"Son Ford\" Thomas) -- The Memphis mail / (Scott Dunbar) -- Have you seen my baby / (Sonny Boy Watson) -- Instrumental guitar piece in A / (James Hughes) -- Train I ride / (Lovey Williams) -- Little red rooster / (Unidentified musician with Mississippi Fred McDowell) -- Darlin' why you treat me so? / (Leland musician) -- Water boy drowned in the Mobile Bay / (Inmates at Parchman Farm) -- I ain't gonna live it no more / (George Lee \"Sun Bud\" Spears) -- I cannot stay here baby / (James \"Son Ford\" Thomas with Sonny Boy Watson).", - "[Disc 2]. Gospel. Lord, I'm in Your hand / (Mary & Amanda Gordon) -- You don't know like I know / (the Southland Hummingbirds) -- I'm standing in the safety zone / (Lovey Williams) -- Children, go where I send thee / (Reverend Smith and family) -- What could I do? / (Liddle Hines) -- So glad I got good religion / (Providence Missionary Baptist Church) -- I know the Lord will make a way : (Yes He will) / (Church of God in Christ) -- Home on high / (Walter Lee Hood and Parchman inmates) -- We're so glad to be here / (Fannie Bell Chapman) -- My mother's on that train / (Mary Alice & Alan McGowan) -- You don't knock, you just walk on in / (Reverend Ott & Family) -- They tell me of an uncloudy day / (Walter Lee Hood) -- Thanks for Bill Ferris ; Over yonder where the sun will never shine / (Rose Hill Church) -- I've been born again / (the Southland Hummingbirds) -- The Lord will make a way somehow / (Lovey Williams & family) -- How did you feel when you come out of the wilderness / (Providence Missionary Baptist Church) -- I don't have to worry about where I spend eternity / (Church of God in Christ) -- He's my rock, my sword, and shield / (Fannie Bell Chapman & family) -- Thank you Jesus / (Walter Lee Hood & Parchman inmates) -- Cross of Calvary / (Mary & Amanda Gordon) -- My grave's gonna be decorated on that day / (Church of God in Christ) -- There are days / (the Southland Hummingbirds) -- You can't hide, sinner / (Church of God in Christ) -- Lord, remember me / (Reverend Isaac Thomas & Rose Hill Church) -- Glory, glory : (Lay my burden down) / (Church of God in Christ).", - "[Disc 3]. Storytelling. On Bill / (Barry Hannah) -- Regions of the mind and heart / (Alice Walker) -- The South / (Alex Haley) -- A trader is / (Ray Lum) -- The blues to me / (Bobby Rush) -- On Son Thomas and tradition / (Barry Hannah) -- I know it's wrong to be playin' the blues / (James \"Son Ford\" Thomas) -- Jitterbug comes to town / (Sonny Boy Watson) -- You whistlin' / (James \"Son Ford\" Thomas) -- Mule toast and pool hall toast / (Joe \"Skeet\" Skillet) -- The preacher / (Joe Cooper) -- Lyin' / (Wallace \"Pine-Top\" Johnson, Jasper Love, & Maudie Shirley) -- Two brothers, Heaven and Hell ; Creekman killed Charlie Kirkland / (Shelby \"Poppa Jazz\" Brown) -- Lucille / (B.B. King) -- On blues composition / (Allen Ginsberg, James \"Son Ford\" Thomas, and Bill Ferris) -- The decline in human values / (Robert Penn Warren) -- The Bible salesman / (Pecolia Warner) -- Fast traders disguising mules ; Horses too tall to drown ; The ark and the cats ; The panther / (Ray Lum) -- Fixing Charles Lindbergh's engine / (Victor Bobb) -- Lying about being from Mississippi / (Barry Hannah) -- We shall overcome / (Pete Seeger) -- Cemetery conversations / (James \"Son Ford\" Thomas).", - "[Disc 4 (DVD)]. Films. Gravel Springs fife and drum / (Otha Turner) (10:00) -- Green Valley grandparents (12:00) -- Ray Lum : mule trader (18:00) -- Fannie Bell Chapman : gospel singer (42:00) -- Four women artists / (Pecolia Warner, Eudora Welty, Ethel Mohamed, Theora Hamblett) (24:00) -- Hush hoggies hush : Tom Johnson's praying pigs (4:00) -- Bottle up and go / (Louis Dotson) (18:00)." - ], - "dimensions": [ - "4 3/4 in. + 22 x 27 cm)" - ] - }, - "sort": [ - 10.827286, - "b21977011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21977011", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:12", - "label": "musical sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433125489173" - ], - "identifier": [ - "urn:shelfmark:*LZZ 21-3522", - "urn:barcode:33433125489173" - ], - "identifierV2": [ - { - "value": "*LZZ 21-3522", - "type": "bf:ShelfMark" - }, - { - "value": "33433125489173", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LZZ 21-3522" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LZZ 21-3522" - ], - "shelfMark_sort": "a*LZZ 21-003522", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i38746079", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LZZ+21-3522&Date=2018&Form=30&Genre=musical+sound+recording&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21977011&ItemISxN=i387460792&ItemNumber=33433125489173&ItemPlace=%5BAtlanta%2C+Georgia%5D&ItemPublisher=Dust-to-Digital&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b219770116&Site=LPAMRAMI&Title=Voices+of+Mississippi+%3A+artists+and+musicians+documented+by+William+Ferris.&Transaction.CustomFields.Custom651=Mississippi.+fast+%28OCoLC%29fst01207034" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16645835", - "_score": 9.799138, - "_source": { - "extent": [ - "1 sound cassette : analog, stereo." - ], - "note": [ - { - "noteType": "Note", - "label": "Cassette contains Joseph Papp toasting his friend and benefactor George T. Delacorte, the recipiant of the Alexander Hamilton medal (year unknown), and Papp singing several songs from the 1930's at Columbia University.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"J. Papp at Columbia Univ.\"--Cassette.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Credits and information taken from auditioning of cassette.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "On container spine: J Papp. Columbia.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "NYSF inventory no. 1729.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Forms part of the New York Shakespeare Festival records; for papers, see the Billy Rose Theatre Collection, *T-Mss 1993-028; for sheet music and scores, see the Music Division, JPB 04-03.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "The New York Shakespeare Festival and Gail Merrifield Papp;", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Forms part of: New York Shakespeare Festival recordings collection.", - "type": "bf:Note" - } - ], - "partOf": [ - "New York Shakespeare Festival recordings collection." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Delacorte, George T. 1893-1991", - "Songs with instrumental ensemble", - "Award presentations", - "Award presentations -- New York (State)", - "Award presentations -- New York (State) -- New York" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "dateEndString": [ - "1989" - ], - "title": [ - "J. Papp at Columbia University [speech and performance]" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LTC 10267" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "creatorLiteral": [ - "Papp, Joseph" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Papp, Joseph", - "Hart, Lorenz, 1895-1943", - "Rodgers, Richard, 1902-1979", - "Dixon, Mort, 1892-1956.", - "Rose, Billy, 1899-1966", - "Warren, Harry, 1893-1981.", - "Harburg, E. Y. (Edgar Yipsel), 1896-1981", - "Gorney, Jay, 1896-1990", - "Silverman, Stanley", - "Columbia University.", - "New York Shakespeare Festival Public Theater. dnr" - ], - "dateStartYear": [ - 1980 - ], - "idOclc": [ - "166556166" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LTC 10267" - }, - { - "type": "nypl:Bnumber", - "value": "16645835" - }, - { - "type": "nypl:Oclc", - "value": "166556166" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)166556166" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M310000283" - } - ], - "dateEndYear": [ - 1989 - ], - "updatedAt": 1712869033543, - "publicationStatement": [ - "[198-?]" - ], - "identifier": [ - "urn:shelfmark:*LTC 10267", - "urn:bnum:16645835", - "urn:oclc:166556166", - "urn:identifier:(OCoLC)166556166", - "urn:identifier:(WaOLN)M310000283" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Delacorte, George T. 1893-1991.", - "Songs with instrumental ensemble.", - "Award presentations -- New York (State) -- New York." - ], - "titleDisplay": [ - "J. Papp at Columbia University [sound recording] : [speech and performance] / [toast and performance by J. Papp ; music arranged and conducted by Stanley Silverman.]" - ], - "uri": "b16645835", - "issuance": [ - { - "id": "urn:biblevel:d", - "label": "subunit" - } - ], - "titleAlt": [ - "Joseph Papp at Columbia", - "New York Shakespeare Festival recordings collection." - ], - "tableOfContents": [ - "What do you want with money? ; Hallelujah, I'm a bum again / Rodgers, Hart -- I found a million dollar baby (In a five-and ten cent store) / Warren, Dixon & Rose -- Brother, can you spare a dime? / Gorney, Harburg -- Hallelujah, I'm a bum again (reprise)" - ] - }, - "sort": [ - 9.799138, - "b16645835" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16645835", - "_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:23", - "label": "archival sound recording" - } - ], - "catalogItemType_packed": [ - "catalogItemType:23||archival sound recording" - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:rcph9", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcph9||Offsite" - ], - "idBarcode": [ - "33433077390452" - ], - "identifier": [ - "urn:shelfmark:*LTC 10267 [Cassette]", - "urn:barcode:33433077390452" - ], - "identifierV2": [ - { - "value": "*LTC 10267 [Cassette]", - "type": "bf:ShelfMark" - }, - { - "value": "33433077390452", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*LTC 10267 [Cassette]" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*LTC 10267 [Cassette]" - ], - "shelfMark_sort": "a*LTC 10267 [Cassette]", - "status": [ - { - "id": "status:v", - "label": "Preservation" - } - ], - "status_packed": [ - "status:v||Preservation" - ], - "type": [ - "bf:Item" - ], - "uri": "i17369755", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Papp%2C+Joseph&CallNumber=*LTC+10267+%5BCassette%5D&Date=1980&Form=30&Genre=archival+sound+recording&ItemInfo1=Request+in+advance&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16645835&ItemISxN=i173697550&ItemNumber=33433077390452&ItemPublisher=%5B198-%3F%5D&Location=ReCAP&ReferenceNumber=b166458351&Site=LPAMRAMI&SubLocation=rcph9&Title=J.+Papp+at+Columbia+University+%5Bspeech+and+performance%5D" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb11820882", - "_score": 9.783272, - "_source": { - "extent": [ - "2 audio discs : digital ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Produced by Steven Lance Ledbetter, Nathan Salsburg.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title from container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Recorded by Bruce Jackson at Unit Two, Ramsey State Farm, Rosharon, Texas, August and November 1965 and June 1966.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "1961 - 1970", - "Blues (Music)", - "Blues (Music) -- 1961-1970", - "Prisoners' songs", - "Prisoners' songs -- United States", - "United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dust-to-Digital" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1965" - ], - "createdYear": [ - 2015 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "No more good time in the world for me" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Smith, J. B. (Vocalist)" - ], - "createdString": [ - "2015" - ], - "idLccn": [ - "880226004125" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ledbetter, Steven Lance", - "Salsburg, Nathan" - ], - "dateStartYear": [ - 2015 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "11820882" - }, - { - "type": "bf:Lccn", - "value": "880226004125" - }, - { - "type": "nypl:Oclc", - "value": "ocn910635140" - }, - { - "type": "nypl:Oclc", - "value": "910635140" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-13645885" - }, - { - "type": "bf:Identifier", - "value": "DTD-41 Dust to Digital" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn910635140" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)910635140" - }, - { - "type": "bf:Identifier", - "value": "(NNC)11820882" - }, - { - "type": "bf:Identifier", - "value": "11820882" - } - ], - "idOclc": [ - "ocn910635140", - "910635140", - "SCSB-13645885" - ], - "dateEndYear": [ - 1965 - ], - "holdings": [], - "updatedAt": 1674876413652, - "publicationStatement": [ - "[Atlanta, Georgia] : Dust-to-Digital, [2015]" - ], - "identifier": [ - "urn:bnum:11820882", - "urn:lccn:880226004125", - "urn:oclc:ocn910635140", - "urn:oclc:910635140", - "urn:oclc:SCSB-13645885", - "urn:undefined:DTD-41 Dust to Digital", - "urn:undefined:(OCoLC)ocn910635140", - "urn:undefined:(OCoLC)910635140", - "urn:undefined:(NNC)11820882", - "urn:undefined:11820882" - ], - "genreForm": [ - "Blues (Music)", - "Work songs." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:sd", - "label": "audio disc" - } - ], - "dateString": [ - "2015" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "1961 - 1970", - "Blues (Music) -- 1961-1970.", - "Prisoners' songs -- United States.", - "Blues (Music)", - "Prisoners' songs.", - "United States." - ], - "titleDisplay": [ - "No more good time in the world for me / J. B. Smith." - ], - "uri": "cb11820882", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Atlanta, Georgia]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Disc 1. No more good time in the world for me (13:24) -- Watching my timber (1:29) -- Drop 'em down together (5:18) -- I got too much time for the crime I done (9:46) -- They can't do that (toast) (1:18) -- I heard the reports of a pistol (7:45) -- Drinking that wine (1:29) -- Ever since I been a man full grown (23:12) -- Disc 2. Sure make a man feel bad (6:17) -- Tried by fire (4:29) -- Woman trouble (14:26) -- On composition (spoken) (0:55) -- The major special (6:29) -- No payday here (11:24) -- At the cross (5:20) -- Poor boy, number two (7:49) -- On getting out (spoken) (0:44) -- Go ahead (4:09)." - ], - "dimensions": [ - "4 3/4 in. +" - ] - }, - "sort": [ - 9.783272, - "cb11820882" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb11820882", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci8904317", - "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": [ - "CD27674" - ], - "identifierV2": [ - { - "value": "CD27674", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR75567024" - } - ], - "physicalLocation": [ - "CD27674" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR75567024" - ], - "idBarcode": [ - "MR75567024" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Audio" - ], - "shelfMark_sort": "aCD027674" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb3360572", - "_score": 9.642332, - "_source": { - "extent": [ - "xxi, 396 pages ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Translated from German.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published: Richard Wagner's Prose works, v. 7 (In Paris and Dresden). London : Kegan Paul, Trench, Trübner, 1898.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Bison book\"--Verso t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Wagner, Richard, 1813-1883", - "Music", - "Music -- 19th century", - "Music -- 19th century -- History and criticism" - ], - "publisherLiteral": [ - "University of Nebraska Press" - ], - "description": [ - "\"When Wagner published the first collection of his writings he was pleased to admit how well he wrote, even when young. Historians and musicians ever since have agreed that some of his most important and revelatory works were written when he was first establishing his reputation in Paris and Dresden. Pilgrimage to Beethoven and Other Essays provides translations of the first two volumes of his Gesammelte Schriften (1871-1873).", - "These works reveal how committed he was to emphasizing Germanic qualities in his music and define his opposition to the music of France and Italy.\" \"In addition to his influential essay on Beethoven's Ninth Symphony, this volume includes two early essays on Germanic myth - \"The Wibelungen\" and \"The Nibelungen-Myth\" - his homages to Carl Maria von Weber, and the complete text of his autobiographical A German Musician in Paris, with its famous \"Pilgrimage to Beethoven.\"\".", - "\"The volume concludes with his \"Plan of Organisation of a German National Theatre\" (1849), founded upon Beethoven's moral music. Listeners \"inspired by Beethoven's music have been more active and energetic citizens-of-State than those bewitched by Rossini, Bellini and Donizetti.\" Throughout these essays, as throughout his life, Wagner knew how to provoke.\"--BOOK JACKET." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1898" - ], - "createdYear": [ - 1994 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Pilgrimage to Beethoven and other essays" - ], - "creatorLiteral": [ - "Wagner, Richard, 1813-1883." - ], - "createdString": [ - "1994" - ], - "idLccn": [ - " 94028468 " - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ellis, William Ashton, 1852-1919." - ], - "dateStartYear": [ - 1994 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "3360572" - }, - { - "type": "bf:Isbn", - "value": "0803297637 (pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 94028468 " - }, - { - "type": "nypl:Oclc", - "value": "ocm30813510" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-4314558" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm30813510" - }, - { - "type": "bf:Identifier", - "value": "(NNC)3360572" - }, - { - "type": "bf:Identifier", - "value": "3360572" - }, - { - "type": "bf:Identifier", - "value": "U5001 T480 -1994" - } - ], - "idOclc": [ - "ocm30813510", - "SCSB-4314558" - ], - "uniformTitle": [ - "Literary works. Selections. English" - ], - "dateEndYear": [ - 1898 - ], - "holdings": [], - "updatedAt": 1666403879557, - "publicationStatement": [ - "Lincoln : University of Nebraska Press, 1994." - ], - "identifier": [ - "urn:bnum:3360572", - "urn:isbn:0803297637 (pbk.)", - "urn:lccn: 94028468 ", - "urn:oclc:ocm30813510", - "urn:oclc:SCSB-4314558", - "urn:undefined:(OCoLC)ocm30813510", - "urn:undefined:(NNC)3360572", - "urn:undefined:3360572", - "urn:undefined:U5001 T480 -1994" - ], - "idIsbn": [ - "0803297637 (pbk.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1994" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wagner, Richard, 1813-1883.", - "Music -- 19th century -- History and criticism." - ], - "titleDisplay": [ - "Pilgrimage to Beethoven and other essays / by Richard Wagner ; translated by William Ashton Ellis." - ], - "uri": "cb3360572", - "lccClassification": [ - "ML410.W1 A1435 1994" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Lincoln" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Literary works." - ], - "tableOfContents": [ - "\"Das Liebesverbot\" -- A German Musician in Paris. 1. A Pilgrimage to Beethoven. 2. An End in Paris. 3. A Happy Evening. 4. On German Music. 4A. Pergolesi's \"Stabat Mater\" 5. The Virtuoso and the Artist. 5A. Du Metier De Virtuose. 6. The Artist and Publicity. 7. Rossini's \"Stabat Mater\" -- On the Overture -- Der Freischutz in Paris. 1. To the Paris Public. 2. Report to Germany -- Halevy's \"Reine De Chypre\" -- Author's Introduction to Vol. II. of the Ges. Schr -- Weber's Re-Interment. Report. Speech -- Beethoven's Choral Symphony at Dresden. Report. Programme -- The Wibelungen -- The Nibelungen-Myth -- Tercentenary Toast -- A German National Theatre." - ], - "idIsbn_clean": [ - "0803297637" - ], - "dimensions": [ - "21 cm" - ] - }, - "sort": [ - 9.642332, - "cb3360572" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb3360572", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci3413067", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "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": [ - "ML410.W1 A1435 1994" - ], - "identifierV2": [ - { - "value": "ML410.W1 A1435 1994", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU61479420" - } - ], - "physicalLocation": [ - "ML410.W1 A1435 1994" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU61479420" - ], - "idBarcode": [ - "CU61479420" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aML410.W1 A1435 001994" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21889069", - "_score": 9.544052, - "_source": { - "extent": [ - "1 online resource (1 sound file)." - ], - "note": [ - { - "noteType": "Note", - "label": "Libretto by Henri Meilhac and Ludovic Halévy, based on the short story by Prosper Mérimée.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Previously released material.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded 1963.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "RCA Victor Gold Seal", - "Distributed by BMG Music" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1990 - ], - "dateEndString": [ - "1963" - ], - "title": [ - "Carmen : highlights" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1990" - ], - "creatorLiteral": [ - "Bizet, Georges, 1838-1875." - ], - "idLccn": [ - "USBC16300177", - "USBC16300178", - "USBC16300179", - "USBC16300180", - "USBC16300181", - "USBC16300182", - "USBC16300183", - "USBC16300184", - "USBC16300185", - "USBC16300186", - "USBC16300187", - "USBC16300188", - "USBC16300189", - "USBC16300190", - "USBC16300191", - "USBC16300192", - "USBC16300193", - "USBC16300194", - "USBC16300195" - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "Opera series" - ], - "contributorLiteral": [ - "Meilhac, Henri, 1831-1897.", - "Halévy, Ludovic, 1834-1908.", - "Price, Leontyne.", - "Freni, Mirella, 1935-2020.", - "Corelli, Franco.", - "Merrill, Robert, 1917-2004.", - "Karajan, Herbert von.", - "Mérimée, Prosper, 1803-1870.", - "Konzertvereinigung Wiener Staatsopernchor.", - "Wiener Philharmoniker." - ], - "dateStartYear": [ - 1990 - ], - "idOclc": [ - "906156941" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21889069" - }, - { - "type": "nypl:Oclc", - "value": "906156941" - }, - { - "type": "bf:Lccn", - "value": "USBC16300177" - }, - { - "type": "bf:Lccn", - "value": "USBC16300178" - }, - { - "type": "bf:Lccn", - "value": "USBC16300179" - }, - { - "type": "bf:Lccn", - "value": "USBC16300180" - }, - { - "type": "bf:Lccn", - "value": "USBC16300181" - }, - { - "type": "bf:Lccn", - "value": "USBC16300182" - }, - { - "type": "bf:Lccn", - "value": "USBC16300183" - }, - { - "type": "bf:Lccn", - "value": "USBC16300184" - }, - { - "type": "bf:Lccn", - "value": "USBC16300185" - }, - { - "type": "bf:Lccn", - "value": "USBC16300186" - }, - { - "type": "bf:Lccn", - "value": "USBC16300187" - }, - { - "type": "bf:Lccn", - "value": "USBC16300188" - }, - { - "type": "bf:Lccn", - "value": "USBC16300189" - }, - { - "type": "bf:Lccn", - "value": "USBC16300190" - }, - { - "type": "bf:Lccn", - "value": "USBC16300191" - }, - { - "type": "bf:Lccn", - "value": "USBC16300192" - }, - { - "type": "bf:Lccn", - "value": "USBC16300193" - }, - { - "type": "bf:Lccn", - "value": "USBC16300194" - }, - { - "type": "bf:Lccn", - "value": "USBC16300195" - }, - { - "type": "bf:Identifier", - "value": "090266019021 RCA Records" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)906156941" - } - ], - "uniformTitle": [ - "Carmen. Selections", - "Opera series." - ], - "dateEndYear": [ - 1963 - ], - "updatedAt": 1710993350869, - "publicationStatement": [ - "New York, NY : RCA Victor Gold Seal, [1990]", - "Distributed by BMG Music", - "℗1990" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:21889069", - "urn:oclc:906156941", - "urn:lccn:USBC16300177", - "urn:lccn:USBC16300178", - "urn:lccn:USBC16300179", - "urn:lccn:USBC16300180", - "urn:lccn:USBC16300181", - "urn:lccn:USBC16300182", - "urn:lccn:USBC16300183", - "urn:lccn:USBC16300184", - "urn:lccn:USBC16300185", - "urn:lccn:USBC16300186", - "urn:lccn:USBC16300187", - "urn:lccn:USBC16300188", - "urn:lccn:USBC16300189", - "urn:lccn:USBC16300190", - "urn:lccn:USBC16300191", - "urn:lccn:USBC16300192", - "urn:lccn:USBC16300193", - "urn:lccn:USBC16300194", - "urn:lccn:USBC16300195", - "urn:identifier:090266019021 RCA Records", - "urn:identifier:(OCoLC)906156941" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "Carmen : highlights / Bizet." - ], - "uri": "b21889069", - "lccClassification": [ - "M1505.B58 C37 1990" - ], - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" - } - ], - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Carmen." - ], - "tableOfContents": [ - "Overture -- Dans l'air, nous suivons des yeux (Chorus of cigarette girls) -- La voilà, la voilà -- L'amour est un oiseau rebelle (Habanera) -- Près des remparts de Séville -- Act II Entr'acte -- Tringles des sistres tintaient (Gypsy song) -- Messieurs, pastia me dit -- Vivat! vvivat le Toréreo! -- Votre toast (Toreador song) -- Nous avons en tête une affaire (Quintet) -- Lalalala -- Attends un pueu, Carmen -- Fleur que tu m'avais jetée (Flowere song) -- Mêlons! Coupons! (Card scene) -- Je dis que rien ne m'épouvante (Micaela's air) -- Act IV Entr'acte -- C'est toi -- C'est moi! -- Où va-tu? -- Laisse-moi!" - ] - }, - "sort": [ - 9.544052, - "b21889069" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990085140950203941", - "_score": 9.038696, - "_source": { - "extent": [ - "xiv, 160 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally published as Madeline Brown's murderer: Melbourne : Kemp & Boyce, 1887.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Adams, Francis, 1862-1893" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Text Pub. Co." - ], - "description": [ - "A lost classic of Australian crime. This astonishing proto-modern thriller was first published in 1887. It opens with Adams' brilliant description of how Madeline Brown, a beautiful temptress and toast of Melbourne society, met her ghastly fate. David Stuart, a journalist and an admirer of the doomed siren, is consumed by the circumstances of her death. He turns sleuth, piecing together the last days of her life, and the result is a riveting psychological portrait of both victim and detective. Madeline Brown is also a wonderful profile of polite society in 19th century Australia." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1887" - ], - "createdYear": [ - 2000 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The murder of Madeline Brown / by Francis Adams ; with an introduction by Shane Maloney." - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Adams, Francis, 1862-1893" - ], - "createdString": [ - "2000" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Adams, Francis William Lauderdale, 1862-1893.", - "Maloney, Shane, 1953-" - ], - "dateStartYear": [ - 2000 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990085140950203941" - }, - { - "type": "bf:Isbn", - "value": "1876485523" - }, - { - "type": "nypl:Oclc", - "value": "49641811" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-12052964" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)49641811" - } - ], - "idOclc": [ - "49641811", - "SCSB-12052964" - ], - "uniformTitle": [ - "Madeline Brown's murderer" - ], - "dateEndYear": [ - 1887 - ], - "holdings": [], - "updatedAt": 1678662046599, - "publicationStatement": [ - "Melbourne, Vic. : Text Pub. Co., 2000." - ], - "identifier": [ - "urn:bnum:990085140950203941", - "urn:isbn:1876485523", - "urn:oclc:49641811", - "urn:oclc:SCSB-12052964", - "urn:undefined:(OCoLC)49641811" - ], - "idIsbn": [ - "1876485523" - ], - "genreForm": [ - "Mystery fiction" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2000" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Adams, Francis, 1862-1893." - ], - "titleDisplay": [ - "The murder of Madeline Brown / by Francis Adams ; with an introduction by Shane Maloney." - ], - "uri": "hb990085140950203941", - "lccClassification": [ - "PR8201.A3 M3 2000" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Melbourne, Vic." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Madeline Brown's murderer" - ], - "idIsbn_clean": [ - "1876485523" - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 9.038696, - "hb990085140950203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990085140950203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232063239140003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PR8201.A3 M3 2000" - ], - "identifierV2": [ - { - "value": "PR8201.A3 M3 2000", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HXS4Y6" - } - ], - "physicalLocation": [ - "PR8201.A3 M3 2000" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:HXS4Y6" - ], - "idBarcode": [ - "HXS4Y6" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPR8201.A3 M3 002000" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "hb990088488550203941", - "_score": 8.416908, - "_source": { - "extent": [ - "xxxiii, 296 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally published: Viking Press, 1945.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. xxx-xxxiii).", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "committed to retain", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-hl" - ], - "subjectLiteral_exploded": [ - "Dinners and dining", - "Dinners and dining -- Fiction", - "Charleston (S.C.)", - "Charleston (S.C.) -- Fiction" - ], - "publisherLiteral": [ - "University of South Carolina Press" - ], - "description": [ - "\"Mortified when their son \"Tat\" elopes with the henna-haired daughter of the Hessenwinkles, an especially galling bourgeois clan, the Redcliffs are determined to respond with civility. They invite their son, his new wife, and her family for Sunday dinner, served at the traditional time of three in the afternoon. Tension builds across an expanse of white damask. After mint julep aperitifs, dinner claret, and Madeira toasts, a chance remark ignites the novel's climax amid a flurry of raised voices, hurt feelings, and broken china. Their new daughter-in-law's revelation further shatters the Redcliffs' well-ordered society but opens a door to forgiveness and redemption.\"--Page 4 of cover." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1945" - ], - "createdYear": [ - 2001 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Three o'clock dinner / Josephine Pinckney ; with a new introduction by Barbara L. Bellows." - ], - "creatorLiteral": [ - "Pinckney, Josephine, 1895-1957." - ], - "createdString": [ - "2001" - ], - "idLccn": [ - "^^2001037706" - ], - "seriesStatement": [ - "Southern classics series" - ], - "dateStartYear": [ - 2001 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "990088488550203941" - }, - { - "type": "bf:Isbn", - "value": "1570034230 (pbk. : alk. paper)" - }, - { - "type": "bf:Lccn", - "value": "^^2001037706" - }, - { - "type": "nypl:Oclc", - "value": "47216111" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)47216111" - } - ], - "idOclc": [ - "47216111" - ], - "uniformTitle": [ - "Southern classics series." - ], - "dateEndYear": [ - 1945 - ], - "holdings": [], - "updatedAt": 1656308149815, - "publicationStatement": [ - "Columbia, S.C. : University of South Carolina Press, c2001." - ], - "identifier": [ - "urn:bnum:990088488550203941", - "urn:isbn:1570034230 (pbk. : alk. paper)", - "urn:lccn:^^2001037706", - "urn:oclc:47216111", - "urn:undefined:(OCoLC)47216111" - ], - "idIsbn": [ - "1570034230 (pbk. : alk. paper)" - ], - "genreForm": [ - "Domestic fiction.", - "Domestic fiction", - "Fiction" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2001" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dinners and dining -- Fiction", - "Charleston (S.C.) -- Fiction." - ], - "titleDisplay": [ - "Three o'clock dinner / Josephine Pinckney ; with a new introduction by Barbara L. Bellows." - ], - "uri": "hb990088488550203941", - "lccClassification": [ - "PS3531.I7 T48 2001" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Columbia, S.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "1570034230" - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 8.416908, - "hb990088488550203941" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "hb990088488550203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "hi232074363770003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "PS3531.I7 T48 2001" - ], - "identifierV2": [ - { - "value": "PS3531.I7 T48 2001", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HXFDCB" - } - ], - "physicalLocation": [ - "PS3531.I7 T48 2001" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:HXFDCB" - ], - "idBarcode": [ - "HXFDCB" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aPS3531.I7 T48 002001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21890516", - "_score": 7.6837106, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Note", - "label": "RCA Red Seal: 88697 07409 2 (88697 07409 2/1--88697 07409 2/2).", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Previously released material originally recorded 1949-1959.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Songs (High voice) with orchestra", - "Popular music", - "Musicals", - "Musicals -- Excerpts", - "Motion picture music", - "Motion picture music -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "RCA Red Seal" - ], - "description": [ - "One of the most beloved and enduring tenor voices performing everything from popular opera arias to the popular hits of his time." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "1949" - ], - "title": [ - "The essential Mario Lanza." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Lanza, Mario, 1921-1959." - ], - "idLccn": [ - "USBC15000101", - "USBC15300128", - "USBC19900769", - "USBC15200122", - "USBC19900784", - "USBC19900780", - "USBC15000120", - "USBC10000455", - "USBC19900774", - "USBC10000454", - "USBC19900766", - "USBC19900771", - "USBC10000456", - "USBC19900775", - "USBC19900768", - "USBC15100129", - "USBC19900777", - "USBC15700152", - "USBC15600125", - "USBC19900772", - "USBC10000457", - "USBC15000121", - "USBC15200154", - "USBC15000105", - "USBC15600126", - "USBC15000152", - "USBC15200155", - "USBC15200156", - "USBC15000153", - "USBC15100130", - "USBC15800175", - "USBC15800191", - "USBC15200157", - "USBC19900778", - "USBC15200161", - "USBC15200158", - "USBC19900782", - "USBC15800192", - "USBC15700154", - "USBC15200118", - "USBC19505231", - "USBC15800193", - "USBC19900767", - "USBC15800194", - "USBC15200008", - "USBC15200160" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 2007 - ], - "idOclc": [ - "906201830" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21890516" - }, - { - "type": "nypl:Oclc", - "value": "906201830" - }, - { - "type": "bf:Lccn", - "value": "USBC15000101" - }, - { - "type": "bf:Lccn", - "value": "USBC15300128" - }, - { - "type": "bf:Lccn", - "value": "USBC19900769" - }, - { - "type": "bf:Lccn", - "value": "USBC15200122" - }, - { - "type": "bf:Lccn", - "value": "USBC19900784" - }, - { - "type": "bf:Lccn", - "value": "USBC19900780" - }, - { - "type": "bf:Lccn", - "value": "USBC15000120" - }, - { - "type": "bf:Lccn", - "value": "USBC10000455" - }, - { - "type": "bf:Lccn", - "value": "USBC19900774" - }, - { - "type": "bf:Lccn", - "value": "USBC10000454" - }, - { - "type": "bf:Lccn", - "value": "USBC19900766" - }, - { - "type": "bf:Lccn", - "value": "USBC19900771" - }, - { - "type": "bf:Lccn", - "value": "USBC10000456" - }, - { - "type": "bf:Lccn", - "value": "USBC19900775" - }, - { - "type": "bf:Lccn", - "value": "USBC19900768" - }, - { - "type": "bf:Lccn", - "value": "USBC15100129" - }, - { - "type": "bf:Lccn", - "value": "USBC19900777" - }, - { - "type": "bf:Lccn", - "value": "USBC15700152" - }, - { - "type": "bf:Lccn", - "value": "USBC15600125" - }, - { - "type": "bf:Lccn", - "value": "USBC19900772" - }, - { - "type": "bf:Lccn", - "value": "USBC10000457" - }, - { - "type": "bf:Lccn", - "value": "USBC15000121" - }, - { - "type": "bf:Lccn", - "value": "USBC15200154" - }, - { - "type": "bf:Lccn", - "value": "USBC15000105" - }, - { - "type": "bf:Lccn", - "value": "USBC15600126" - }, - { - "type": "bf:Lccn", - "value": "USBC15000152" - }, - { - "type": "bf:Lccn", - "value": "USBC15200155" - }, - { - "type": "bf:Lccn", - "value": "USBC15200156" - }, - { - "type": "bf:Lccn", - "value": "USBC15000153" - }, - { - "type": "bf:Lccn", - "value": "USBC15100130" - }, - { - "type": "bf:Lccn", - "value": "USBC15800175" - }, - { - "type": "bf:Lccn", - "value": "USBC15800191" - }, - { - "type": "bf:Lccn", - "value": "USBC15200157" - }, - { - "type": "bf:Lccn", - "value": "USBC19900778" - }, - { - "type": "bf:Lccn", - "value": "USBC15200161" - }, - { - "type": "bf:Lccn", - "value": "USBC15200158" - }, - { - "type": "bf:Lccn", - "value": "USBC19900782" - }, - { - "type": "bf:Lccn", - "value": "USBC15800192" - }, - { - "type": "bf:Lccn", - "value": "USBC15700154" - }, - { - "type": "bf:Lccn", - "value": "USBC15200118" - }, - { - "type": "bf:Lccn", - "value": "USBC19505231" - }, - { - "type": "bf:Lccn", - "value": "USBC15800193" - }, - { - "type": "bf:Lccn", - "value": "USBC19900767" - }, - { - "type": "bf:Lccn", - "value": "USBC15800194" - }, - { - "type": "bf:Lccn", - "value": "USBC15200008" - }, - { - "type": "bf:Lccn", - "value": "USBC15200160" - }, - { - "type": "bf:Identifier", - "value": "886970740920 RCA Records" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)906201830" - } - ], - "dateEndYear": [ - 1949 - ], - "updatedAt": 1711035411564, - "publicationStatement": [ - "[New York] : RCA Red Seal, [2007]", - "℗2007" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:21890516", - "urn:oclc:906201830", - "urn:lccn:USBC15000101", - "urn:lccn:USBC15300128", - "urn:lccn:USBC19900769", - "urn:lccn:USBC15200122", - "urn:lccn:USBC19900784", - "urn:lccn:USBC19900780", - "urn:lccn:USBC15000120", - "urn:lccn:USBC10000455", - "urn:lccn:USBC19900774", - "urn:lccn:USBC10000454", - "urn:lccn:USBC19900766", - "urn:lccn:USBC19900771", - "urn:lccn:USBC10000456", - "urn:lccn:USBC19900775", - "urn:lccn:USBC19900768", - "urn:lccn:USBC15100129", - "urn:lccn:USBC19900777", - "urn:lccn:USBC15700152", - "urn:lccn:USBC15600125", - "urn:lccn:USBC19900772", - "urn:lccn:USBC10000457", - "urn:lccn:USBC15000121", - "urn:lccn:USBC15200154", - "urn:lccn:USBC15000105", - "urn:lccn:USBC15600126", - "urn:lccn:USBC15000152", - "urn:lccn:USBC15200155", - "urn:lccn:USBC15200156", - "urn:lccn:USBC15000153", - "urn:lccn:USBC15100130", - "urn:lccn:USBC15800175", - "urn:lccn:USBC15800191", - "urn:lccn:USBC15200157", - "urn:lccn:USBC19900778", - "urn:lccn:USBC15200161", - "urn:lccn:USBC15200158", - "urn:lccn:USBC19900782", - "urn:lccn:USBC15800192", - "urn:lccn:USBC15700154", - "urn:lccn:USBC15200118", - "urn:lccn:USBC19505231", - "urn:lccn:USBC15800193", - "urn:lccn:USBC19900767", - "urn:lccn:USBC15800194", - "urn:lccn:USBC15200008", - "urn:lccn:USBC15200160", - "urn:identifier:886970740920 RCA Records", - "urn:identifier:(OCoLC)906201830" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Songs (High voice) with orchestra.", - "Popular music.", - "Musicals -- Excerpts.", - "Motion picture music -- Excerpts." - ], - "titleDisplay": [ - "The essential Mario Lanza." - ], - "uri": "b21890516", - "lccClassification": [ - "M1613.L36 E87 2007" - ], - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=886970740920" - } - ], - "placeOfPublication": [ - "[New York]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Disc 1: Be my love (from The toast of New Orleans) -- Drink, drink, drink (from The student prince) -- La donna è mobile (from Rigoletto) -- Danny boy -- Granada -- Because you're mine (from Because you're mine) -- Ave Maria -- Valencia -- The loveliest night of the year -- Song of India -- Because -- O sole mio -- The donkey serenade (from Firefly) -- If I loved you (from Carousel) -- Serenade (from The student prince) -- Funiculi, funicula -- Golden days (from The student prince) -- Arrivederci, Roma (featured in The seven hills of Rome) -- You'll never walk alone -- Beloved (from The student prince) -- Come prima (from For the first time) -- E lucevan le stelle (from Tosca) -- Santa Lucia -- I'll walk with God.", - "Disc 2: And this is my beloved (from Kismet) -- Cielo e mar (from La Gioconda) -- Deep in my heart, dear (from The student prince) -- Core 'ngrato -- Una furtiva lagrima (from L'elisir d'amore) -- Ah! Sweet mystery of life -- Canta pe' me -- Santa Lucia luntana -- Memories -- With a song in my hear (from Spring is Here) -- O paradiso! (from L'Africaine) -- Temptation (from Going Hollywood) -- Celeste Aida (from Aida featured in The great Caruso) -- Fenesta che lucive -- A night to remember -- Non ti scordar di me -- Somewhere a voice is calling -- Softly, as in a morning sunrise -- All the things you are (from Very warm for May) -- Passione -- One night of love (from One night of love) -- La danza." - ] - }, - "sort": [ - 7.6837106, - "b21890516" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb299666", - "_score": 6.7491417, - "_source": { - "extent": [ - "201 pages : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A Peregrine Smith book\"--Title page verso.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Rare Book copy: In original dust jacket.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 191-199).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Folk poetry, American", - "Cowboys", - "Cowboys -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G.M. Smith" - ], - "description": [ - "This collection of poems was chosen from among 10,000 gathered from cowboy reciters, ranch poets and from a library of over 200 published works of cowboy verse. One third of the poems are classics that have proven their vitality by having lived in the hearts and minds of cowboys and ranchers for decades. The remaining two-thirds are new, created within the last few years." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cowboy poetry : a gathering" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - " 85010833 " - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Cannon, Hal, 1948-", - "Knudson, J. Scott" - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "299666" - }, - { - "type": "bf:Isbn", - "value": "0879052082" - }, - { - "type": "bf:Isbn", - "value": "9780879052089" - }, - { - "type": "bf:Isbn", - "value": "087905204X" - }, - { - "type": "bf:Isbn", - "value": "9780879052041" - }, - { - "type": "bf:Isbn", - "value": "0879052112" - }, - { - "type": "bf:Isbn", - "value": "9780879052119" - }, - { - "type": "bf:Lccn", - "value": " 85010833 " - }, - { - "type": "nypl:Oclc", - "value": "ocm12107195" - }, - { - "type": "nypl:Oclc", - "value": "12107195" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-2362365" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm12107195" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12107195" - }, - { - "type": "bf:Identifier", - "value": "299666" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1003845379" - } - ], - "idOclc": [ - "ocm12107195", - "12107195", - "SCSB-2362365" - ], - "holdings": [], - "updatedAt": 1680822073165, - "publicationStatement": [ - "Salt Lake City : G.M. Smith, 1985." - ], - "identifier": [ - "urn:bnum:299666", - "urn:isbn:0879052082", - "urn:isbn:9780879052089", - "urn:isbn:087905204X", - "urn:isbn:9780879052041", - "urn:isbn:0879052112", - "urn:isbn:9780879052119", - "urn:lccn: 85010833 ", - "urn:oclc:ocm12107195", - "urn:oclc:12107195", - "urn:oclc:SCSB-2362365", - "urn:undefined:(OCoLC)ocm12107195", - "urn:undefined:(OCoLC)12107195", - "urn:undefined:299666", - "urn:undefined:(OCoLC)1003845379" - ], - "idIsbn": [ - "0879052082", - "9780879052089", - "087905204X", - "9780879052041", - "0879052112", - "9780879052119" - ], - "genreForm": [ - "Cowboy poetry.", - "Poetry." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk poetry, American.", - "Cowboys -- Poetry.", - "Cowboys." - ], - "titleDisplay": [ - "Cowboy poetry : a gathering / edited and with an introduction by Hal Cannon." - ], - "uri": "cb299666", - "lccClassification": [ - "PS477.5.C67 C68 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Salt Lake City" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Cowboy's soliloquy / Allen McCanless -- Sierry Petes / Gail Gardner -- Duded wrangler / Gail Gardner -- Zebra dun / Anonymous -- Gol-darned wheel / Anonymous -- Rain on the range / S. Omar Barker -- Bear ropin' buckaroo / S. Omar Barker -- Jack Potter's courtin' / S. Omar Barker -- Cowboy's Christmas Ball / Larry Chittendon -- Alkali Pete hits town / T.J. McCoy -- Silver Jack / Anonymous -- Blizzard / Eugene Ware -- Windy Bill / Anonymous -- D-2 horse wrangler / D.J. O'Malley -- Cowboy's dance song / James Barton Adams -- That little blue roan / Bruce Kiskaddon -- When they've finished shipping cattle in the Fall / Bruce Kiskaddon -- Cowboy's dream / Bruce Kiskaddon -- Old night hawk / Bruce Kiskaddon -- Boomer Johnson / Henry Herbert Knibbs -- Murph and McClop / Anonymous -- Silver Bells and Golden Spurs / Anonymous -- Hell in Texas / Anonymous -- Strawberry Roan / Curley Fletcher -- Flyin' outlaw / Curley Fletcher -- Cowboy's prayer / Curley Fletcher -- Cowboy's prayer / Badger Clark -- \"Bueno,\" which in Spanish means good / Nyle A. Henderson -- How many cows? / Nyle A. Henderson -- Ol' Edgar Martin / Carlos Ashley -- To be a top hand / Georgie sicking -- Old Tuff / Georgie Sicking -- For Jeff / Jon Bowerman -- Tribute to Freckles and Tornado / Jon Bowerman -- Grey's River Roundup / Howard Norskog -- Book / Waddie Mitchell -- Throw-back / Waddie Mitchell -- One Red Rose / Ernie Fanning -- Vanishing Valley / Ernie Fanning -- Saturday Night in Woody / Jesse Smith -- Saddle tramp / Buck Wilkerson -- Kid solos / Bob Schild -- Two of a kind / Bob Schild -- Matching green ribbon / Jim Hofer -- Time to stay, a time to go / Baxter Black -- Big high and lonesome / Baxter Black -- Poets gathering, 1985 / Charles A. Kortes -- Greasin' the miles / Nick Johnson -- Dudes / Nick Johnson -- Bellerin' and bawlin' / Linda Ash -- Great Wanagan Creek flood / Bill Lowman -- So long / Ross Knox -- Easy chairs and saddle sores / Ross Knox -- Dying times / Ross Knox -- Old horse / Don Ian Smith -- Open range / Melvin L. Whipple -- Voices in the night / Melvin L. Whipple -- Chookaloski Mare / Lucky Whipple -- Buckin' horse ballet / Lucky Whipple -- Buckskin Flats / Gorden Eastman -- No imposter / Duane Reece -- Cows and logs / Harold Otto -- Range cow in winter / Vern Mortensen -- Young fellers / R.O. Munn -- Gathering cattle in the Deertracks Pasture / Drummond Hadley -- Old Cowman / Dick Gibford -- Cowboy's toast / Dick Gibford -- Last Buckaroo / Dick Gibford -- Glow / Bill Simpson -- Like it or not / Bill Simpson -- Cowboy's favorite / Barney Nelson -- Fill up those glasses, Bartender / Jim Bollers -- Early morning roundup / Owen Barton -- My Ol' Stetson / Owen Barton -- Going to the Shawnee Rodeo / Don Bell -- Reincarnation / Wallace McRae -- Lease hound / Wallace McRae -- Spring / Vess Quinlan." - ], - "idIsbn_clean": [ - "0879052082", - "9780879052089", - "087905204X", - "9780879052041", - "0879052112", - "9780879052119" - ], - "dimensions": [ - "18 cm" - ] - }, - "sort": [ - 6.7491417, - "cb299666" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb299666", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci4249477", - "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": [ - "PS477.5.C67 C68 1985" - ], - "identifierV2": [ - { - "value": "PS477.5.C67 C68 1985", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "CU71452699" - } - ], - "physicalLocation": [ - "PS477.5.C67 C68 1985" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU71452699" - ], - "idBarcode": [ - "CU71452699" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aPS477.5.C67 C68 001985" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb11012105", - "_score": 5.1511173, - "_source": { - "extent": [ - "1 audio disc : analog, 33 1/3 rpm, stereo ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular instrumental music.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Popular instrumental music", - "Popular instrumental music -- Italy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Beat Records Co." - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A way to remember" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Alessandroni, Alessandro" - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Serie Orbiter" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Alessandro Alessandroni Orchestra, instrumentalist. http://id.loc.gov/vocabulary/relators/itr" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "11012105" - }, - { - "type": "nypl:Oclc", - "value": "ocn894917168" - }, - { - "type": "nypl:Oclc", - "value": "894917168" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5772470" - }, - { - "type": "bf:Identifier", - "value": "BL 4022 Beat Records" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn894917168" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)894917168" - }, - { - "type": "bf:Identifier", - "value": "(NNC)11012105" - }, - { - "type": "bf:Identifier", - "value": "11012105" - } - ], - "idOclc": [ - "ocn894917168", - "894917168", - "SCSB-5772470" - ], - "uniformTitle": [ - "Serie Orbiter." - ], - "dateEndYear": [ - 1984 - ], - "holdings": [], - "updatedAt": 1684548572680, - "publicationStatement": [ - "Roma : Beat Records Co., [1984], ℗1984." - ], - "identifier": [ - "urn:bnum:11012105", - "urn:oclc:ocn894917168", - "urn:oclc:894917168", - "urn:oclc:SCSB-5772470", - "urn:undefined:BL 4022 Beat Records", - "urn:undefined:(OCoLC)ocn894917168", - "urn:undefined:(OCoLC)894917168", - "urn:undefined:(NNC)11012105", - "urn:undefined:11012105" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "Popular instrumental music -- Italy." - ], - "titleDisplay": [ - "A way to remember / music by Alessandro Alessandroni." - ], - "uri": "cb11012105", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Enchanted coast.", - "Woman\\u0027s perfume.", - "Toast for two.", - "Down the market.", - "Taormina sand.", - "Hopeful trip.", - "Romantic nature.", - "Portrait of love.", - "Romantic story.", - "Little tale.", - "Brightfull path.", - "Back in Venice." - ], - "tableOfContents": [ - "Romantic nature (2:34) -- Portrait of love (3:20) -- A romantic story (3:15) -- Little tale (3:26) -- Brightfull path (3:20) -- Back in Venice (2:42) -- Enchanted coast (2:51) -- Woman\\u0027s perfume (2:45) -- Toast for two (2:48) -- Down the market (2:45) -- Taormina sand (2:25) -- Hopeful trip (2:37)." - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 5.1511173, - "cb11012105" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb11012105", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci8609844", - "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": [ - "SNK14669" - ], - "identifierV2": [ - { - "value": "SNK14669", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MRS0146692" - } - ], - "physicalLocation": [ - "SNK14669" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MRS0146692" - ], - "idBarcode": [ - "MRS0146692" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Audio" - ], - "shelfMark_sort": "aSNK014669" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21903200", - "_score": 3.965453, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Note", - "label": "Contains material previously released 1955-2003.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Sung in French, German, Italian and Russian.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on hard copy version record.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:mul", - "label": "Multiple languages" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2006 - ], - "dateEndString": [ - "1955" - ], - "title": [ - "100 best opera classics." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2006" - ], - "idLccn": [ - "GBAYC9000585", - "GBAYC9000587", - "GBAYC8401060", - "GBAYC8401079", - "DEC628600585", - "GBAYC9001019", - "GBAYC8805193", - "GBAYC9601618", - "GBAYC0001344", - "GBAYC9701116", - "GBAYC8905921", - "GBAYC9502658", - "GBAYC8804683", - "GBAYC0201550", - "GBAYC9704930", - "GBAYC9103775", - "GBAYC9302388", - "GBAYC8900427", - "GBAYC8704013", - "GBAYC0302254", - "GBAYC8903581", - "FRZ110200072", - "FRZ118306242", - "FRZ118201366", - "GBAYC0301121", - "FRZ118503335", - "FRZ110000085", - "GBAYC9704997", - "GBAYC9603021", - "FRZ116506252", - "FRZ110100171", - "DEA340703103", - "GBAYC0001193", - "GBAYC0001272", - "GBAYC9004965", - "GBAYC8804784", - "GBAYC8100412", - "DEC628600562", - "GBAYC9104344", - "FRZ118400035", - "GBAYC0001295", - "GBAYC9503506", - "GBAYC9701681", - "GBAYC0001373", - "GBAYC9602461", - "GBAYC9001881", - "GBAYC9401069", - "GBAYC8501583", - "GBAYC9701412", - "GBAYC8401258", - "FRZ116106176", - "GBAYC8700809", - "GBAYC0003709", - "GBAYC9701159", - "GBAYC0302226", - "GBAYC9402594", - "FRZ117806277", - "FRZ116106182", - "FRZ116401230", - "FRZ116105853", - "FRZ110000098", - "FRZ116806355", - "FRZ115901120", - "GBAYC9401453", - "GBAYC0101324", - "FRZ116106081", - "GBAYC8501416", - "GBAYC9402015", - "GBAYC8802512", - "GBAYC8600643", - "GBAYC0201426", - "GBAYC9001060", - "GBAYC8600596", - "GBAYC0300835", - "FRZ118901772", - "GBAYC9704313", - "FRZ110200604", - "GBAYC9502659", - "GBAYC8603110", - "GBAYC0201886", - "DEC629200551", - "GBAYC9900737", - "GBAYC9005484", - "FRZ118900350", - "FRZ115707569", - "FRZ116806347", - "FRZ118703093", - "FRZ116105851", - "GBAYC0301920", - "GBAYC9103774", - "GBAYC8800934", - "GBAYC8501246", - "GBAYC8901353", - "GBAYC8801134", - "GBAYC8000072", - "GBAYC9701686", - "GBAYC9602783", - "GBAYC8301047", - "GBAYC9701139" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "EMI (Firm)" - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "878384789" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21903200" - }, - { - "type": "nypl:Oclc", - "value": "878384789" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9000585" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9000587" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401060" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401079" - }, - { - "type": "bf:Lccn", - "value": "DEC628600585" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001019" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8805193" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9601618" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001344" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701116" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8905921" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9502658" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8804683" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201550" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704930" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9103775" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9302388" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8900427" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8704013" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0302254" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8903581" - }, - { - "type": "bf:Lccn", - "value": "FRZ110200072" - }, - { - "type": "bf:Lccn", - "value": "FRZ118306242" - }, - { - "type": "bf:Lccn", - "value": "FRZ118201366" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0301121" - }, - { - "type": "bf:Lccn", - "value": "FRZ118503335" - }, - { - "type": "bf:Lccn", - "value": "FRZ110000085" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704997" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9603021" - }, - { - "type": "bf:Lccn", - "value": "FRZ116506252" - }, - { - "type": "bf:Lccn", - "value": "FRZ110100171" - }, - { - "type": "bf:Lccn", - "value": "DEA340703103" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001193" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001272" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9004965" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8804784" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8100412" - }, - { - "type": "bf:Lccn", - "value": "DEC628600562" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9104344" - }, - { - "type": "bf:Lccn", - "value": "FRZ118400035" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001295" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9503506" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701681" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001373" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9602461" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001881" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9401069" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501583" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701412" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401258" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106176" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8700809" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0003709" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701159" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0302226" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9402594" - }, - { - "type": "bf:Lccn", - "value": "FRZ117806277" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106182" - }, - { - "type": "bf:Lccn", - "value": "FRZ116401230" - }, - { - "type": "bf:Lccn", - "value": "FRZ116105853" - }, - { - "type": "bf:Lccn", - "value": "FRZ110000098" - }, - { - "type": "bf:Lccn", - "value": "FRZ116806355" - }, - { - "type": "bf:Lccn", - "value": "FRZ115901120" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9401453" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0101324" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106081" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501416" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9402015" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8802512" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8600643" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201426" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001060" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8600596" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0300835" - }, - { - "type": "bf:Lccn", - "value": "FRZ118901772" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704313" - }, - { - "type": "bf:Lccn", - "value": "FRZ110200604" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9502659" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8603110" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201886" - }, - { - "type": "bf:Lccn", - "value": "DEC629200551" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9900737" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9005484" - }, - { - "type": "bf:Lccn", - "value": "FRZ118900350" - }, - { - "type": "bf:Lccn", - "value": "FRZ115707569" - }, - { - "type": "bf:Lccn", - "value": "FRZ116806347" - }, - { - "type": "bf:Lccn", - "value": "FRZ118703093" - }, - { - "type": "bf:Lccn", - "value": "FRZ116105851" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0301920" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9103774" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8800934" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501246" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8901353" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8801134" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8000072" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701686" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9602783" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8301047" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701139" - }, - { - "type": "bf:Identifier", - "value": "0724358621150 EMI Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)878384789" - } - ], - "dateEndYear": [ - 1955 - ], - "updatedAt": 1711340707671, - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:21903200", - "urn:oclc:878384789", - "urn:lccn:GBAYC9000585", - "urn:lccn:GBAYC9000587", - "urn:lccn:GBAYC8401060", - "urn:lccn:GBAYC8401079", - "urn:lccn:DEC628600585", - "urn:lccn:GBAYC9001019", - "urn:lccn:GBAYC8805193", - "urn:lccn:GBAYC9601618", - "urn:lccn:GBAYC0001344", - "urn:lccn:GBAYC9701116", - "urn:lccn:GBAYC8905921", - "urn:lccn:GBAYC9502658", - "urn:lccn:GBAYC8804683", - "urn:lccn:GBAYC0201550", - "urn:lccn:GBAYC9704930", - "urn:lccn:GBAYC9103775", - "urn:lccn:GBAYC9302388", - "urn:lccn:GBAYC8900427", - "urn:lccn:GBAYC8704013", - "urn:lccn:GBAYC0302254", - "urn:lccn:GBAYC8903581", - "urn:lccn:FRZ110200072", - "urn:lccn:FRZ118306242", - "urn:lccn:FRZ118201366", - "urn:lccn:GBAYC0301121", - "urn:lccn:FRZ118503335", - "urn:lccn:FRZ110000085", - "urn:lccn:GBAYC9704997", - "urn:lccn:GBAYC9603021", - "urn:lccn:FRZ116506252", - "urn:lccn:FRZ110100171", - "urn:lccn:DEA340703103", - "urn:lccn:GBAYC0001193", - "urn:lccn:GBAYC0001272", - "urn:lccn:GBAYC9004965", - "urn:lccn:GBAYC8804784", - "urn:lccn:GBAYC8100412", - "urn:lccn:DEC628600562", - "urn:lccn:GBAYC9104344", - "urn:lccn:FRZ118400035", - "urn:lccn:GBAYC0001295", - "urn:lccn:GBAYC9503506", - "urn:lccn:GBAYC9701681", - "urn:lccn:GBAYC0001373", - "urn:lccn:GBAYC9602461", - "urn:lccn:GBAYC9001881", - "urn:lccn:GBAYC9401069", - "urn:lccn:GBAYC8501583", - "urn:lccn:GBAYC9701412", - "urn:lccn:GBAYC8401258", - "urn:lccn:FRZ116106176", - "urn:lccn:GBAYC8700809", - "urn:lccn:GBAYC0003709", - "urn:lccn:GBAYC9701159", - "urn:lccn:GBAYC0302226", - "urn:lccn:GBAYC9402594", - "urn:lccn:FRZ117806277", - "urn:lccn:FRZ116106182", - "urn:lccn:FRZ116401230", - "urn:lccn:FRZ116105853", - "urn:lccn:FRZ110000098", - "urn:lccn:FRZ116806355", - "urn:lccn:FRZ115901120", - "urn:lccn:GBAYC9401453", - "urn:lccn:GBAYC0101324", - "urn:lccn:FRZ116106081", - "urn:lccn:GBAYC8501416", - "urn:lccn:GBAYC9402015", - "urn:lccn:GBAYC8802512", - "urn:lccn:GBAYC8600643", - "urn:lccn:GBAYC0201426", - "urn:lccn:GBAYC9001060", - "urn:lccn:GBAYC8600596", - "urn:lccn:GBAYC0300835", - "urn:lccn:FRZ118901772", - "urn:lccn:GBAYC9704313", - "urn:lccn:FRZ110200604", - "urn:lccn:GBAYC9502659", - "urn:lccn:GBAYC8603110", - "urn:lccn:GBAYC0201886", - "urn:lccn:DEC629200551", - "urn:lccn:GBAYC9900737", - "urn:lccn:GBAYC9005484", - "urn:lccn:FRZ118900350", - "urn:lccn:FRZ115707569", - "urn:lccn:FRZ116806347", - "urn:lccn:FRZ118703093", - "urn:lccn:FRZ116105851", - "urn:lccn:GBAYC0301920", - "urn:lccn:GBAYC9103774", - "urn:lccn:GBAYC8800934", - "urn:lccn:GBAYC8501246", - "urn:lccn:GBAYC8901353", - "urn:lccn:GBAYC8801134", - "urn:lccn:GBAYC8000072", - "urn:lccn:GBAYC9701686", - "urn:lccn:GBAYC9602783", - "urn:lccn:GBAYC8301047", - "urn:lccn:GBAYC9701139", - "urn:identifier:0724358621150 EMI Classics", - "urn:identifier:(OCoLC)878384789" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "100 best opera classics." - ], - "uri": "b21903200", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724358621150" - } - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Hundred best opera classics", - "One hundred best opera classics" - ], - "tableOfContents": [ - "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46).", - "Faust. Le veau d'or est toujours debout / Gounod (2:03) -- Lakmé. Oú va la jeune hindoue? / Delibes (6:29) -- Roméo et Juliette. L'amour, l'amour-- ah! Lève-toi, soleil / Gounod (4:18) -- Manon. Allons! Il le faut-- Adieu notre petite table / Massenet (3:49) -- Werther. Toute mon âme est là-- pourquoi me réveiller / Massenet (2:36) -- La jolie fille de Perth. Quand la flamme de l'amour / Bizet (4:57) -- Carmen. L'amour est un oiseua rebelle / Bizet (4:35) -- Les Pècheurs de perles. À cette voix-- je crois entendre encore / Bizet (4:32) -- La damnation de Faust. Une puce gentille / Berlioz (1:24) -- Les Troyens. Je vais mourir-- Adieu, fière cité / Berlioz (6:00) -- Samson et Delilah. Mon coeur s'ouvre à ta voix / Saint-Saëns (5:17) -- Tannhäuser. Wie todesahnung-- O du mein holder Abendstern / Wagner (4:15) -- Der fliegende Holländer. Johohoe! Traft ihr das schiff im Meere an? / Wagner (8:12) -- Lohengrin. In fernem land / Wagner (4:42) -- Siegfried. Heil dir, Sonne! / Wagner (5:17) -- Tristan und Isolde. Mild und leise / Wagner (7:19).", - "Orfeo ed Euridice. Che farò senza Euridice? / Gluck (5:26) -- Die Zauberflöte. Der Vogelfänger bin ich ja / Mozart (2:36) -- Don Giovanni. Finch'han dal vino / Mozart (1:27) -- Le nozze di Figaro. E Susanna non vien!-- Dove sono / Mozart (6:27) -- Fidelio. Abscheulicher! / Beethoven (8:18) -- Guillaume Tell. Ne m'abandonne pas, espoir de la vengeance-- Asile héréditaire / Rossini (6:59) -- Il barbiere di siviglia. Largo al factotum / rossini (4:42) -- Don Carlo. Ella giammai m'amò! / Verdi (7:32) -- Rigoletto. La donna è mobile / Rossini (2:14) -- Il trovatore. Di quella pira / Rossini (2:02) -- Otello. Esultate! (2:24) ; Dio! mi potevi scagliar (4:39) / Rossini -- Tosca. Vissi d'arte, vissi d'amore / Puccini (3:00) -- Turandot. In questa reggia (5:58) ; Tanto amore (2:22) / Puccini -- Gianni Schicchi. O mio babbino caro / Puccini (2:40) -- L'amico Fritz. Ed anche beppe amo / Mascagni (3:16) -- Adriana Lecouvreur. Poveri fiori / Cilea (3:10) -- Andrea Chénier. Come un bel di di maggio / Giordano (3:04).", - "Faust. Les grande seigneurs-- Ah! Je ris de me voir si belle / Gounod (5:50) -- Le Jongleur de Notre-Dame. Marie, avec l'enfant Jésus / Massenet (5:30) -- Mirielle. Heureux petit berger / Massenet (2:05) -- Mignon. Connais-tu le pays (5:39) ; Elle ne croyait pas dans sa candeur (3:31) / Thomas -- Carmen. Votre toast, je peux vous le rendre-- Toréadore / Bizet (4:55) -- Les contes d'Hoffmann. Les oiseaux dans la charmille / Offenbach (5:47) -- La damnation de Faust. Maintenant, chantons-- Devant la maison de celui qui t'adore / Berlioz (2:16) -- Louise. Depuis le jour / Charpentier (5:34) -- Der Rosenkavalier. Da geht er hin / Richard Strauss (5:22) -- Lohengrin. Einsam in trüben Tagen / Wagner (6:02) -- Tannhäuser. Dich, teure Halle / Wagner (4:44) -- Die Walküre. Leb wohl, du kühnes, herrliches Kind (15:41) ; Hojotoho hojotoho! (5:56) / Wagner.", - "Le nozze di Figaro. Non più andrai / Mozart (3:38) -- Don Giovanni. Là ci darem la mano / Mozart (3:14) -- Die Zauberflöte. Duo: pa-pa-pa / Mozart (2:22) -- Così fan tutte. Soava sia il vento / Mozart (3:02) -- Norma. Mira, o Norma / Bellini (7:28) -- Lucia di Lammermoor. Il dolce suono / Donizetti (16:43) -- Don Pasquale. Com'è gentil / Donizetti (3:50) -- Il Barbiere di Siviglia. Una voce poco fa / Rossini (6:18) -- La traviata. Libiamo ne' lieti calici / Verdi (2:51) -- Rigoletto. Gualtier malde!-- Como nome / Verdi (6:41) -- Aida. Ritorna vincitor / Verdi (6:24) -- Otello. Ave Maria / Verdi (5:11) -- Turandot. Nessum dorma / Puccini (2:49) -- La Bohème. Che gelida manina / Puccini (4:27) -- La Wally. Ebben? Ne andrò lantana / Catalani (4:20).", - "Le postillon de Lonjumeau. Mes amis, écoutez l'histoire / Adam (3:45) -- La muette de portici. Mieux vaut mourir-- Amour sacré de la patrie / Auber (5:46) -- Roméo et Juliette. Ah! je veux vivre dans ce rève / Gounod (3:50) -- Le roi d'Ys. Puisqu'on ne peut fléchir-- Vainement, ma bien-aimée / Lalo (3:28) -- Manon. Suis-je gentille ainsi?-- Je marche sur tous les chemins / Massenet (3:03) -- Les contes d'Hoffman. Belle nuit, ô nuit d'amour / Offenbach (4:19) -- Carmen. Le fleur que tu m'avais jetée / Bizet (4:26) -- Les pêcheurs de perles. C'est toi!-- Au fond du temple saint / Bizet (7:27) -- Werther. Werther, Werther, qui m'aurait dit-- Ces lettres! / Massenet (7:27) -- Lakmé. Viens, Malika / Delibes (5:52) -- Thaïs. Ah! Je suis seule enfin-- Dis-moi que je suis belle / Massenet (6:41) -- Faust. Alerte, alerte!-- Anges purs, anges radieux / Gounod (2:30) -- Boris Godunov. Boris's farewell / Mussorgsky (5:58) -- Oberon. Schreckensschwurl / Weber (2:12) -- Die Meistersinger von Nürnberg. Die \"selige Morgentraum-Deutweise\"-- Selig, wie die Sonne / Wagner (5:31) -- Siegfried. Was au besten er kann-- Nothung! Nothung! / Wagner (5:53)." - ] - }, - "sort": [ - 3.965453, - "b21903200" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21903183", - "_score": 3.9592814, - "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Note", - "label": "Contains material previously released 1955-2003.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Sung in French, German, Italian and Russian.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on hard copy version record.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "EMI Classics" - ], - "language": [ - { - "id": "lang:mul", - "label": "Multiple languages" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2006 - ], - "dateEndString": [ - "1955" - ], - "title": [ - "100 best opera classics." - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2006" - ], - "idLccn": [ - "GBAYC9000585", - "GBAYC9000587", - "GBAYC8401060", - "GBAYC8401079", - "DEC628600585", - "GBAYC9001019", - "GBAYC8805193", - "GBAYC9601618", - "GBAYC0001344", - "GBAYC9701116", - "GBAYC8905921", - "GBAYC9502658", - "GBAYC8804683", - "GBAYC0201550", - "GBAYC9704930", - "GBAYC9103775", - "GBAYC9302388", - "GBAYC8900427", - "GBAYC8704013", - "GBAYC0302254", - "GBAYC8903581", - "FRZ110200072", - "FRZ118306242", - "FRZ118201366", - "GBAYC0301121", - "FRZ118503335", - "FRZ110000085", - "GBAYC9704997", - "GBAYC9603021", - "FRZ116506252", - "FRZ110100171", - "DEA340703103", - "GBAYC0001193", - "GBAYC0001272", - "GBAYC9004965", - "GBAYC8804784", - "GBAYC8100412", - "DEC628600562", - "GBAYC9104344", - "FRZ118400035", - "GBAYC0001295", - "GBAYC9503506", - "GBAYC9701681", - "GBAYC0001373", - "GBAYC9602461", - "GBAYC9001881", - "GBAYC9401069", - "GBAYC8501583", - "GBAYC9701412", - "GBAYC8401258", - "FRZ116106176", - "GBAYC8700809", - "GBAYC0003709", - "GBAYC9701159", - "GBAYC0302226", - "GBAYC9402594", - "FRZ117806277", - "FRZ116106182", - "FRZ116401230", - "FRZ116105853", - "FRZ110000098", - "FRZ116806355", - "FRZ115901120", - "GBAYC9401453", - "GBAYC0101324", - "FRZ116106081", - "GBAYC8501416", - "GBAYC9402015", - "GBAYC8802512", - "GBAYC8600643", - "GBAYC0201426", - "GBAYC9001060", - "GBAYC9701139", - "GBAYC8301047", - "GBAYC9602783", - "GBAYC9701686", - "GBAYC8000072", - "GBAYC8801134", - "GBAYC8901353", - "GBAYC9005484", - "GBAYC9900737", - "DEC629200551", - "GBAYC0201886", - "GBAYC8603110", - "GBAYC9502659", - "FRZ110200604", - "GBAYC9704313", - "FRZ118901772", - "GBAYC0300835", - "GBAYC8600596", - "FRZ118900350", - "FRZ115707569", - "FRZ116806347", - "FRZ118703093", - "FRZ116105851", - "GBAYC0301920", - "GBAYC9103774", - "GBAYC8800934", - "GBAYC8501246" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "EMI (Firm)" - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "877956368" - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "21903183" - }, - { - "type": "nypl:Oclc", - "value": "877956368" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9000585" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9000587" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401060" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401079" - }, - { - "type": "bf:Lccn", - "value": "DEC628600585" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001019" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8805193" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9601618" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001344" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701116" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8905921" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9502658" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8804683" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201550" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704930" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9103775" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9302388" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8900427" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8704013" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0302254" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8903581" - }, - { - "type": "bf:Lccn", - "value": "FRZ110200072" - }, - { - "type": "bf:Lccn", - "value": "FRZ118306242" - }, - { - "type": "bf:Lccn", - "value": "FRZ118201366" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0301121" - }, - { - "type": "bf:Lccn", - "value": "FRZ118503335" - }, - { - "type": "bf:Lccn", - "value": "FRZ110000085" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704997" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9603021" - }, - { - "type": "bf:Lccn", - "value": "FRZ116506252" - }, - { - "type": "bf:Lccn", - "value": "FRZ110100171" - }, - { - "type": "bf:Lccn", - "value": "DEA340703103" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001193" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001272" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9004965" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8804784" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8100412" - }, - { - "type": "bf:Lccn", - "value": "DEC628600562" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9104344" - }, - { - "type": "bf:Lccn", - "value": "FRZ118400035" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001295" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9503506" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701681" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0001373" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9602461" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001881" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9401069" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501583" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701412" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8401258" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106176" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8700809" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0003709" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701159" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0302226" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9402594" - }, - { - "type": "bf:Lccn", - "value": "FRZ117806277" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106182" - }, - { - "type": "bf:Lccn", - "value": "FRZ116401230" - }, - { - "type": "bf:Lccn", - "value": "FRZ116105853" - }, - { - "type": "bf:Lccn", - "value": "FRZ110000098" - }, - { - "type": "bf:Lccn", - "value": "FRZ116806355" - }, - { - "type": "bf:Lccn", - "value": "FRZ115901120" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9401453" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0101324" - }, - { - "type": "bf:Lccn", - "value": "FRZ116106081" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501416" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9402015" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8802512" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8600643" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201426" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9001060" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701139" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8301047" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9602783" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9701686" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8000072" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8801134" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8901353" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9005484" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9900737" - }, - { - "type": "bf:Lccn", - "value": "DEC629200551" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0201886" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8603110" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9502659" - }, - { - "type": "bf:Lccn", - "value": "FRZ110200604" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9704313" - }, - { - "type": "bf:Lccn", - "value": "FRZ118901772" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0300835" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8600596" - }, - { - "type": "bf:Lccn", - "value": "FRZ118900350" - }, - { - "type": "bf:Lccn", - "value": "FRZ115707569" - }, - { - "type": "bf:Lccn", - "value": "FRZ116806347" - }, - { - "type": "bf:Lccn", - "value": "FRZ118703093" - }, - { - "type": "bf:Lccn", - "value": "FRZ116105851" - }, - { - "type": "bf:Lccn", - "value": "GBAYC0301920" - }, - { - "type": "bf:Lccn", - "value": "GBAYC9103774" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8800934" - }, - { - "type": "bf:Lccn", - "value": "GBAYC8501246" - }, - { - "type": "bf:Identifier", - "value": "0094637087954 EMI Classics" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)877956368" - } - ], - "dateEndYear": [ - 1955 - ], - "updatedAt": 1710991128225, - "publicationStatement": [ - "New York, NY : EMI Classics, [2006]" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:21903183", - "urn:oclc:877956368", - "urn:lccn:GBAYC9000585", - "urn:lccn:GBAYC9000587", - "urn:lccn:GBAYC8401060", - "urn:lccn:GBAYC8401079", - "urn:lccn:DEC628600585", - "urn:lccn:GBAYC9001019", - "urn:lccn:GBAYC8805193", - "urn:lccn:GBAYC9601618", - "urn:lccn:GBAYC0001344", - "urn:lccn:GBAYC9701116", - "urn:lccn:GBAYC8905921", - "urn:lccn:GBAYC9502658", - "urn:lccn:GBAYC8804683", - "urn:lccn:GBAYC0201550", - "urn:lccn:GBAYC9704930", - "urn:lccn:GBAYC9103775", - "urn:lccn:GBAYC9302388", - "urn:lccn:GBAYC8900427", - "urn:lccn:GBAYC8704013", - "urn:lccn:GBAYC0302254", - "urn:lccn:GBAYC8903581", - "urn:lccn:FRZ110200072", - "urn:lccn:FRZ118306242", - "urn:lccn:FRZ118201366", - "urn:lccn:GBAYC0301121", - "urn:lccn:FRZ118503335", - "urn:lccn:FRZ110000085", - "urn:lccn:GBAYC9704997", - "urn:lccn:GBAYC9603021", - "urn:lccn:FRZ116506252", - "urn:lccn:FRZ110100171", - "urn:lccn:DEA340703103", - "urn:lccn:GBAYC0001193", - "urn:lccn:GBAYC0001272", - "urn:lccn:GBAYC9004965", - "urn:lccn:GBAYC8804784", - "urn:lccn:GBAYC8100412", - "urn:lccn:DEC628600562", - "urn:lccn:GBAYC9104344", - "urn:lccn:FRZ118400035", - "urn:lccn:GBAYC0001295", - "urn:lccn:GBAYC9503506", - "urn:lccn:GBAYC9701681", - "urn:lccn:GBAYC0001373", - "urn:lccn:GBAYC9602461", - "urn:lccn:GBAYC9001881", - "urn:lccn:GBAYC9401069", - "urn:lccn:GBAYC8501583", - "urn:lccn:GBAYC9701412", - "urn:lccn:GBAYC8401258", - "urn:lccn:FRZ116106176", - "urn:lccn:GBAYC8700809", - "urn:lccn:GBAYC0003709", - "urn:lccn:GBAYC9701159", - "urn:lccn:GBAYC0302226", - "urn:lccn:GBAYC9402594", - "urn:lccn:FRZ117806277", - "urn:lccn:FRZ116106182", - "urn:lccn:FRZ116401230", - "urn:lccn:FRZ116105853", - "urn:lccn:FRZ110000098", - "urn:lccn:FRZ116806355", - "urn:lccn:FRZ115901120", - "urn:lccn:GBAYC9401453", - "urn:lccn:GBAYC0101324", - "urn:lccn:FRZ116106081", - "urn:lccn:GBAYC8501416", - "urn:lccn:GBAYC9402015", - "urn:lccn:GBAYC8802512", - "urn:lccn:GBAYC8600643", - "urn:lccn:GBAYC0201426", - "urn:lccn:GBAYC9001060", - "urn:lccn:GBAYC9701139", - "urn:lccn:GBAYC8301047", - "urn:lccn:GBAYC9602783", - "urn:lccn:GBAYC9701686", - "urn:lccn:GBAYC8000072", - "urn:lccn:GBAYC8801134", - "urn:lccn:GBAYC8901353", - "urn:lccn:GBAYC9005484", - "urn:lccn:GBAYC9900737", - "urn:lccn:DEC629200551", - "urn:lccn:GBAYC0201886", - "urn:lccn:GBAYC8603110", - "urn:lccn:GBAYC9502659", - "urn:lccn:FRZ110200604", - "urn:lccn:GBAYC9704313", - "urn:lccn:FRZ118901772", - "urn:lccn:GBAYC0300835", - "urn:lccn:GBAYC8600596", - "urn:lccn:FRZ118900350", - "urn:lccn:FRZ115707569", - "urn:lccn:FRZ116806347", - "urn:lccn:FRZ118703093", - "urn:lccn:FRZ116105851", - "urn:lccn:GBAYC0301920", - "urn:lccn:GBAYC9103774", - "urn:lccn:GBAYC8800934", - "urn:lccn:GBAYC8501246", - "urn:identifier:0094637087954 EMI Classics", - "urn:identifier:(OCoLC)877956368" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "100 best opera classics." - ], - "uri": "b21903183", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0094637087954" - } - ], - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Hundred best opera classics", - "One hundred best opera classics" - ], - "tableOfContents": [ - "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46) --", - "Faust. Le veau d'or est toujours debout / Gounod (2:03) -- Lakmé. Oú va la jeune hindoue? / Delibes (6:29) -- Roméo et Juliette. L'amour, l'amour-- ah! Lève-toi, soleil / Gounod (4:18) -- Manon. Allons! Il le faut-- Adieu notre petite table / Massenet (3:49) -- Werther. Toute mon âme est là-- pourquoi me réveiller / Massenet (2:36) -- La jolie fille de Perth. Quand la flamme de l'amour / Bizet (4:57) -- Carmen. L'amour est un oiseua rebelle / Bizet (4:35) -- Les Pècheurs de perles. À cette voix-- je crois entendre encore / Bizet (4:32) -- La damnation de Faust. Une puce gentille / Berlioz (1:24) -- Les Troyens. Je vais mourir-- Adieu, fière cité / Berlioz (6:00) -- Samson et Delilah. Mon coeur s'ouvre à ta voix / Saint-Saëns (5:17) -- Tannhäuser. Wie todesahnung-- O du mein holder Abendstern / Wagner (4:15) -- Der fliegende Holländer. Johohoe! Traft ihr das schiff im Meere an? / Wagner (8:12) -- Lohengrin. In fernem land / Wagner (4:42) -- Siegfried. Heil dir, Sonne! / Wagner (5:17) -- Tristan und Isolde. Mild und leise / Wagner (7:19).", - "Orfeo ed Euridice. Che farò senza Euridice? / Gluck (5:26) -- Die Zauberflöte. Der Vogelfänger bin ich ja / Mozart (2:36) -- Don Giovanni. Finch'han dal vino / Mozart (1:27) -- Le nozze di Figaro. E Susanna non vien!-- Dove sono / Mozart (6:27) -- Fidelio. Abscheulicher! / Beethoven (8:18) -- Guillaume Tell. Ne m'abandonne pas, espoir de la vengeance-- Asile héréditaire / Rossini (6:59) -- Il barbiere di siviglia. Largo al factotum / rossini (4:42) -- Don Carlo. Ella giammai m'amò! / Verdi (7:32) -- Rigoletto. La donna è mobile / Rossini (2:14) -- Il trovatore. Di quella pira / Rossini (2:02) -- Otello. Esultate! (2:24) ; Dio! mi potevi scagliar (4:39) / Rossini -- Tosca. Vissi d'arte, vissi d'amore / Puccini (3:00) -- Turandot. In questa reggia (5:58) ; Tanto amore (2:22) / Puccini -- Gianni Schicchi. O mio babbino caro / Puccini (2:40) -- L'amico Fritz. Ed anche beppe amo / Mascagni (3:16) -- Adriana Lecouvreur. Poveri fiori / Cilea (3:10) -- Andrea Chénier. Come un bel di di maggio / Giordano (3:04).", - "Faust. Les grande seigneurs-- Ah! Je ris de me voir si belle / Gounod (5:50) -- Le Jongleur de Notre-Dame. Marie, avec l'enfant Jésus / Massenet (5:30) -- Mirielle. Heureux petit berger / Massenet (2:05) -- Mignon. Connais-tu le pays (5:39) ; Elle ne croyait pas dans sa candeur (3:31) / Thomas -- Carmen. Votre toast, je peux vous le rendre-- Toréadore / Bizet (4:55) -- Les contes d'Hoffmann. Les oiseaux dans la charmille / Offenbach (5:47) -- La damnation de Faust. Maintenant, chantons-- Devant la maison de celui qui t'adore / Berlioz (2:16) -- Louise. Depuis le jour / Charpentier (5:34) -- Der Rosenkavalier. Da geht er hin / Richard Strauss (5:22) -- Lohengrin. Einsam in trüben Tagen / Wagner (6:02) -- Tannhäuser. Dich, teure Halle / Wagner (4:44) -- Die Walküre. Leb wohl, du kühnes, herrliches Kind (15:41) ; Hojotoho hojotoho! (5:56) / Wagner.", - "Le nozze di Figaro. Non più andrai / Mozart (3:38) -- Don Giovanni. Là ci darem la mano / Mozart (3:14) -- Die Zauberflöte. Duo: pa-pa-pa / Mozart (2:22) -- Così fan tutte. Soava sia il vento / Mozart (3:02) -- Norma. Mira, o Norma / Bellini (7:28) -- Lucia di Lammermoor. Il dolce suono / Donizetti (16:43) -- Don Pasquale. Com'è gentil / Donizetti (3:50) -- Il Barbiere di Siviglia. Una voce poco fa / Rossini (6:18) -- La traviata. Libiamo ne' lieti calici / Verdi (2:51) -- Rigoletto. Gualtier malde!-- Como nome / Verdi (6:41) -- Aida. Ritorna vincitor / Verdi (6:24) -- Otello. Ave Maria / Verdi (5:11) -- Turandot. Nessum dorma / Puccini (2:49) -- La Bohème. Che gelida manina / Puccini (4:27) -- La Wally. Ebben? Ne andrò lantana / Catalani (4:20).", - "Le postillon de Lonjumeau. Mes amis, écoutez l'histoire / Adam (3:45) -- La muette de portici. Mieux vaut mourir-- Amour sacré de la patrie / Auber (5:46) -- Roméo et Juliette. Ah! je veux vivre dans ce rève / Gounod (3:50) -- Le roi d'Ys. Puisqu'on ne peut fléchir-- Vainement, ma bien-aimée / Lalo (3:28) -- Manon. Suis-je gentille ainsi?-- Je marche sur tous les chemins / Massenet (3:03) -- Les contes d'Hoffman. Belle nuit, ô nuit d'amour / Offenbach (4:19) -- Carmen. Le fleur que tu m'avais jetée / Bizet (4:26) -- Les pêcheurs de perles. C'est toi!-- Au fond du temple saint / Bizet (7:27) -- Werther. Werther, Werther, qui m'aurait dit-- Ces lettres! / Massenet (7:27) -- Lakmé. Viens, Malika / Delibes (5:52) -- Thaïs. Ah! Je suis seule enfin-- Dis-moi que je suis belle / Massenet (6:41) -- Faust. Alerte, alerte!-- Anges purs, anges radieux / Gounod (2:30) -- Boris Godunov. Boris's farewell / Mussorgsky (5:58) -- Oberon. Schreckensschwurl / Weber (2:12) -- Die Meistersinger von Nürnberg. Die \"selige Morgentraum-Deutweise\"-- Selig, wie die Sonne / Wagner (5:31) -- Siegfried. Was au besten er kann-- Nothung! Nothung! / Wagner (5:53)." - ] - }, - "sort": [ - 3.9592814, - "b21903183" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10685709", - "_score": 3.55205, - "_source": { - "extent": [ - "volumes <1-12> : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Volume 2 edited by Harold D. Moser and Sharon Macpherson.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 5 edited by Harold D. Moser, David H. Roth, and George H. Hoemann.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 6 edited by Harold D. Moser, J. Clint Clifft and assistant editor Wyatt C. Wells.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 7 edited by Daniel Feller, Harold D. Moser, Laura-Eve Moss, and Thomas Coens.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 8 edited by Daniel Feller, Thomas Coens, and Laura-Eve Moss.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 9 edited by Daniel Feller, Laura-Eve Moss, Thomas Coens, and Erik B. Alexander.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volumes 10-11 edited by Daniel Feller, Thomas Coens, and Laura-Eve Moss.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Volume 12 edited by Daniel Feller, Thomas Coens, Laura-Eve Moss, and Aaron Crawford.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jackson, Andrew, 1767-1845", - "1829-1837", - "Presidents", - "Presidents -- United States", - "Presidents -- United States -- Correspondence", - "Politics and government", - "United States", - "United States -- Politics and government", - "United States -- Politics and government -- 1829-1837", - "United States -- Politics and government -- 1829-1837 -- Sources" - ], - "numItemDatesParsed": [ - 2 - ], - "publisherLiteral": [ - "University of Tennessee Press" - ], - "description": [ - "\"Andrew Jackson is one of the most critical and controversial figures in American history. A dominant actor on the American scene in the period between the Revolution and Civil War, he stamped his name first on a mass political movement and then an era. At the same time Jackson's ascendancy accelerated the dispossession and death of Native Americans and spurred the expansion of slavery. 'The Papers of Andrew Jackson' is a project to collect and publish Jackson's entire extant literary record. The project is now producing a series of seventeen volumes that will bring Jackson's most important papers to the public in easily readable form.\"--", - "V. 6. This sixth volume of The Papers of Andrew Jackson documents the election on Andrew Jackson, the first westerner and the last veteran of the American Revolution, to the presidency. The four years of this volume chronicle the presidential campaign of 1828. Jackson, winner of the popular vote in 1824 but loser of the election, was once again the reluctant candidate, called into service by the voice of the voters. The campaign, one of the longest in American history, pitted Jackson against the incumbent John Quincy Adams; it was also one of the dirtiest campaigns in American history. The brunt of the mudslinging was aimed at Jackson, and it is covered in detail in this volume. Every aspect of the public and private life of the fifty-eight-year-old former major general in the United States Army came under scrutiny, and in both his opponents found him deficient. According to his detractors, he lacked the moral principles, the temperament, the education, and the family background requisite for a president of the United States. In sum, Jackson resembled the devil incarnate, to use his own words. The mudslinging left Jackson livid, anxious for retribution but constrained by the cause in which he was engaged. The presidential campaign of 1828, in the minds of Jackson and his supporters, was for the cause of truth and democracy against corrupt, self-seeking politicians, an aristocracy of power built upon bargains and dubious political alliances dedicated to its perpetuation in office. The four years covered in this volume were some of the most trying in Jackson s life, but the one event that hurt Jackson the most was the death of his wife. Until his dying day, Jackson contended that her death had been hastened by the slanders of his opponents in the campaign. As great as the loss was for him personally, Jackson nonetheless rejoiced in the results of the election for, in his eyes, the voice of the people had finally been heard. Liberty, not power, had triumphed. Reform was at hand, and retribution would surely follow.", - "V. 7. With this seventh volume, The Papers of Andrew Jackson enters the heart of Jackson's career: his tumultuous two terms as president of the United States. The year 1829 began with Jackson fresh from a triumphant victory over incumbent John Quincy Adams in the 1828 campaign, yet mourning the sudden death of his beloved wife, Rachel. In January, having hired an overseer for his Hermitage plantation and arranged for Rachel's tomb, he left Tennessee for Washington. Jackson assumed the presidency with two objectives already fixed in mind: purging the federal bureaucracy of recreant officeholders and removing the southern Indian tribes westward beyond state authority. By year's end he had added two more: purchasing Texas and destroying the Bank of the United States. But meanwhile he found himself diverted, and nearly consumed, by the notorious Peggy Eaton affair--a burgeoning scandal which pitted the president, his Secretary of War John Eaton, and the latter's vivacious wife against the Washington guardians of feminine propriety. This first presidential volume reveals all these stories, and many more, in a depth never seen before. It presents full texts of more than four hundred documents, most printed for the first time. Gathered from a vast array of libraries, archives, and individual owners, they include Jackson's intimate exchanges with family and friends, private notes and musings, and formative drafts of public addresses. Administrative papers range from presidential pardons to military promotions to plans for discharging the public debt. They exhibit Jackson's daily conduct of the executive office in close and sometimes startling detail, and cast new light on such controversial matters as Indian removal and political patronage. Included also are letters to the president from people in every corner of the country and every walk of life: Indian delegations presenting grievances, distraught mothers pleading help for wayward sons, aged veterans begging pensions, politicians offering advice and seeking jobs. Embracing a broad spectrum of actors and events, this volume offers an incomparable window not only into Jackson and his presidency, but into America itself in 1829.", - "V. 8. This eighth volume of Andrew Jackson s papers presents more than five hundred documents, many appearing here for the first time, from a core year in Jackson s tumultuous presidency. They include Jackson s handwritten drafts of his presidential messages, private notes and memoranda, and correspondence with government officials, Army and Navy officers, friends and family, Indian leaders, foreign diplomats, and ordinary citizens throughout the country. In 1830 Jackson pursued his controversial Indian removal policy, concluding treaties to compel the Choctaws and Chickasaws west of the Mississippi and refusing protection for the Cherokees against encroachments by Georgia. Jackson nurtured his opposition to the Bank of the United States and entered into an escalating confrontation with the Senate over presidential appointments to office. In April, Jackson pronounced his ban on nullification with the famous toast to Our Federal Union, and in May he began an explosive quarrel with Vice-President John C. Calhoun over the latter s conduct as secretary of war during Jackson s Seminole campaign of 1818. Also in May, Jackson delivered his first presidential veto, stopping federal funding for the Maysville Road and declaring opposition to Henry Clay s American System. In July, Jackson s refusal to use his pardoning power to save an Irish-born mail robber from the gallows provoked a near-riot in Philadelphia. By the end of the year, Jackson was preparing for his reelection campaign in 1832. Meanwhile the sex scandal surrounding Peggy Eaton, wife of the secretary of war, lurked throughout, dividing Jackson s cabinet, sundering his own family and household, and threatening to wreck the administration. Embracing all these stories and many more, this volume offers an incomparable window not only into Andrew Jackson and his presidency but into 1830s America itself.", - "V. 9. This volume presents more than five hundred original documents, many newly discovered, from Andrew Jackson s third presidential year. They include Jackson s private memoranda, intimate family letters, and correspondence with government and military officers, diplomats, Indians, political friends and foes, and ordinary citizens throughout the country. In 1831 Jackson finally cleared his contentious Cabinet, reluctantly accepting the resignations of Martin Van Buren and John Eaton and demanding that the other members follow. But in the aftermath, animosities among them boiled over, as Eaton sought duels with outgoing secretaries Samuel Ingham and John Berrien. The affair ended with gangs of armed high-government officers stalking each other in the Washington streets, and with Ingham publicly accusing Jackson of countenancing a plot to assassinate him. Meanwhile, Jackson pursued his feud with Vice-President John C. Calhoun, whom he had come to view as the diabolical manipulator of all his enemies. Enlisting a favorite Supreme Court justice to gather evidence, Jackson crafted an exposition, intended for publication, that leveled nearly fantastic charges against Calhoun and others. Through all this, the business of government ploughed on. Jackson pursued his drive to remove the Cherokees and other Indians west of the Mississippi and to undercut tribal leaders who dared resist. To squelch sectional controversy, Jackson moved to retire the national debt and reduce the tariff, while reiterating his ban on nullification and his opposition to the Bank of the United States. Nat Turner's Virginia slave revolt in August drew a quick administration response. By year s end, the dust over the Cabinet implosion was settling, as Jackson prepared to stand for reelection against his old nemesis Henry Clay. Embracing all these stories and many more, this volume offers an incomparable window not only into Andrew Jackson and his presidency but into America itself in 1831.", - "V. 10. This volume presents more than four hundred documents from Andrew Jackson s fourth presidential year. It includes private memoranda, intimate family letters, drafts of official messages, and correspondence with government and military officers, diplomats, Indians, political friends and foes, and ordinary citizens throughout the country. The year 1832 began with Jackson still pursuing his feud with Vice President John C. Calhoun, whom Jackson accused of secretly siding against him in the 1818 controversy over Jackson s Seminole campaign in Florida. The episode ended embarrassingly for Jackson when a key witness, called on to prove his charges, instead directly contradicted them. Indian removal remained a preoccupation for Jackson. The Choctaws began emigrating westward, the Creeks and Chickasaws signed but then immediately protested removal treaties, and the Cherokees won what proved to be an empty victory against removal in the Supreme Court. Illinois Indians mounted armed resistance in the Black Hawk War. In midsummer, a cholera epidemic swept the country, and Jackson was urged to proclaim a day of fasting and prayer. He refused, saying it would intermingle church and state. A bill to recharter the Bank of the United States passed Congress in July, and Jackson vetoed it with a ringing message that became the signature document of his presidency. In November, Jackson, with new running mate Martin Van Buren, won triumphant reelection over Henry Clay. But only days later, South Carolina nullified the federal tariff law and began preparing for armed resistance. Jackson answered with an official proclamation that disunion by armed force is treason. The year closed with Jackson immersed in plans to suppress nullification and destroy the Bank of the United States. Embracing all these stories and many more, this volume offers an incomparable window into Andrew Jackson, his presidency, and America itself in 1832.", - "V. 11. This volume presents full annotated text of five hundred documents from Andrew Jackson's fifth presidential year. They include his private memoranda, intimate family letters, presidential message drafts, and correspondence with government and military officers, diplomats, Indian leaders, political friends and foes, and citizens throughout the country.The year 1833 began with a crisis in South Carolina, where a state convention had declared the federal tariff law null and void and pledged resistance by armed force if necessary. Jackson countered by rallying public opinion against the nullifiers, quietly positioning troops and warships, and procuring a \"force bill\" from Congress to compel collection of customs duties. The episode ended peaceably after South Carolina accepted a compromise tariff devised by Jackson's arch-rival Henry Clay. But Clay's surprise cooperation with South Carolina's John C. Calhoun foretold a new opposition coalition against Jackson.With nullification checked, Jackson embarked in June on a triumphal tour to cement his newfound popularity in the North. Ecstatic crowds greeted him in Philadelphia, New York, and Boston, and Harvard awarded him a degree. But Jackson's fragile health broke under the strain, forcing him to cut the tour short. Meanwhile Jackson pursued his campaign against the Bank of the United States, whose recharter he had vetoed in 1832. Charging the Bank with political meddling and corruption, Jackson determined to cripple it by removing federal deposits to state banks. But Treasury secretary William John Duane refused either to give the necessary order or resign. In September Jackson dismissed him and installed Roger Taney to implement the removal. Jackson's bold assumption of authority energized supporters but outraged opponents, prompting Clay to introduce a Senate resolution of censure.The year closed with Jackson girding for further battle over the Bank, pursuing schemes to pry the province of Texas loose from Mexico, and trying to stem rampant land frauds that his own Indian removal policy had unleashed against Creek Indians in Alabama. Unfolding these stories and many more, this volume offers an incomparable window into Andrew Jackson, his presidency, and America itself in 1833.", - "V. 12. This volume presents more than five hundred annotated original documents from Andrew Jackson's sixth presidential year. They include his private memoranda, intimate family letters, official messages, and correspondence with government and military officers, diplomats, Indian leaders, political friends and foes, and plain citizens throughout the country. The year 1834 began with Jackson battling the United States Senate. Pursuing his campaign against the federally chartered Bank of the United States, Jackson in 1833 had installed Roger Taney as interim Treasury secretary to transfer the government's deposits to selected state-chartered \"pet\" banks. The Bank retaliated by curtailing its business, setting off a commercial crisis and a political frenzy. In 1834 the Senate, controlled by the new opposition Whig Party led by Jackson's old nemeses Henry Clay and John C. Calhoun, rejected a slew of Jackson's nominees for office, including Taney, and adopted an unprecedented (and still unparalleled) resolution of censure against Jackson himself. Jackson returned a scathing protest, which the Senate rejected. Meanwhile the administration struggled to implement its \"experiment\" of conducting government finances through state banks. Throughout the year Jackson pursued his aim of compelling eastern Indians to remove west of the Mississippi. In May the Chickasaws signed a removal treaty. But brazen frauds complicated the administration's scheme to induce individual Creeks to emigrate from Alabama, while the Cherokees, led by Principal Chief John Ross, stood fast in resistance. In June some unauthorized dissident Cherokees signed a removal treaty, but it died in the Senate. In 1834 Jackson continued his longstanding effort to pry the province of Texas loose from Mexico, while the U.S. hurtled toward confrontation with France over French failure to pay an indemnity due under an 1831 treaty. Other matters engaging Jackson included corruption scandals in the Post Office Department and at Mississippi land offices, fractious disputes over rank and seniority among Army and Navy officers, and a fire that gutted Jackson's Hermitage home in Tennessee. Unfolding these stories and many more, this volume offers a revelatory window into Andrew Jackson, his presidency, and America itself in 1834." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 11 - ], - "createdYear": [ - 1980 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "The papers of Andrew Jackson" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "numItemVolumesParsed": [ - 11 - ], - "createdString": [ - "1980" - ], - "creatorLiteral": [ - "Jackson, Andrew, 1767-1845" - ], - "idLccn": [ - "79015078" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Smith, Sam B., 1929-2003", - "Owsley, Harriet Chappell, 1901-1999", - "Macpherson, Sharon C.", - "Remini, Robert V. (Robert Vincent), 1921-2013", - "Moser, Harold D.", - "Feller, Daniel, 1950-", - "Roth, David H.", - "Hoemann, George H., 1952-", - "Coens, Thomas, 1974-", - "Moss, Laura-Eve", - "Alexander, Erik B.", - "Crawford, Aaron" - ], - "dateStartYear": [ - 1980 - ], - "idOclc": [ - "5029597" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IAW (Jackson) 80-3099" - }, - { - "type": "nypl:Bnumber", - "value": "10685709" - }, - { - "type": "bf:Isbn", - "value": "0870492195" - }, - { - "type": "bf:Isbn", - "value": "9780870492198" - }, - { - "type": "bf:Isbn", - "value": "0870494414" - }, - { - "type": "bf:Isbn", - "value": "9780870494413" - }, - { - "type": "bf:Isbn", - "value": "0870496506" - }, - { - "type": "bf:Isbn", - "value": "9780870496509" - }, - { - "type": "bf:Isbn", - "value": "0870497782" - }, - { - "type": "bf:Isbn", - "value": "9780870497780" - }, - { - "type": "bf:Isbn", - "value": "0870498975" - }, - { - "type": "bf:Isbn", - "value": "9780870498978" - }, - { - "type": "bf:Isbn", - "value": "1572331747" - }, - { - "type": "bf:Isbn", - "value": "9781572331747" - }, - { - "type": "bf:Isbn", - "value": "9781572335936" - }, - { - "type": "bf:Isbn", - "value": "1572335939" - }, - { - "type": "bf:Isbn", - "value": "9781572337152" - }, - { - "type": "bf:Isbn", - "value": "157233715X" - }, - { - "type": "bf:Isbn", - "value": "9781621900047" - }, - { - "type": "bf:Isbn", - "value": "1621900045" - }, - { - "type": "bf:Isbn", - "value": "9781621902676" - }, - { - "type": "bf:Isbn", - "value": "1621902676" - }, - { - "type": "bf:Isbn", - "value": "9781621905387" - }, - { - "type": "bf:Isbn", - "value": "1621905381" - }, - { - "type": "bf:Isbn", - "value": "9781621907558" - }, - { - "type": "bf:Isbn", - "value": "1621907554" - }, - { - "type": "nypl:Oclc", - "value": "5029597" - }, - { - "type": "bf:Lccn", - "value": "79015078" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5029597" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)609560879 (OCoLC)769265853 (OCoLC)769850561 (OCoLC)770876143 (OCoLC)777774362 (OCoLC)807573070 (OCoLC)876110400 (OCoLC)890078391 (OCoLC)890280620 (OCoLC)894132413 (OCoLC)913850526 (OCoLC)914132651 (OCoLC)922670928 (OCoLC)958221171 (OCoLC)1101360978 (OCoLC)1114108948 (OCoLC)1131934218 (OCoLC)1164180119 (OCoLC)1222878957 (OCoLC)1225660295" - } - ], - "uniformTitle": [ - "Works" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "checkInBoxes": [ - { - "coverage": "No. 5 (1821 - 1824)", - "position": 1, - "type": "nypl:CheckInBox", - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "status": "Bound" - }, - { - "coverage": "No. 6 (1825 - 1828)", - "position": 2, - "type": "nypl:CheckInBox", - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "status": "Bound" - } - ], - "holdingStatement": [ - "1-7,10,12" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "IAW (Jackson) 80-3099" - } - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "location": [ - { - "code": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "shelfMark": [ - "IAW (Jackson) 80-3099" - ], - "uri": "h1030920" - } - ], - "updatedAt": 1712577705364, - "publicationStatement": [ - "Knoxville : University of Tennessee Press, [1980-]", - "©1980" - ], - "genreForm": [ - "Personal correspondence.", - "Sources.", - "Correspondence." - ], - "idIsbn": [ - "0870492195", - "9780870492198", - "0870494414", - "9780870494413", - "0870496506", - "9780870496509", - "0870497782", - "9780870497780", - "0870498975", - "9780870498978", - "1572331747", - "9781572331747", - "9781572335936", - "1572335939", - "9781572337152", - "157233715X", - "9781621900047", - "1621900045", - "9781621902676", - "1621902676", - "9781621905387", - "1621905381", - "9781621907558", - "1621907554" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099", - "urn:bnum:10685709", - "urn:isbn:0870492195", - "urn:isbn:9780870492198", - "urn:isbn:0870494414", - "urn:isbn:9780870494413", - "urn:isbn:0870496506", - "urn:isbn:9780870496509", - "urn:isbn:0870497782", - "urn:isbn:9780870497780", - "urn:isbn:0870498975", - "urn:isbn:9780870498978", - "urn:isbn:1572331747", - "urn:isbn:9781572331747", - "urn:isbn:9781572335936", - "urn:isbn:1572335939", - "urn:isbn:9781572337152", - "urn:isbn:157233715X", - "urn:isbn:9781621900047", - "urn:isbn:1621900045", - "urn:isbn:9781621902676", - "urn:isbn:1621902676", - "urn:isbn:9781621905387", - "urn:isbn:1621905381", - "urn:isbn:9781621907558", - "urn:isbn:1621907554", - "urn:oclc:5029597", - "urn:lccn:79015078", - "urn:identifier:(OCoLC)5029597", - "urn:identifier:(OCoLC)609560879 (OCoLC)769265853 (OCoLC)769850561 (OCoLC)770876143 (OCoLC)777774362 (OCoLC)807573070 (OCoLC)876110400 (OCoLC)890078391 (OCoLC)890280620 (OCoLC)894132413 (OCoLC)913850526 (OCoLC)914132651 (OCoLC)922670928 (OCoLC)958221171 (OCoLC)1101360978 (OCoLC)1114108948 (OCoLC)1131934218 (OCoLC)1164180119 (OCoLC)1222878957 (OCoLC)1225660295" - ], - "numCheckinCardItems": [ - 2 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jackson, Andrew, 1767-1845.", - "1829-1837", - "Presidents -- United States -- Correspondence.", - "Politics and government.", - "Presidents.", - "United States -- Politics and government -- 1829-1837 -- Sources.", - "United States." - ], - "titleDisplay": [ - "The papers of Andrew Jackson / Sam B. Smith and Harriet Chappell Owsley, editors ; Robert V. Remini, consulting editor ; Sharon C. Macpherson, associate editor ; Linda D. Keeton, staff assistant." - ], - "uri": "b10685709", - "lccClassification": [ - "E302 .J35 1980" - ], - "placeOfPublication": [ - "Knoxville" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/review/hrev-a0c8q7-aa" - }, - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/reviews/showrev.php?id=25345" - }, - { - "label": "Book review (H-Net)", - "url": "http://www.h-net.org/reviews/showrev.php?id=7356" - } - ], - "titleAlt": [ - "Works" - ], - "tableOfContents": [ - "Volume I: 1770-1803 -- Volume II: 1804-1813 -- Volume III: 1814-1815 -- Volume IV: 1816-1820 -- Volume V: 1825-1828 -- Volume VI: 1825-1828 -- Volume VII: 1829 -- Volume VIII: 1830 -- Volume IX: 1831 -- Volume X: 1832 -- Volume XI: 1833 -- Volume XII: 1834" - ], - "dimensions": [ - "25 cm" - ], - "idIsbn_clean": [ - "0870492195", - "9780870492198", - "0870494414", - "9780870494413", - "0870496506", - "9780870496509", - "0870497782", - "9780870497780", - "0870498975", - "9780870498978", - "1572331747", - "9781572331747", - "9781572335936", - "1572335939", - "9781572337152", - "157233715X", - "9781621900047", - "1621900045", - "9781621902676", - "1621902676", - "9781621905387", - "1621905381", - "9781621907558", - "1621907554" - ] - }, - "sort": [ - 3.55205, - "b10685709" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 11, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10685709", - "_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. 12" - ], - "enumerationChronology_sort": [ - " 12-" - ], - "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": [ - "33433137385237" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 12", - "urn:barcode:33433137385237" - ], - "identifierV2": [ - { - "value": "IAW (Jackson) 80-3099 v. 12", - "type": "bf:ShelfMark" - }, - { - "value": "33433137385237", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 12" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000012", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "uri": "i40826956" - }, - "sort": [ - " 12-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10685709", - "_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. 10" - ], - "enumerationChronology_sort": [ - " 10-" - ], - "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": [ - "33433119383762" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 10", - "urn:barcode:33433119383762" - ], - "identifierV2": [ - { - "value": "IAW (Jackson) 80-3099 v. 10", - "type": "bf:ShelfMark" - }, - { - "value": "33433119383762", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 10" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ], - "uri": "i34456277" - }, - "sort": [ - " 10-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10685709", - "_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" - ], - "enumerationChronology": [ - "v. 7" - ], - "enumerationChronology_sort": [ - " 7-" - ], - "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": [ - "33433079269134" - ], - "identifier": [ - "urn:shelfmark:IAW (Jackson) 80-3099 v. 7", - "urn:barcode:33433079269134" - ], - "identifierV2": [ - { - "value": "IAW (Jackson) 80-3099 v. 7", - "type": "bf:ShelfMark" - }, - { - "value": "33433079269134", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IAW (Jackson) 80-3099" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IAW (Jackson) 80-3099 v. 7" - ], - "shelfMark_sort": "aIAW (Jackson) 80-3099 v. 000007", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "uri": "i17468525" - }, - "sort": [ - " 7-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb13231291", - "_score": 3.0999508, - "_source": { - "extent": [ - "1 audio disc ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular songs with dance orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title from disc label.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Descriptive notes by Harry Bridges on container.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded during the 1930s.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- 1931-1940" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Halcyon" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "193" - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Penny serenade." - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1989" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bowlly, Al", - "Geraldo", - "Carless, Dorothy", - "Grantham, Cyril", - "Cousins, Carlyle", - "Rey, Monte", - "Gaucho Tango Orchestra, instrumentalist. http://id.loc.gov/vocabulary/relators/itr", - "Top Hatters (Musical group), singer. http://id.loc.gov/vocabulary/relators/sng" - ], - "dateStartYear": [ - 1989 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "13231291" - }, - { - "type": "nypl:Oclc", - "value": "on1031714916" - }, - { - "type": "nypl:Oclc", - "value": "1031714916" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-9351913" - }, - { - "type": "bf:Identifier", - "value": "HAL 13 Halcyon" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)on1031714916" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1031714916" - }, - { - "type": "bf:Identifier", - "value": "(NNC)13231291" - }, - { - "type": "bf:Identifier", - "value": "13231291" - } - ], - "idOclc": [ - "on1031714916", - "1031714916", - "SCSB-9351913" - ], - "dateEndYear": [ - 193 - ], - "holdings": [], - "updatedAt": 1674872609635, - "publicationStatement": [ - "London : Halcyon, [1978]", - "℗1978" - ], - "identifier": [ - "urn:bnum:13231291", - "urn:oclc:on1031714916", - "urn:oclc:1031714916", - "urn:oclc:SCSB-9351913", - "urn:undefined:HAL 13 Halcyon", - "urn:undefined:(OCoLC)on1031714916", - "urn:undefined:(OCoLC)1031714916", - "urn:undefined:(NNC)13231291", - "urn:undefined:13231291" - ], - "genreForm": [ - "Popular music.", - "Songs." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:sd", - "label": "audio disc" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "Popular music -- 1931-1940." - ], - "titleDisplay": [ - "Penny serenade." - ], - "uri": "cb13231291", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Music from the thirties : all previousely unissued", - "Continental.", - "Stormy weather.", - "Nobody's sweetheart.", - "Love in bloom.", - "It's a sin to tell a lie.", - "Pennies from heaven.", - "Star fell out of heaven.", - "At the Cafe Continental.", - "Scrapin' the toast.", - "Robins and roses.", - "One, two, button your shoe.", - "I get a kick out of you.", - "Fine romance.", - "You're a sweet little headache.", - "Goodnight, my love." - ], - "tableOfContents": [ - "Penny serenade / Halifax ; Weersmal (Al Bowlly with chorus and orchestra) -- The continental / Magidson ; Conrad (Geraldo & his orchestra) -- Stormy weather / Koehler ; Arlen (Dorothy Carless with orchestra) -- Nobody's sweetheart / Kahn ; Erdman ; Meyers ; Schoebel (Cyril Grantham with the Carlyle Cousins and orchestra) -- Love in bloom / Robin ; Rainger (Geraldo & his orchestra ; Cyril Grantham, vocals) -- It's a sin to tell a lie / Mayhew (Cyril Grantham with Carlyle Cousins and orchestra -- Pennies from heaven / Burke ; Johnston (Geraldo & his orchestra ; Cyril Grantham, vocals) -- A star fell out of heaven / Gordon ; Revel (Geraldo & his orchestra ; Cyril grantham, vocals) -- At the Cafe Continental / Kennedy ; Grosz (Monte Rey with the Gaucho Tango Band) -- Scrapin' the toast / Adamson ; McHugh (Cyril Grantham & The Top Hatters ; with Geraldo & his orchestra) -- Robins and roses / Burke ; Leslie (Geraldo & his orchestra ; Cyril Grantham, vocals) -- One, two, button your shoe / Burke ; Johnston (Cril Grantham & The Top Hatters, with Geraldo and his orchestra -- I get a kick out of you / Porter (Dorothy Carless with orchestral accompaniment) -- A fine romance / Fields ; Kern (Geraldo & his orchestra (Cyril Grantham vocal) -- You're a sweet little headache / Robin ; Rainger (Geraldo & his orchestra) -- Goodnight, my love / Gordon ; Revel (Monte Rey with Geraldo and his Gaucho Tango Concert Orchestra)" - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 3.0999508, - "cb13231291" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb13231291", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci9371874", - "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": [ - "SNK9367" - ], - "identifierV2": [ - { - "value": "SNK9367", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MRS0093670" - } - ], - "physicalLocation": [ - "SNK9367" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MRS0093670" - ], - "idBarcode": [ - "MRS0093670" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Audio" - ], - "shelfMark_sort": "aSNK009367" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb10481947", - "_score": 2.6523838, - "_source": { - "extent": [ - "1 audio disc : analog, 33 1/3 rpm ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Jazz saxophone with ensembles, in part with vocals.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Contains previously released material.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes by Kurt Mohr including listing of personnel on container.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded in New York August, 1946; and recorded in Los Angeles 1948 and May 1949.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Saxophone music (Jazz)", - "Big band music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Official Record Company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1946" - ], - "createdYear": [ - 1988 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The late forties" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Carter, Benny" - ], - "createdString": [ - "1988" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Catlett, Sid, 1910-1951", - "Welch, Emma-Lou", - "Enchanters (Musical group), performer. http://id.loc.gov/vocabulary/relators/prf" - ], - "dateStartYear": [ - 1988 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "10481947" - }, - { - "type": "nypl:Oclc", - "value": "ocn526544603" - }, - { - "type": "nypl:Oclc", - "value": "526544603" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5706136" - }, - { - "type": "bf:Identifier", - "value": "3006 Official" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocn526544603" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)526544603" - }, - { - "type": "bf:Identifier", - "value": "(NNC)10481947" - }, - { - "type": "bf:Identifier", - "value": "10481947" - } - ], - "idOclc": [ - "ocn526544603", - "526544603", - "SCSB-5706136" - ], - "dateEndYear": [ - 1946 - ], - "holdings": [], - "updatedAt": 1684547712288, - "publicationStatement": [ - "Copenhagen, Denmark : Official Record Company, [1988]" - ], - "identifier": [ - "urn:bnum:10481947", - "urn:oclc:ocn526544603", - "urn:oclc:526544603", - "urn:oclc:SCSB-5706136", - "urn:undefined:3006 Official", - "urn:undefined:(OCoLC)ocn526544603", - "urn:undefined:(OCoLC)526544603", - "urn:undefined:(NNC)10481947", - "urn:undefined:10481947" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1988" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "Saxophone music (Jazz)", - "Big band music." - ], - "titleDisplay": [ - "The late forties / Benny Carter." - ], - "uri": "cb10481947", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen, Denmark" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Melodrama in a V-disc record room.", - "Prelude to a kiss.", - "Sweet Georgia Brown.", - "Out of my way.", - "What\\u0027ll it be.", - "Cadillac Slim.", - "Baby you\\u0027re mine for keeps.", - "You\\u0027ll never break my heart again.", - "Chilpancingo.", - "There\\u0027s a new side to an old love story.", - "Old love story.", - "Reina (my lovely queen)", - "Let us drink a toast together.", - "Cotton tail.", - "Time out for blues.", - "Surf board.", - "You are too beautiful." - ], - "tableOfContents": [ - "Melodrama in a V-disc record room / Brenner (3:29) -- Prelude to a kiss / Ellington (3:03) -- Sweet Georgia Brown / Bernie, Pinkard, Casey (2:35) -- Out of my way / S. Catlett, T. Grimes, Sigman (3:00) -- What\\u0027ll be (2:45) ; Cadillac Slim (2:45) / Ben Webster -- Baby you\\u0027re mine for keeps (2:39) ; You\\u0027ll never break my heart again (2:51) ; Chilpancingo (2:51) ; (There\\u0027s a new side to) an old love story (2:56) ; Reina (my lovely queen) (2:56) ; Let us drink a toast together (2:40) / Harry Atwood, Louis Hersher -- Cotton tail / Ellington (2:38) -- Time out for blues / Taub (2:39) -- Surf board (3:04) ; You are too beautiful (3:09) / Carter." - ], - "dimensions": [ - "12 in." - ] - }, - "sort": [ - 2.6523838, - "cb10481947" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb10481947", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci8337529", - "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": [ - "SNK9870" - ], - "identifierV2": [ - { - "value": "SNK9870", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MRS0098701" - } - ], - "physicalLocation": [ - "SNK9870" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MRS0098701" - ], - "idBarcode": [ - "MRS0098701" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Audio" - ], - "shelfMark_sort": "aSNK009870" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "cb8273736", - "_score": 1.9596634, - "_source": { - "extent": [ - "2 audio discs : digital, stereo ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Compilation of excerpts from previously released material.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Various singers and orchestras.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Compact disc.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Playlist with credits and durations laid in container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "CD 2. Faust. Jewel song (Marguerite): Les grands Seigneurs.. Ah! je ris de me voir si belle (Victoria de Los Angeles) / Gounod (5:47) -- The juggler of Notre Dame. Marie, avec l\\u0027Enfant Jesus (Jules Bastin) / Massenet (5:27) -- Mignon. Connais-tu le pays (Jane Rhodes) / Thomas (5:35) -- Carmen. Toredor song: Votre toast, je peux vous le rendre (Ernest Blanc) / Bizet (4:53) -- The tales of Hoffman. Les oiseaux dans la charmille (Mady Mesplé) / Offenbach (5:45) -- Louise. Depuis le jour (Beverly Sills) / Charpentier (5:32) -- Der Rosenkavalier. Da geht er hin (Elisabeth Schwarzkopf) / R. Straus (5:32) -- Lohengrin. Elsa\\u0027s dream: Einsam in truben Tagen (Régine Crespin) (6:01) ; Tannhäuser. Dich teure Halle (Hildegard Behrens) (4:43) ; The Walkyrie. Wotan\\u0027s farewell: Leb wohl, du kühnes, herrliches Kind (Dietrich Fischer-Dieskau) (15:38) / Wagner.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "EMI classics.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"This compilation by EMI France\"--Container.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "EMI : Angel Records" - ], - "language": [ - { - "id": "lang:und", - "label": "Undetermined" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1957" - ], - "createdYear": [ - 1992 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Opera collection II." - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1992" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1992 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "8273736" - }, - { - "type": "nypl:Oclc", - "value": "ocm30855993" - }, - { - "type": "nypl:Oclc", - "value": "30855993" - }, - { - "type": "nypl:Oclc", - "value": "SCSB-5556418" - }, - { - "type": "bf:Identifier", - "value": "CDZB 7691312 EMI" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm30855993" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)30855993" - }, - { - "type": "bf:Identifier", - "value": "(NNC)8273736" - }, - { - "type": "bf:Identifier", - "value": "8273736" - } - ], - "idOclc": [ - "ocm30855993", - "30855993", - "SCSB-5556418" - ], - "dateEndYear": [ - 1957 - ], - "holdings": [], - "updatedAt": 1684459029675, - "publicationStatement": [ - "Hayes, Middlesex, England : EMI : Angel Records, 1992, ℗1987." - ], - "identifier": [ - "urn:bnum:8273736", - "urn:oclc:ocm30855993", - "urn:oclc:30855993", - "urn:oclc:SCSB-5556418", - "urn:undefined:CDZB 7691312 EMI", - "urn:undefined:(OCoLC)ocm30855993", - "urn:undefined:(OCoLC)30855993", - "urn:undefined:(NNC)8273736", - "urn:undefined:8273736" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1992" - ], - "mediaType": [ - { - "id": "mediatypes:s", - "label": "audio" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "Opera collection II." - ], - "uri": "cb8273736", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Hayes, Middlesex, England" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "CD 1. Orpheus and Euridice. Che faro senza Euridice (Agnes Baltsa) / Gluck (5:24) -- The magic flute. Der Vogelfänger bin ich ja (Walter Berry) (2:34) ; Don Giovanni. Finch \\u0027han dal vino (Nicolai Ghiaurov) (1:24) ; The marriage of Figaro. E Susanna non vien ... Dove sono (Barbara Hendricks) (6:25) / Mozart -- Fidelio. Abscheulicher! Wo einst du hin... Komm, Hoffnung (Christa Ludwig) / Beethoven (8:18) -- William Tell. Ne m\\u0027abandonne pas, espoir de la vengeance ... Asile héréditaire (Nicolai Gedda) (6:58) ; The barber of Seville. Largo al factorum (Tito Gobbi) (4:38) / Rossini -- Don Carlos. Ella giammai m\\u0027amo! (Ruggero Raimondo) (10:27) ; Rigoletto. La Donna é mobile (Alfredo Kraus) (2:12) ; Il Trovatore. Di quella pira (Franco Corelli) (2:00) ; Otello. Dio! mi potevi scagliar (Placido Domingo) (4:40) / Verdi -- Tosca. Vissi d\\u0027arte (Maria Callas) (2:58) ; Turandot. In questa reggia (Ghena Dimitrova) (5:56) ; Gianna Schicchi. O mio babbino caro (Montserrat Caballé) (2:38) / Puccini -- L\\u0027Amico Fritz. Ed anche Beppe amo (Luciano Pavarotti) / Mascagni (3:15)." - ], - "dimensions": [ - "4 3/4 in." - ] - }, - "sort": [ - 1.9596634, - "cb8273736" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "cb8273736", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci7602158", - "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": [ - "CD92108" - ], - "identifierV2": [ - { - "value": "CD92108", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR00349976" - } - ], - "physicalLocation": [ - "CD92108" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR00349976" - ], - "idBarcode": [ - "MR00349976" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Audio" - ], - "shelfMark_sort": "aCD092108" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json b/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json deleted file mode 100644 index 4f402e63..00000000 --- a/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 58, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json b/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json deleted file mode 100644 index fae0bbb9..00000000 --- a/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 30, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 27.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 27.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json b/test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json deleted file mode 100644 index 16cbd117..00000000 --- a/test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 36, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 50.89173, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 50.89173, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json b/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json deleted file mode 100644 index cd0d1937..00000000 --- a/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 136, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-a72e542d2f67fe27ab2474d59735944c.json b/test/fixtures/query-a72e542d2f67fe27ab2474d59735944c.json deleted file mode 100644 index 09541ab2..00000000 --- a/test/fixtures/query-a72e542d2f67fe27ab2474d59735944c.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 91, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 34.073437, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 34.073437, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-8e83ee756f6ad1cb6293ed5af32803cc.json b/test/fixtures/query-a99f2aa3820e4916bd5401d5333444b4.json similarity index 99% rename from test/fixtures/query-8e83ee756f6ad1cb6293ed5af32803cc.json rename to test/fixtures/query-a99f2aa3820e4916bd5401d5333444b4.json index 8d38be3a..460f1082 100644 --- a/test/fixtures/query-8e83ee756f6ad1cb6293ed5af32803cc.json +++ b/test/fixtures/query-a99f2aa3820e4916bd5401d5333444b4.json @@ -1,6 +1,6 @@ { "body": { - "took": 2238, + "took": 583, "timed_out": false, "_shards": { "total": 2, @@ -10,7 +10,7 @@ }, "hits": { "total": { - "value": 1287, + "value": 1279, "relation": "eq" }, "max_score": null, diff --git a/test/fixtures/query-86ed7bea2929bf9842fb0042b65fa537.json b/test/fixtures/query-ab3e2cd17aab31409beeae03c0ef1ed4.json similarity index 99% rename from test/fixtures/query-86ed7bea2929bf9842fb0042b65fa537.json rename to test/fixtures/query-ab3e2cd17aab31409beeae03c0ef1ed4.json index 20289e17..68780c7c 100644 --- a/test/fixtures/query-86ed7bea2929bf9842fb0042b65fa537.json +++ b/test/fixtures/query-ab3e2cd17aab31409beeae03c0ef1ed4.json @@ -1,6 +1,6 @@ { "body": { - "took": 520, + "took": 924, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-6369a73f5afbc4818dd4e2884947568d.json b/test/fixtures/query-af208e0f282f29304986e0e4d551ca64.json similarity index 99% rename from test/fixtures/query-6369a73f5afbc4818dd4e2884947568d.json rename to test/fixtures/query-af208e0f282f29304986e0e4d551ca64.json index 035ab784..603c17b3 100644 --- a/test/fixtures/query-6369a73f5afbc4818dd4e2884947568d.json +++ b/test/fixtures/query-af208e0f282f29304986e0e4d551ca64.json @@ -1,6 +1,6 @@ { "body": { - "took": 72, + "took": 30, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json b/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json deleted file mode 100644 index 540c74a0..00000000 --- a/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 76, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-7fcbfae38655fc5d22a987f49cca40da.json b/test/fixtures/query-b8bee328989ea273a9779bb4f71dbb13.json similarity index 99% rename from test/fixtures/query-7fcbfae38655fc5d22a987f49cca40da.json rename to test/fixtures/query-b8bee328989ea273a9779bb4f71dbb13.json index fa70933d..24c66f79 100644 --- a/test/fixtures/query-7fcbfae38655fc5d22a987f49cca40da.json +++ b/test/fixtures/query-b8bee328989ea273a9779bb4f71dbb13.json @@ -1,6 +1,6 @@ { "body": { - "took": 16, + "took": 77, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json b/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json deleted file mode 100644 index 134c6f7d..00000000 --- a/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json +++ /dev/null @@ -1,14899 +0,0 @@ -{ - "body": { - "took": 602, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 10000, - "relation": "gte" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12709113", - "_score": 911.4945, - "_source": { - "extent": [ - "iv, 350 p. : ill., port. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Neb.)", - "Washington County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Magic city printing co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1937 - ], - "title": [ - "A history of Washington county, Nebraska" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1937" - ], - "creatorLiteral": [ - "Shrader, Forrest B." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "9566258" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12709113" - }, - { - "type": "nypl:Oclc", - "value": "9566258" - } - ], - "updatedAt": 1711220358338, - "publicationStatement": [ - "[Omaha, : Magic city printing co., 1937]" - ], - "identifier": [ - "urn:shelfmark:IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "urn:bnum:12709113", - "urn:oclc:9566258" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Neb.) -- History." - ], - "titleDisplay": [ - "A history of Washington county, Nebraska / by Forrest B. Shrader." - ], - "uri": "b12709113", - "placeOfPublication": [ - "[Omaha," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 911.4945, - "b12709113" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12709113", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099509238" - ], - "identifier": [ - "urn:shelfmark:IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "urn:barcode:33433099509238" - ], - "identifierV2": [ - { - "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099509238", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16202472" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698688", - "_score": 34.321877, - "_source": { - "extent": [ - "1002 p., [83] p. of plates : ill., maps ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Largely prepared by F. Ellis, assisted by A. N. Hungerford.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"War of the rebellion\", p. 310-365, including history of various Pennsylvania regiments, with lists of members.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Pa.)", - "Washington County (Pa.) -- History", - "Washington County (Pa.) -- Biography", - "United States", - "United States -- History", - "United States -- History -- Regimental histories", - "United States -- History -- Regimental histories -- Civil War, 1861-1865", - "United States -- History -- Regimental histories -- Civil War, 1861-1865 -- Pennsylvania" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "H.L. Everts & Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1882 - ], - "title": [ - "History of Washington County, Pennsylvania : with biographical sketches of many of its pioneers and prominent men" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington Co.) (Crumrine, B. History of Washington County)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1882" - ], - "idLccn": [ - "01015984" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Crumrine, Boyd, 1838-1916.", - "Ellis, Franklin, 1828-1885.", - "Hungerford, Austin N.", - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1882 - ], - "donor": [ - "Gift of New York Genealogical and Biographical Society." - ], - "idOclc": [ - "2126428" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington Co.) (Crumrine, B. History of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12698688" - }, - { - "type": "nypl:Oclc", - "value": "2126428" - }, - { - "type": "bf:Lccn", - "value": "01015984" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679704" - } - ], - "updatedAt": 1711416294126, - "publicationStatement": [ - "Philadelphia : H.L. Everts & Co., 1882." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Crumrine, B. History of Washington County)", - "urn:bnum:12698688", - "urn:oclc:2126428", - "urn:lccn:01015984", - "urn:identifier:(WaOLN)nyp2679704" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1882" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Pa.) -- History.", - "Washington County (Pa.) -- Biography.", - "United States -- History -- Regimental histories -- Civil War, 1861-1865 -- Pennsylvania." - ], - "titleDisplay": [ - "History of Washington County, Pennsylvania : with biographical sketches of many of its pioneers and prominent men / edited by Boyd Crumrine." - ], - "uri": "b12698688", - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 34.321877, - "b12698688" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698688", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmg2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" - ], - "idBarcode": [ - "33433089017630" - ], - "identifier": [ - "urn:shelfmark:NYGB PENN. L W276.11", - "urn:barcode:33433089017630" - ], - "identifierV2": [ - { - "value": "NYGB PENN. L W276.11", - "type": "bf:ShelfMark" - }, - { - "value": "33433089017630", - "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": [ - "NYGB PENN. L W276.11" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB PENN. L W276.11" - ], - "shelfMark_sort": "aNYGB PENN. L W276.000011", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24243554" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698688", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Crumrine, B. History of Washington County)" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (Crumrine, B. History of Washington County)", - "type": "bf:ShelfMark" - } - ], - "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": [ - "ISD (Washington Co.) (Crumrine, B. History of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (Crumrine, B. History of Washington County)" - ], - "shelfMark_sort": "aISD (Washington Co.) (Crumrine, B. History of Washington County)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16194144" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708159", - "_score": 33.694798, - "_source": { - "extent": [ - "2 v. (xxx, 921 p.) : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dodge County (Neb.)", - "Dodge County (Neb.) -- History", - "Washington County (Neb.)", - "Washington County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "American Historical Society" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1921 - ], - "title": [ - "History of Dodge and Washington Counties, Nebraska, and their people" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1921" - ], - "numElectronicResources": [ - 3 - ], - "contributorLiteral": [ - "Buss, William Henry, 1852-", - "Osterman, Thomas T., 1876-" - ], - "dateStartYear": [ - 1921 - ], - "idOclc": [ - "9115300" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708159" - }, - { - "type": "nypl:Oclc", - "value": "9115300" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689118" - } - ], - "updatedAt": 1711525759377, - "publicationStatement": [ - "Chicago : American Historical Society, 1921." - ], - "identifier": [ - "urn:shelfmark:IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska)", - "urn:bnum:12708159", - "urn:oclc:9115300", - "urn:identifier:(WaOLN)nyp2689118" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1921" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dodge County (Neb.) -- History.", - "Washington County (Neb.) -- History." - ], - "titleDisplay": [ - "History of Dodge and Washington Counties, Nebraska, and their people / editors, William H. Buss, Thomas T. Osterman." - ], - "uri": "b12708159", - "electronicResources": [ - { - "label": "Full text available via HathiTrust - v.1", - "url": "http://hdl.handle.net/2027/wu.89072937865" - }, - { - "label": "Full text available via HathiTrust - v.2", - "url": "http://hdl.handle.net/2027/wu.89072940190" - }, - { - "label": "Full text available via HathiTrust - v.2", - "url": "http://hdl.handle.net/2027/yale.39002070949590" - } - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 33.694798, - "b12708159" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708159", - "_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": [ - "33433080032174" - ], - "identifier": [ - "urn:shelfmark:IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 2", - "urn:barcode:33433080032174" - ], - "identifierV2": [ - { - "value": "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433080032174", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 2" - ], - "shelfMark_sort": "aIWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17550248" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708159", - "_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": [ - "33433080032166" - ], - "identifier": [ - "urn:shelfmark:IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 1", - "urn:barcode:33433080032166" - ], - "identifierV2": [ - { - "value": "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433080032166", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 1" - ], - "shelfMark_sort": "aIWD (Dodge Co.) (Buss, W. H. History of Dodge and Washington counties, Nebraska) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16201567" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708347", - "_score": 33.489098, - "_source": { - "extent": [ - "vi, 702 p. : ill., maps, ports. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Iowa)", - "Washington County (Iowa) -- History", - "Washington County (Iowa) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Union Historical Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1880 - ], - "title": [ - "The history of Washington County, Iowa, its cities, towns, and c., a biographical directory of its citizens ...." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVO (Washington co.) (History of Washington county, Iowa)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1880" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Union Historical Company." - ], - "dateStartYear": [ - 1880 - ], - "idOclc": [ - "6792805" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVO (Washington co.) (History of Washington county, Iowa)" - }, - { - "type": "nypl:Bnumber", - "value": "12708347" - }, - { - "type": "nypl:Oclc", - "value": "6792805" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689306" - } - ], - "updatedAt": 1711535420905, - "publicationStatement": [ - "Des Moines : Union Historical Co., 1880." - ], - "identifier": [ - "urn:shelfmark:IVO (Washington co.) (History of Washington county, Iowa)", - "urn:bnum:12708347", - "urn:oclc:6792805", - "urn:identifier:(WaOLN)nyp2689306" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1880" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Iowa) -- History.", - "Washington County (Iowa) -- Biography." - ], - "titleDisplay": [ - "The history of Washington County, Iowa, its cities, towns, and c., a biographical directory of its citizens ...." - ], - "uri": "b12708347", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081921193" - } - ], - "placeOfPublication": [ - "Des Moines" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 33.489098, - "b12708347" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708347", - "_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" - ], - "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": [ - "33433102011909" - ], - "identifier": [ - "urn:shelfmark:IVO (Washington co.) (History of Washington county, Iowa)", - "urn:barcode:33433102011909" - ], - "identifierV2": [ - { - "value": "IVO (Washington co.) (History of Washington county, Iowa)", - "type": "bf:ShelfMark" - }, - { - "value": "33433102011909", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVO (Washington co.) (History of Washington county, Iowa)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVO (Washington co.) (History of Washington county, Iowa)" - ], - "shelfMark_sort": "aIVO (Washington co.) (History of Washington county, Iowa)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201748" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12707954", - "_score": 32.086395, - "_source": { - "extent": [ - "282,[1]p. : ill., ports. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Burt County (Neb.)", - "Burt County (Neb.) -- History", - "Burt County (Neb.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ludi Printing Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1929 - ], - "title": [ - "A history of Burt County, Nebraska, from 1803 to 1929." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Burt co.) (History of Burt county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1929" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1929 - ], - "idOclc": [ - "4550964" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Burt co.) (History of Burt county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12707954" - }, - { - "type": "nypl:Oclc", - "value": "4550964" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2688913" - } - ], - "updatedAt": 1711219862627, - "publicationStatement": [ - "Wahoo, Neb. : Ludi Printing Co., [1929?]" - ], - "identifier": [ - "urn:shelfmark:IWD (Burt co.) (History of Burt county, Nebraska)", - "urn:bnum:12707954", - "urn:oclc:4550964", - "urn:identifier:(WaOLN)nyp2688913" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1929" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Burt County (Neb.) -- History.", - "Burt County (Neb.) -- Genealogy." - ], - "titleDisplay": [ - "A history of Burt County, Nebraska, from 1803 to 1929." - ], - "uri": "b12707954", - "placeOfPublication": [ - "Wahoo, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - 32.086395, - "b12707954" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12707954", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099461737" - ], - "identifier": [ - "urn:shelfmark:IWD (Burt co.) (History of Burt county, Nebraska)", - "urn:barcode:33433099461737" - ], - "identifierV2": [ - { - "value": "IWD (Burt co.) (History of Burt county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099461737", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Burt co.) (History of Burt county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Burt co.) (History of Burt county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Burt co.) (History of Burt county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201371" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698680", - "_score": 31.552704, - "_source": { - "extent": [ - "386, 121 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Whiskey Rebellion, Pa., 1794", - "Washington County (Pa.)", - "Washington County (Pa.) -- History", - "Mason-Dixon Line" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1870 - ], - "title": [ - "History of Washington County : from its first settlement to the present time ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1870" - ], - "creatorLiteral": [ - "Creigh, Alfred, 1810-" - ], - "idLccn": [ - "01015943" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1870 - ], - "idOclc": [ - "4225089" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)" - }, - { - "type": "nypl:Bnumber", - "value": "12698680" - }, - { - "type": "nypl:Oclc", - "value": "4225089" - }, - { - "type": "bf:Lccn", - "value": "01015943" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679696" - } - ], - "updatedAt": 1710982362542, - "publicationStatement": [ - "[Washington, Pa. : s.n., 1870]." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)", - "urn:bnum:12698680", - "urn:oclc:4225089", - "urn:lccn:01015943", - "urn:identifier:(WaOLN)nyp2679696" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1870" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Whiskey Rebellion, Pa., 1794.", - "Washington County (Pa.) -- History.", - "Mason-Dixon Line." - ], - "titleDisplay": [ - "History of Washington County : from its first settlement to the present time ... / by Alfred Creigh." - ], - "uri": "b12698680", - "lccClassification": [ - "F157.W3 C8" - ], - "placeOfPublication": [ - "[Washington, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 31.552704, - "b12698680" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698680", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433114308988" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)", - "urn:barcode:33433114308988" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)", - "type": "bf:ShelfMark" - }, - { - "value": "33433114308988", - "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": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1870)" - ], - "shelfMark_sort": "aISD (Washington Co.) (Creigh, A. History of Washington County. 1870)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16194138" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12686940", - "_score": 31.545528, - "_source": { - "extent": [ - "932 p., [58] leaves of plates : ill., ports. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "\"Bibliography of Montpelier. By M.D. Gilman\": p. 313-324.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Vt.)", - "Washington County (Vt.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vermont Watchman and State Journal Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1882 - ], - "title": [ - "The History of Washington County in the Vermont historical gazetteer : including a county chapter and the local histories of the towns of Montpelier ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IQF (Washington Co.) (Hemenway, A. M. History of Washington county)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1882" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Hemenway, Abby Maria, 1828-1890." - ], - "dateStartYear": [ - 1882 - ], - "idOclc": [ - "6449828" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IQF (Washington Co.) (Hemenway, A. M. History of Washington county)" - }, - { - "type": "nypl:Bnumber", - "value": "12686940" - }, - { - "type": "nypl:Oclc", - "value": "6449828" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2668021" - } - ], - "uniformTitle": [ - "Vermont historical gazetteer." - ], - "updatedAt": 1711417394822, - "publicationStatement": [ - "Montpelier, Vt. : Vermont Watchman and State Journal Press, 1882." - ], - "identifier": [ - "urn:shelfmark:IQF (Washington Co.) (Hemenway, A. M. History of Washington county)", - "urn:bnum:12686940", - "urn:oclc:6449828", - "urn:identifier:(WaOLN)nyp2668021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1882" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Vt.) -- History." - ], - "titleDisplay": [ - "The History of Washington County in the Vermont historical gazetteer : including a county chapter and the local histories of the towns of Montpelier ... / by native and resident historians ; collated and published by Abby Maria Hemenway." - ], - "uri": "b12686940", - "placeOfPublication": [ - "Montpelier, Vt." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 31.545528, - "b12686940" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12686940", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "identifier": [ - "urn:shelfmark:IQF (Washington Co.) (Hemenway, A. M. History of Washington county)" - ], - "identifierV2": [ - { - "value": "IQF (Washington Co.) (Hemenway, A. M. History of Washington county)", - "type": "bf:ShelfMark" - } - ], - "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": [ - "IQF (Washington Co.) (Hemenway, A. M. History of Washington county)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IQF (Washington Co.) (Hemenway, A. M. History of Washington county)" - ], - "shelfMark_sort": "aIQF (Washington Co.) (Hemenway, A. M. History of Washington county)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16187180" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698683", - "_score": 31.545528, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "375, 132 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Whiskey Rebellion, Pa., 1794", - "Washington County (Pa.)", - "Washington County (Pa.) -- History", - "Mason-Dixon Line", - "Washington County (Pa.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "B. Singerly" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1871 - ], - "title": [ - "History of Washington County : from its first settlement to the present time : first under Virginia as Yohogania, Ohio, or Augusta County until 1781 : and subsequently under Pennsylvania; with sketches of all the townships, boroughs, and villages, etc. : and to which is added a full account of the celebrated Mason and Dixon's Line, the Whiskey Insurrection, Indian warfare, traditional and local historical events" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1871" - ], - "creatorLiteral": [ - "Creigh, Alfred, 1810-" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1871 - ], - "donor": [ - "Gift of New York Genealogical and Biographical Society." - ], - "idOclc": [ - "2948193" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)" - }, - { - "type": "nypl:Bnumber", - "value": "12698683" - }, - { - "type": "nypl:Oclc", - "value": "2948193" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679699" - } - ], - "updatedAt": 1711524689542, - "publicationStatement": [ - "Harrisburg, Pa. : B. Singerly, 1871." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)", - "urn:bnum:12698683", - "urn:oclc:2948193", - "urn:identifier:(WaOLN)nyp2679699" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1871" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Whiskey Rebellion, Pa., 1794.", - "Washington County (Pa.) -- History.", - "Mason-Dixon Line.", - "Washington County (Pa.) -- Genealogy." - ], - "titleDisplay": [ - "History of Washington County : from its first settlement to the present time : first under Virginia as Yohogania, Ohio, or Augusta County until 1781 : and subsequently under Pennsylvania; with sketches of all the townships, boroughs, and villages, etc. : and to which is added a full account of the celebrated Mason and Dixon's Line, the Whiskey Insurrection, Indian warfare, traditional and local historical events / by Alfred Creigh." - ], - "uri": "b12698683", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081819249" - } - ], - "placeOfPublication": [ - "Harrisburg, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 31.545528, - "b12698683" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698683", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmg2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" - ], - "idBarcode": [ - "33433086791955" - ], - "identifier": [ - "urn:shelfmark:NYGB PA. L W276 ", - "urn:barcode:33433086791955" - ], - "identifierV2": [ - { - "value": "NYGB PA. L W276 ", - "type": "bf:ShelfMark" - }, - { - "value": "33433086791955", - "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": [ - "NYGB PA. L W276 " - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB PA. L W276 " - ], - "shelfMark_sort": "aNYGB PA. L W276 ", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24290349" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698683", - "_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:52", - "label": "i-archive/google monograph" - } - ], - "catalogItemType_packed": [ - "catalogItemType:52||i-archive/google monograph" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081819249" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)", - "urn:barcode:33433081819249" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081819249", - "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": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (Creigh, A. History of Washington County. 1871)" - ], - "shelfMark_sort": "aISD (Washington Co.) (Creigh, A. History of Washington County. 1871)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16194141" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12703367", - "_score": 31.545528, - "_source": { - "extent": [ - "739 p., [68] leaves of plates : ill., map, ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: 1788.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Several unnumbered pages of text inserted.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Ohio)", - "Washington County (Ohio) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "H.Z. Williams" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1881 - ], - "title": [ - "History of Washington County, Ohio : with illustrations and biographical sketches." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVB (Washington Co., Ohio) (History of Washington County, Ohio)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1881" - ], - "idLccn": [ - "rc 01002240" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "H.Z. Williams & Bro.. pbl" - ], - "dateStartYear": [ - 1881 - ], - "idOclc": [ - "29679372" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVB (Washington Co., Ohio) (History of Washington County, Ohio)" - }, - { - "type": "nypl:Bnumber", - "value": "12703367" - }, - { - "type": "nypl:Oclc", - "value": "29679372" - }, - { - "type": "bf:Lccn", - "value": "rc 01002240" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2684372" - } - ], - "updatedAt": 1711179695896, - "publicationStatement": [ - "[Cleveland] : H.Z. Williams, 1881." - ], - "identifier": [ - "urn:shelfmark:IVB (Washington Co., Ohio) (History of Washington County, Ohio)", - "urn:bnum:12703367", - "urn:oclc:29679372", - "urn:lccn:rc 01002240", - "urn:identifier:(WaOLN)nyp2684372" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1881" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Ohio) -- History." - ], - "titleDisplay": [ - "History of Washington County, Ohio : with illustrations and biographical sketches." - ], - "uri": "b12703367", - "lccClassification": [ - "F497.W3 H6" - ], - "placeOfPublication": [ - "[Cleveland]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - 31.545528, - "b12703367" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12703367", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433102385576" - ], - "identifier": [ - "urn:shelfmark:IVB (Washington Co., Ohio) (History of Washington County, Ohio)", - "urn:barcode:33433102385576" - ], - "identifierV2": [ - { - "value": "IVB (Washington Co., Ohio) (History of Washington County, Ohio)", - "type": "bf:ShelfMark" - }, - { - "value": "33433102385576", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVB (Washington Co., Ohio) (History of Washington County, Ohio)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVB (Washington Co., Ohio) (History of Washington County, Ohio)" - ], - "shelfMark_sort": "aIVB (Washington Co., Ohio) (History of Washington County, Ohio)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16197944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19610278", - "_score": 30.91381, - "_source": { - "extent": [ - "127 p. ; : chiefly ill., maps" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 6).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Frontier and pioneer life", - "Frontier and pioneer life -- Washington County", - "Fort Atkinson State Historical Park (Neb.)", - "Fort Atkinson State Historical Park (Neb.) -- History", - "Fort Atkinson State Historical Park (Neb.) -- History -- Pictorial works", - "Washington County (Neb.)", - "Washington County (Neb.) -- History, Military", - "Washington County (Neb.) -- History, Military -- 19th century" - ], - "publisherLiteral": [ - "Arcadia Pub." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 2011 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Fort Atkinson" - ], - "shelfMark": [ - "IWD (Washington Co.) 12-6374" - ], - "creatorLiteral": [ - "Flint, Kenneth C." - ], - "createdString": [ - "2011" - ], - "idLccn": [ - " 2010933170" - ], - "seriesStatement": [ - "Images of America" - ], - "dateStartYear": [ - 2011 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Washington Co.) 12-6374" - }, - { - "type": "nypl:Bnumber", - "value": "19610278" - }, - { - "type": "bf:Isbn", - "value": "9780738583532 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "0738583537 (pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 2010933170" - }, - { - "type": "nypl:Oclc", - "value": "679919732" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)679919732" - } - ], - "idOclc": [ - "679919732" - ], - "uniformTitle": [ - "Images of America." - ], - "holdings": [], - "updatedAt": 1652327461443, - "publicationStatement": [ - "Charleston, S.C. : Arcadia Pub., c2011." - ], - "identifier": [ - "urn:bnum:19610278", - "urn:isbn:9780738583532 (pbk.)", - "urn:isbn:0738583537 (pbk.)", - "urn:lccn: 2010933170", - "urn:oclc:679919732", - "urn:undefined:(OCoLC)679919732" - ], - "idIsbn": [ - "9780738583532 (pbk.)", - "0738583537 (pbk.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2011" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Frontier and pioneer life -- Washington County.", - "Fort Atkinson State Historical Park (Neb.) -- History -- Pictorial works.", - "Washington County (Neb.) -- History, Military -- 19th century." - ], - "titleDisplay": [ - "Fort Atkinson / Kenneth C. Flint." - ], - "uri": "b19610278", - "lccClassification": [ - "F672.W3 F58 2011" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Charleston, S.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "9780738583532", - "0738583537" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 30.91381, - "b19610278" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19610278", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433106407806" - ], - "physicalLocation": [ - "IWD (Washington Co.) 12-6374" - ], - "shelfMark_sort": "aIWD (Washington Co.) 12-006374", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i29419660", - "shelfMark": [ - "IWD (Washington Co.) 12-6374" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Washington Co.) 12-6374" - }, - { - "type": "bf:Barcode", - "value": "33433106407806" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433106407806" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10751768", - "_score": 30.883291, - "_source": { - "extent": [ - "464 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Some ill. on lining papers.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Limited ed. of 1100 numbered copies.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Neb.)", - "Washington County (Neb.) -- History", - "Washington County (Neb.) -- Biography", - "Washington County (Neb.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Association" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "title": [ - "Washington County, Nebraska, history 1980" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD+ (Washington Co.) 82-253" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81050688" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Washington County Historical Association (Neb.)" - ], - "dateStartYear": [ - 1980 - ], - "idOclc": [ - "7871397", - "NYPG82-B6759" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD+ (Washington Co.) 82-253" - }, - { - "type": "nypl:Bnumber", - "value": "10751768" - }, - { - "type": "nypl:Oclc", - "value": "7871397" - }, - { - "type": "nypl:Oclc", - "value": "NYPG82-B6759" - }, - { - "type": "bf:Lccn", - "value": "81050688" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0758644" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7871397" - } - ], - "updatedAt": 1711125053015, - "publicationStatement": [ - "Fort Calhoun, Neb. : The Association, c1980." - ], - "identifier": [ - "urn:shelfmark:IWD+ (Washington Co.) 82-253", - "urn:bnum:10751768", - "urn:oclc:7871397", - "urn:oclc:NYPG82-B6759", - "urn:lccn:81050688", - "urn:identifier:(WaOLN)nyp0758644", - "urn:identifier:(OCoLC)7871397" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Neb.) -- History.", - "Washington County (Neb.) -- Biography.", - "Washington County (Neb.) -- Genealogy." - ], - "titleDisplay": [ - "Washington County, Nebraska, history 1980 / sponsored by the Washington County Historical Association ; and compiled by the people of Washington County." - ], - "uri": "b10751768", - "lccClassification": [ - "F672.W3 W37" - ], - "placeOfPublication": [ - "Fort Calhoun, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - 30.883291, - "b10751768" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10751768", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433100850308" - ], - "identifier": [ - "urn:shelfmark:IWD+ (Washington Co.) 82-253", - "urn:barcode:33433100850308" - ], - "identifierV2": [ - { - "value": "IWD+ (Washington Co.) 82-253", - "type": "bf:ShelfMark" - }, - { - "value": "33433100850308", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XF" - ], - "physicalLocation": [ - "IWD+ (Washington Co.) 82-253" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD+ (Washington Co.) 82-253" - ], - "shelfMark_sort": "aIWD+ (Washington Co.) 82-000253", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15787935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708335", - "_score": 30.608044, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xxii p., l ℓ., 965 p. incl. front., illus., ports." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hall County (Neb.)", - "Hall County (Neb.) -- History", - "Hall County (Neb.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Western Publishing and Engraving Company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1920 - ], - "title": [ - "History of Hall County, Nebraska; a narrative of the past with special emphasis upon the pioneer period of the county's history, and chronological presentation of its social, commercial, educational, religious, and civic development from the early days to the present time, and special analysis of its military and civil participation in the late world war" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1920" - ], - "creatorLiteral": [ - "Buechler, A. F. (August F.), 1869-" - ], - "idLccn": [ - "20005908" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Barr, R. J. (Robert J.), 1849-", - "Stough, Dale P., 1888-" - ], - "dateStartYear": [ - 1920 - ], - "idOclc": [ - "7800226" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708335" - }, - { - "type": "nypl:Oclc", - "value": "7800226" - }, - { - "type": "bf:Lccn", - "value": "20005908" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689294" - } - ], - "updatedAt": 1711525759377, - "publicationStatement": [ - "Lincoln, Neb., Western Publishing and Engraving Company, 1920." - ], - "identifier": [ - "urn:shelfmark:IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)", - "urn:bnum:12708335", - "urn:oclc:7800226", - "urn:lccn:20005908", - "urn:identifier:(WaOLN)nyp2689294" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1920" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hall County (Neb.) -- History.", - "Hall County (Neb.) -- Biography." - ], - "titleDisplay": [ - "History of Hall County, Nebraska; a narrative of the past with special emphasis upon the pioneer period of the county's history, and chronological presentation of its social, commercial, educational, religious, and civic development from the early days to the present time, and special analysis of its military and civil participation in the late world war, by A. F. Buechler and R. J. Barr, editors in chief; Dale P. Stough, associate compiling editor; advisory editorial board : Judge Bayard H. Paine, C. H. Menck [and others]" - ], - "uri": "b12708335", - "lccClassification": [ - "F672.H2 B9" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081785937" - } - ], - "placeOfPublication": [ - "Lincoln, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 30.608044, - "b12708335" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708335", - "_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" - ], - "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": [ - "33433081785937" - ], - "identifier": [ - "urn:shelfmark:IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)", - "urn:barcode:33433081785937" - ], - "identifierV2": [ - { - "value": "IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081785937", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)" - ], - "shelfMark_sort": "aIWD (Hall Co.) (Buechler, A. F. History of Hall County, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201737" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708353", - "_score": 29.95487, - "_source": { - "extent": [ - "2 v. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index in vol. 2 for biographical entries.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Projected to include York County?", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hamilton County (Neb.)", - "Hamilton County (Neb.) -- History", - "Hamilton County (Neb.) -- Biography", - "Clay County (Neb.)", - "Clay County (Neb.) -- History", - "Clay County (Neb.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1921 - ], - "title": [ - "History of Hamilton and Clay counties, Nebraska / supervising editors George L. Burr, O.O. Buck ; compiled by Dale P. Stough." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1921" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Burr, George L., 1859-", - "Buck, O. O., 1871-", - "Stough, Dale P., 1888-" - ], - "dateStartYear": [ - 1921 - ], - "idOclc": [ - "8191342" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708353" - }, - { - "type": "nypl:Oclc", - "value": "8191342" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689312" - } - ], - "updatedAt": 1711525759377, - "publicationStatement": [ - "Chicago : The S.J. Clarke Publishing Company, 1921." - ], - "identifier": [ - "urn:shelfmark:IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska)", - "urn:bnum:12708353", - "urn:oclc:8191342", - "urn:identifier:(WaOLN)nyp2689312" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1921" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hamilton County (Neb.) -- History.", - "Hamilton County (Neb.) -- Biography.", - "Clay County (Neb.) -- History.", - "Clay County (Neb.) -- Biography." - ], - "titleDisplay": [ - "History of Hamilton and Clay counties, Nebraska / supervising editors George L. Burr, O.O. Buck ; compiled by Dale P. Stough." - ], - "uri": "b12708353", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081785911" - } - ], - "placeOfPublication": [ - "Chicago : The S.J. Clarke Publishing Company" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 29.95487, - "b12708353" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708353", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081785911" - ], - "identifier": [ - "urn:shelfmark:IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 2", - "urn:barcode:33433081785911" - ], - "identifierV2": [ - { - "value": "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433081785911", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 2" - ], - "shelfMark_sort": "aIWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i16201754" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708353", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081785929" - ], - "identifier": [ - "urn:shelfmark:IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 1", - "urn:barcode:33433081785929" - ], - "identifierV2": [ - { - "value": "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433081785929", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 1" - ], - "shelfMark_sort": "aIWD (Hamilton Co.) (History of Hamilton and Clay Counties, Nebraska) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i17550256" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12701404", - "_score": 29.923061, - "_source": { - "extent": [ - "171, [2] p. incl. plates, port." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Ga.)", - "Washington County (Ga.) -- History", - "Washington County (Ga.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Byrd printing co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1924 - ], - "title": [ - "History of Washington county" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ITK (Washington county) (Mitchell, E. History of Washington County)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1924" - ], - "creatorLiteral": [ - "Mitchell, Ella, 1855-1924." - ], - "idLccn": [ - "27024713" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1924 - ], - "idOclc": [ - "1847179" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ITK (Washington county) (Mitchell, E. History of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12701404" - }, - { - "type": "nypl:Oclc", - "value": "1847179" - }, - { - "type": "bf:Lccn", - "value": "27024713" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2682410" - } - ], - "updatedAt": 1711179695896, - "publicationStatement": [ - "Atlanta, Ga., Byrd printing co., 1924." - ], - "identifier": [ - "urn:shelfmark:ITK (Washington county) (Mitchell, E. History of Washington County)", - "urn:bnum:12701404", - "urn:oclc:1847179", - "urn:lccn:27024713", - "urn:identifier:(WaOLN)nyp2682410" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1924" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Ga.) -- History.", - "Washington County (Ga.) -- Biography." - ], - "titleDisplay": [ - "History of Washington county, by Ella Mitchell." - ], - "uri": "b12701404", - "lccClassification": [ - "F292.W25 M6" - ], - "placeOfPublication": [ - "Atlanta, Ga." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 29.923061, - "b12701404" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12701404", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433095338145" - ], - "identifier": [ - "urn:shelfmark:ITK (Washington county) (Mitchell, E. History of Washington County)", - "urn:barcode:33433095338145" - ], - "identifierV2": [ - { - "value": "ITK (Washington county) (Mitchell, E. History of Washington County)", - "type": "bf:ShelfMark" - }, - { - "value": "33433095338145", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ITK (Washington county) (Mitchell, E. History of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ITK (Washington county) (Mitchell, E. History of Washington County)" - ], - "shelfMark_sort": "aITK (Washington county) (Mitchell, E. History of Washington County)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16196247" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13051476", - "_score": 29.84164, - "_source": { - "extent": [ - "504 p., ca. 150 leaves of plates : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: 1737.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "By Crisfield Johnson.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (N.Y.)", - "Washington County (N.Y.) -- History", - "Washington County (N.Y.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Everts & Ensign" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1878 - ], - "title": [ - "History of Washington Co., New York : with illustrations and biographical sketches of some of its prominent men and pioneers." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1878" - ], - "creatorLiteral": [ - "Johnson, Crisfield." - ], - "idLccn": [ - "06021553 //r" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1878 - ], - "idOclc": [ - "2582043" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "13051476" - }, - { - "type": "nypl:Oclc", - "value": "2582043" - }, - { - "type": "bf:Lccn", - "value": "06021553 //r" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3030110" - } - ], - "updatedAt": 1711180512369, - "publicationStatement": [ - "Philadelphia : Everts & Ensign, 1878." - ], - "identifier": [ - "urn:shelfmark:IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)", - "urn:bnum:13051476", - "urn:oclc:2582043", - "urn:lccn:06021553 //r", - "urn:identifier:(WaOLN)nyp3030110" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1878" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (N.Y.) -- History.", - "Washington County (N.Y.) -- Biography." - ], - "titleDisplay": [ - "History of Washington Co., New York : with illustrations and biographical sketches of some of its prominent men and pioneers." - ], - "uri": "b13051476", - "lccClassification": [ - "F127.W3 J66" - ], - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - 29.84164, - "b13051476" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13051476", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433077538639" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)", - "urn:barcode:33433077538639" - ], - "identifierV2": [ - { - "value": "IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)", - "type": "bf:ShelfMark" - }, - { - "value": "33433077538639", - "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": [ - "IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IRM (Washington Co.) (Johnson, C. 1737. History of Washington County)" - ], - "shelfMark_sort": "aIRM (Washington Co.) (Johnson, C. 1737. History of Washington County)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16217784" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19661706", - "_score": 29.46116, - "_source": { - "extent": [ - "xii, 160 p. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Tex.)", - "Washington County (Tex.) -- History", - "Brenham (Tex.)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Naylor Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1949 - ], - "title": [ - "History of Washington County, [Texas]" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1949" - ], - "creatorLiteral": [ - "Schmidt, Charles F." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1949 - ], - "idOclc": [ - "762148045" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)" - }, - { - "type": "nypl:Bnumber", - "value": "19661706" - }, - { - "type": "nypl:Oclc", - "value": "762148045" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)762148045" - } - ], - "updatedAt": 1711541288810, - "publicationStatement": [ - "San Antonio, Tex. : Naylor Co., 1949." - ], - "identifier": [ - "urn:shelfmark:ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)", - "urn:bnum:19661706", - "urn:oclc:762148045", - "urn:identifier:(OCoLC)762148045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1949" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Tex.) -- History.", - "Brenham (Tex.)" - ], - "titleDisplay": [ - "History of Washington County, [Texas] / by Charles F. Schmidt." - ], - "uri": "b19661706", - "placeOfPublication": [ - "San Antonio, Tex." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - " 22 cm." - ] - }, - "sort": [ - 29.46116, - "b19661706" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19661706", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433101113094" - ], - "identifier": [ - "urn:shelfmark:ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)", - "urn:barcode:33433101113094" - ], - "identifierV2": [ - { - "value": "ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)", - "type": "bf:ShelfMark" - }, - { - "value": "33433101113094", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)" - ], - "shelfMark_sort": "aITRM (Washington County) (Schmidt, C. F. History of Washington County, Texas)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29011138" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698265", - "_score": 29.204111, - "_source": { - "extent": [ - "p. 875-975, 1 map." - ], - "note": [ - { - "noteType": "Note", - "label": "No title page.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1849 - ], - "title": [ - "Survey of Washington county, New York. [Taken under the direction of the New York State Agricultural society]." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington Co.) (Fitch, A. Survey of Washington county)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1849" - ], - "creatorLiteral": [ - "Fitch, Asa, 1809-1879." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "(N.Y.)-Legislature. Assem. no. 200" - ], - "dateStartYear": [ - 1849 - ], - "idOclc": [ - "35904737" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington Co.) (Fitch, A. Survey of Washington county)" - }, - { - "type": "nypl:Bnumber", - "value": "12698265" - }, - { - "type": "nypl:Oclc", - "value": "35904737" - } - ], - "updatedAt": 1711296124473, - "publicationStatement": [ - "[Albany, 1849]" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington Co.) (Fitch, A. Survey of Washington county)", - "urn:bnum:12698265", - "urn:oclc:35904737" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1849" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Survey of Washington county, New York. [Taken under the direction of the New York State Agricultural society]." - ], - "uri": "b12698265", - "placeOfPublication": [ - "[Albany" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8vo." - ] - }, - "sort": [ - 29.204111, - "b12698265" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698265", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433132410352" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington Co.) (Fitch, A. Survey of Washington county)", - "urn:barcode:33433132410352" - ], - "identifierV2": [ - { - "value": "IRM (Washington Co.) (Fitch, A. Survey of Washington county)", - "type": "bf:ShelfMark" - }, - { - "value": "33433132410352", - "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": [ - "IRM (Washington Co.) (Fitch, A. Survey of Washington county)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IRM (Washington Co.) (Fitch, A. Survey of Washington county)" - ], - "shelfMark_sort": "aIRM (Washington Co.) (Fitch, A. Survey of Washington county)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16193837" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12706905", - "_score": 29.204111, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Spine title: History of Washington County, Wisconsin.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "The editor's name does not appear on the t.-p. of v. 2.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Wis.)", - "Washington County (Wis.) -- History", - "Washington County (Wis.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S.J. Clarke Publishing Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1912 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Washington County, Wisconsin : past and present" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVK (Washington Co.) (Quickert, C. Washington County)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1912" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Quickert, Carl." - ], - "dateStartYear": [ - 1912 - ], - "idOclc": [ - "7657072" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVK (Washington Co.) (Quickert, C. Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12706905" - }, - { - "type": "nypl:Oclc", - "value": "7657072" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2687866" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711416216319, - "publicationStatement": [ - "Chicago : S.J. Clarke Publishing Co., 1912-" - ], - "identifier": [ - "urn:shelfmark:IVK (Washington Co.) (Quickert, C. Washington County)", - "urn:bnum:12706905", - "urn:oclc:7657072", - "urn:identifier:(WaOLN)nyp2687866" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1912" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Wis.) -- History.", - "Washington County (Wis.) -- Biography." - ], - "titleDisplay": [ - "Washington County, Wisconsin : past and present / Carl Quickert, editor." - ], - "uri": "b12706905", - "electronicResources": [ - { - "label": "Full text available via HathiTrust - v.3", - "url": "http://hdl.handle.net/2027/hvd.hwf7ku" - } - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "History of Washington County, Wisconsin." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 29.204111, - "b12706905" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12706905", - "_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": [ - "33433102093253" - ], - "identifier": [ - "urn:shelfmark:IVK (Washington Co.) (Quickert, C. Washington County) v. 2", - "urn:barcode:33433102093253" - ], - "identifierV2": [ - { - "value": "IVK (Washington Co.) (Quickert, C. Washington County) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433102093253", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVK (Washington Co.) (Quickert, C. Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVK (Washington Co.) (Quickert, C. Washington County) v. 2" - ], - "shelfMark_sort": "aIVK (Washington Co.) (Quickert, C. Washington County) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i29018575" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12706905", - "_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": [ - "33433102093261" - ], - "identifier": [ - "urn:shelfmark:IVK (Washington Co.) (Quickert, C. Washington County) v. 1", - "urn:barcode:33433102093261" - ], - "identifierV2": [ - { - "value": "IVK (Washington Co.) (Quickert, C. Washington County) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433102093261", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVK (Washington Co.) (Quickert, C. Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVK (Washington Co.) (Quickert, C. Washington County) v. 1" - ], - "shelfMark_sort": "aIVK (Washington Co.) (Quickert, C. Washington County) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16200383" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698693", - "_score": 28.446157, - "_source": { - "extent": [ - "3 v. front, illus. (incl. facsims.) pl., ports. 27 cm." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 2-3 contain biographical material.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Pa.)", - "Washington County (Pa.) -- History", - "Washington County (Pa.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1926 - ], - "title": [ - "History of Washington County, Pennsylvania, by Earle R. Forrest." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington County) (Forrest, E. R. History of Washington County)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1926" - ], - "creatorLiteral": [ - "Forrest, Earle Robert, 1883-" - ], - "idLccn": [ - "26008285" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1926 - ], - "idOclc": [ - "2766271" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington County) (Forrest, E. R. History of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12698693" - }, - { - "type": "nypl:Oclc", - "value": "2766271" - }, - { - "type": "bf:Lccn", - "value": "26008285" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679709" - } - ], - "updatedAt": 1711179688823, - "publicationStatement": [ - "Chicago, The S. J. Clarke Publishing Company, 1926." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington County) (Forrest, E. R. History of Washington County)", - "urn:bnum:12698693", - "urn:oclc:2766271", - "urn:lccn:26008285", - "urn:identifier:(WaOLN)nyp2679709" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1926" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Pa.) -- History.", - "Washington County (Pa.) -- Biography." - ], - "titleDisplay": [ - "History of Washington County, Pennsylvania, by Earle R. Forrest." - ], - "uri": "b12698693", - "lccClassification": [ - "F157.W3F7" - ], - "placeOfPublication": [ - "Chicago, The S. J. Clarke Publishing Company" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 28.446157, - "b12698693" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698693", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington County) (Forrest, E. R. History of Washington County)" - ], - "identifierV2": [ - { - "value": "ISD (Washington County) (Forrest, E. R. History of Washington County)", - "type": "bf:ShelfMark" - } - ], - "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": [ - "ISD (Washington County) (Forrest, E. R. History of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington County) (Forrest, E. R. History of Washington County)" - ], - "shelfMark_sort": "aISD (Washington County) (Forrest, E. R. History of Washington County)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16194148" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12707853", - "_score": 28.11137, - "_source": { - "extent": [ - "262 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint of 1909 edition.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Antelope County (Neb.)", - "Antelope County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lakeside Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "dateEndString": [ - "1909" - ], - "title": [ - "A history of Antelope county, Nebraska, from its first settlement in 1868 to the close of the year 1883" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1967" - ], - "creatorLiteral": [ - "Leach, A. J." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "idOclc": [ - "35949894" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12707853" - }, - { - "type": "nypl:Oclc", - "value": "35949894" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2688812" - } - ], - "dateEndYear": [ - 1909 - ], - "updatedAt": 1710985049357, - "publicationStatement": [ - "[Chicago, Lakeside Press, 1967]" - ], - "identifier": [ - "urn:shelfmark:IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)", - "urn:bnum:12707853", - "urn:oclc:35949894", - "urn:identifier:(WaOLN)nyp2688812" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Antelope County (Neb.) -- History." - ], - "titleDisplay": [ - "A history of Antelope county, Nebraska, from its first settlement in 1868 to the close of the year 1883, by A.J. Leach. [n.p.] 1909." - ], - "uri": "b12707853", - "placeOfPublication": [ - "[Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 28.11137, - "b12707853" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12707853", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099461711" - ], - "identifier": [ - "urn:shelfmark:IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)", - "urn:barcode:33433099461711" - ], - "identifierV2": [ - { - "value": "IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099461711", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Antelope Co.) (Leach, A. J. History of Antelope county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201271" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698675", - "_score": 27.57724, - "_source": { - "extent": [ - "1486 p. illus., ports. ;" - ], - "note": [ - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Pa.)", - "Washington County (Pa.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. H. Beers" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 3 - ], - "createdYear": [ - 1893 - ], - "title": [ - "Commemorative biographical record of Washington County, Pennsylvania, containing biographical sketches of prominent and representative citizens, and of many of the early settled families." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington Co.) (Commemorative biographical record of Washington County)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1893" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "J.H. Beers & Co.", - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1893 - ], - "donor": [ - "Gift of New York Genealogical and Biographical Society." - ], - "idOclc": [ - "5348472" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington Co.) (Commemorative biographical record of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12698675" - }, - { - "type": "nypl:Oclc", - "value": "5348472" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679691" - } - ], - "updatedAt": 1711520412078, - "publicationStatement": [ - "Chicago, J. H. Beers, 1893." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Commemorative biographical record of Washington County)", - "urn:bnum:12698675", - "urn:oclc:5348472", - "urn:identifier:(WaOLN)nyp2679691" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1893" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Pa.) -- Biography." - ], - "titleDisplay": [ - "Commemorative biographical record of Washington County, Pennsylvania, containing biographical sketches of prominent and representative citizens, and of many of the early settled families." - ], - "uri": "b12698675", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081820247" - } - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26cm." - ] - }, - "sort": [ - 27.57724, - "b12698675" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 3, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698675", - "_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. 2 (p.p. 759-1486)" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081820247" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 2 (p.p. 759-1486)", - "urn:barcode:33433081820247" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 2 (p.p. 759-1486)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081820247", - "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": [ - "ISD (Washington Co.) (Commemorative biographical record of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 2 (p.p. 759-1486)" - ], - "shelfMark_sort": "aISD (Washington Co.) (Commemorative biographical record of Washington County) v. 000002 (p.p. 759-1486)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17549711" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698675", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "enumerationChronology": [ - "v. 1 (p.p 1-738)" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081820239" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 1 (p.p 1-738)", - "urn:barcode:33433081820239" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 1 (p.p 1-738)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081820239", - "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": [ - "ISD (Washington Co.) (Commemorative biographical record of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (Commemorative biographical record of Washington County) v. 1 (p.p 1-738)" - ], - "shelfMark_sort": "aISD (Washington Co.) (Commemorative biographical record of Washington County) v. 000001 (p.p 1-738)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16194135" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698675", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmg2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" - ], - "idBarcode": [ - "33433089017648" - ], - "identifier": [ - "urn:shelfmark:NYGB PENN. L W276.12", - "urn:barcode:33433089017648" - ], - "identifierV2": [ - { - "value": "NYGB PENN. L W276.12", - "type": "bf:ShelfMark" - }, - { - "value": "33433089017648", - "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": [ - "NYGB PENN. L W276.12" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB PENN. L W276.12" - ], - "shelfMark_sort": "aNYGB PENN. L W276.000012", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24243558" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708339", - "_score": 27.405481, - "_source": { - "extent": [ - "2 v. : map, ports., plates ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Iowa)", - "Washington County (Iowa) -- History", - "Washington County (Iowa) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S. J. Clarke Pub. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1909 - ], - "title": [ - "History of Washington County, Iowa from the first white settlements to 1908. Also biographical sketches of some prominent citizens of the county" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Burrell, Howard A." - ], - "numElectronicResources": [ - 2 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "6782853" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa)" - }, - { - "type": "nypl:Bnumber", - "value": "12708339" - }, - { - "type": "nypl:Oclc", - "value": "6782853" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689298" - } - ], - "updatedAt": 1711524723885, - "publicationStatement": [ - "Chicago : S. J. Clarke Pub. Co., 1909." - ], - "identifier": [ - "urn:shelfmark:IVO (Washington) (Burrell, H. A. History of Washington County, Iowa)", - "urn:bnum:12708339", - "urn:oclc:6782853", - "urn:identifier:(WaOLN)nyp2689298" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Iowa) -- History.", - "Washington County (Iowa) -- Biography." - ], - "titleDisplay": [ - "History of Washington County, Iowa from the first white settlements to 1908. Also biographical sketches of some prominent citizens of the county / by Howard A. Burrell." - ], - "uri": "b12708339", - "electronicResources": [ - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://hdl.handle.net/2027/nyp.33433081921201" - }, - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://hdl.handle.net/2027/nyp.33433081921219" - } - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 27.405481, - "b12708339" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708339", - "_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:52", - "label": "i-archive/google monograph" - } - ], - "catalogItemType_packed": [ - "catalogItemType:52||i-archive/google monograph" - ], - "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": [ - "33433081921201" - ], - "identifier": [ - "urn:shelfmark:IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 2", - "urn:barcode:33433081921201" - ], - "identifierV2": [ - { - "value": "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433081921201", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 2" - ], - "shelfMark_sort": "aIVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17550254" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708339", - "_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:52", - "label": "i-archive/google monograph" - } - ], - "catalogItemType_packed": [ - "catalogItemType:52||i-archive/google monograph" - ], - "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": [ - "33433102011917" - ], - "identifier": [ - "urn:shelfmark:IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 1", - "urn:barcode:33433102011917" - ], - "identifierV2": [ - { - "value": "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433102011917", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 1" - ], - "shelfMark_sort": "aIVO (Washington) (Burrell, H. A. History of Washington County, Iowa) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16201741" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698698", - "_score": 27.129774, - "_source": { - "extent": [ - "1369 p. illus., ports., maps." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Pa.)", - "Washington County (Pa.) -- History", - "Washington County (Pa.) -- Biography", - "Washington (Pa.)", - "Washington (Pa.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Richmond-Arnold Pub. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1910 - ], - "title": [ - "20th century history of the city of Washington and Washington County, Pennsylvania and representative citizens" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1910" - ], - "creatorLiteral": [ - "McFarland, Joseph Fulton." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Richmond-Arnold Publishing Co. (Chicago) pbl" - ], - "dateStartYear": [ - 1910 - ], - "idOclc": [ - "4281195" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.)" - }, - { - "type": "nypl:Bnumber", - "value": "12698698" - }, - { - "type": "nypl:Oclc", - "value": "4281195" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2679714" - } - ], - "updatedAt": 1711134463685, - "publicationStatement": [ - "Chicago, Richmond-Arnold Pub. Co., 1910." - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.)", - "urn:bnum:12698698", - "urn:oclc:4281195", - "urn:identifier:(WaOLN)nyp2679714" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1910" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Pa.) -- History.", - "Washington County (Pa.) -- Biography.", - "Washington (Pa.) -- History." - ], - "titleDisplay": [ - "20th century history of the city of Washington and Washington County, Pennsylvania and representative citizens, by Joseph F. McFarland." - ], - "uri": "b12698698", - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 27.129774, - "b12698698" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12698698", - "_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:52", - "label": "i-archive/google monograph" - } - ], - "catalogItemType_packed": [ - "catalogItemType:52||i-archive/google monograph" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081918256" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 2", - "urn:barcode:33433081918256" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433081918256", - "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": [ - "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 2" - ], - "shelfMark_sort": "aISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17549712" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12698698", - "_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:52", - "label": "i-archive/google monograph" - } - ], - "catalogItemType_packed": [ - "catalogItemType:52||i-archive/google monograph" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081917514" - ], - "identifier": [ - "urn:shelfmark:ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 1", - "urn:barcode:33433081917514" - ], - "identifierV2": [ - { - "value": "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433081917514", - "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": [ - "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 1" - ], - "shelfMark_sort": "aISD (Washington Co.) (McFarland, J. F. 20th century history of the city of Washington and Washington Co., Pa.) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16194151" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12712872", - "_score": 26.989, - "_source": { - "extent": [ - "96 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Ill.)", - "Washington County (Ill.) -- History", - "Washington County (Ill.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Brink, McDonough" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "title": [ - "History of Washington County, Illinois." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "idOclc": [ - "1295452" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)" - }, - { - "type": "nypl:Bnumber", - "value": "12712872" - }, - { - "type": "nypl:Oclc", - "value": "1295452" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2693821" - } - ], - "updatedAt": 1711179709755, - "publicationStatement": [ - "Philadelphia, Brink, McDonough, 1879. [n. p. 197-?]" - ], - "identifier": [ - "urn:shelfmark:IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)", - "urn:bnum:12712872", - "urn:oclc:1295452", - "urn:identifier:(WaOLN)nyp2693821" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Ill.) -- History.", - "Washington County (Ill.) -- Biography." - ], - "titleDisplay": [ - "History of Washington County, Illinois. With illus. descrptive of its scenery and biographical sketches of some of its prominent men and pioneers." - ], - "uri": "b12712872", - "placeOfPublication": [ - "Philadelphia, [n. p." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - 26.989, - "b12712872" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12712872", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433100843105" - ], - "identifier": [ - "urn:shelfmark:IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)", - "urn:barcode:33433100843105" - ], - "identifierV2": [ - { - "value": "IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)", - "type": "bf:ShelfMark" - }, - { - "value": "33433100843105", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XF" - ], - "physicalLocation": [ - "IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)" - ], - "shelfMark_sort": "aIVF+ (Washington Co.) (Brink, McDonough and Company, Philadelphia. History of Washington County, Illinois)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16205503" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12690985", - "_score": 26.980923, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "xiv, 1344 p. plates, ports., map." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (R.I.)", - "Washington County (R.I.) -- History", - "Washington County (R.I.) -- Biography", - "Kent County (R.I.)", - "Kent County (R.I.) -- History", - "Kent County (R.I.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. W. Preston & Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1889 - ], - "title": [ - "History of Washington and Kent counties, Rhode Island, including their early settlement and progress to the present time; a description of their historic and interesting localities; sketches of their towns and villages; portraits of some of their prominent men, and biographies of many of their representative citizens." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1889" - ], - "creatorLiteral": [ - "Cole, J. R." - ], - "idLccn": [ - "09021918" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1889 - ], - "idOclc": [ - "2724105" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties)" - }, - { - "type": "nypl:Bnumber", - "value": "12690985" - }, - { - "type": "nypl:Oclc", - "value": "2724105" - }, - { - "type": "bf:Lccn", - "value": "09021918" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2672036" - } - ], - "updatedAt": 1711179681418, - "publicationStatement": [ - "New York, W. W. Preston & Co., 1889." - ], - "identifier": [ - "urn:shelfmark:IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties)", - "urn:bnum:12690985", - "urn:oclc:2724105", - "urn:lccn:09021918", - "urn:identifier:(WaOLN)nyp2672036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1889" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (R.I.) -- History.", - "Washington County (R.I.) -- Biography.", - "Kent County (R.I.) -- History.", - "Kent County (R.I.) -- Biography." - ], - "titleDisplay": [ - "History of Washington and Kent counties, Rhode Island, including their early settlement and progress to the present time; a description of their historic and interesting localities; sketches of their towns and villages; portraits of some of their prominent men, and biographies of many of their representative citizens. By J. R. Cole." - ], - "uri": "b12690985", - "lccClassification": [ - "F87.W3 C6" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 26.980923, - "b12690985" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12690985", - "_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" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433080456274" - ], - "identifier": [ - "urn:shelfmark:IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 2", - "urn:barcode:33433080456274" - ], - "identifierV2": [ - { - "value": "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433080456274", - "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": [ - "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 2" - ], - "shelfMark_sort": "aIQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i17549267" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12690985", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433080456282" - ], - "identifier": [ - "urn:shelfmark:IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 1", - "urn:barcode:33433080456282" - ], - "identifierV2": [ - { - "value": "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433080456282", - "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": [ - "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 1" - ], - "shelfMark_sort": "aIQK (Washington Co., R.I.) (Cole, J. R. History of Washington and Kent Counties) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16190157" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708144", - "_score": 26.768822, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "6 p. ℓ., 372 p. illus., ports., map." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dixon County (Neb.)", - "Dixon County (Neb.) -- History", - "Dixon County (Neb.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Press of the Daily News" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1896 - ], - "title": [ - "History of Dixon County, Nebraska. Its pioneers, settlement, growth and development, and its present condition--its villages, townships, enterprises and leading citizens, together with portraits and biographical sketches of some of its prominent men, incidents of pioneer life, etc." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1896" - ], - "creatorLiteral": [ - "Huse, William." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1896 - ], - "idOclc": [ - "11628381" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708144" - }, - { - "type": "nypl:Oclc", - "value": "11628381" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689103" - } - ], - "updatedAt": 1711525751437, - "publicationStatement": [ - "Norfolk [Neb.], Press of the Daily News, 1896." - ], - "identifier": [ - "urn:shelfmark:IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)", - "urn:bnum:12708144", - "urn:oclc:11628381", - "urn:identifier:(WaOLN)nyp2689103" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1896" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dixon County (Neb.) -- History.", - "Dixon County (Neb.) -- Biography." - ], - "titleDisplay": [ - "History of Dixon County, Nebraska. Its pioneers, settlement, growth and development, and its present condition--its villages, townships, enterprises and leading citizens, together with portraits and biographical sketches of some of its prominent men, incidents of pioneer life, etc. By William Huse." - ], - "uri": "b12708144", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081824892" - } - ], - "placeOfPublication": [ - "Norfolk [Neb.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 26.768822, - "b12708144" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708144", - "_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" - ], - "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": [ - "33433081824892" - ], - "identifier": [ - "urn:shelfmark:IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)", - "urn:barcode:33433081824892" - ], - "identifierV2": [ - { - "value": "IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081824892", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)" - ], - "shelfMark_sort": "aIWD (Dixon county) (Huse, W. History of Dixon County, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201552" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12465655", - "_score": 26.72801, - "_source": { - "extent": [ - "282 p., 1" - ], - "note": [ - { - "noteType": "Note", - "label": "Copyright date, 1933, changed in manuscript to 1932.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "\"Note bibliographique\": p. [277]-279.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington, George, 1732-1799" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dunod" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1933 - ], - "title": [ - "Washington." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Washington) (Roz, F. Washington)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1933" - ], - "creatorLiteral": [ - "Roz, Firmin, 1866-1957." - ], - "idLccn": [ - "33004171" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Collection \"Les constructeurs\"" - ], - "dateStartYear": [ - 1933 - ], - "idOclc": [ - "6721015" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Washington) (Roz, F. Washington)" - }, - { - "type": "nypl:Bnumber", - "value": "12465655" - }, - { - "type": "nypl:Oclc", - "value": "6721015" - }, - { - "type": "bf:Lccn", - "value": "33004171" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2449485" - } - ], - "updatedAt": 1711407135720, - "publicationStatement": [ - "Paris, Dunod [c1933]" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Roz, F. Washington)", - "urn:bnum:12465655", - "urn:oclc:6721015", - "urn:lccn:33004171", - "urn:identifier:(WaOLN)nyp2449485" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1933" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington, George, 1732-1799." - ], - "titleDisplay": [ - "Washington." - ], - "uri": "b12465655", - "lccClassification": [ - "E312 .R68" - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 26.72801, - "b12465655" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12465655", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433103696807" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Roz, F. Washington)", - "urn:barcode:33433103696807" - ], - "identifierV2": [ - { - "value": "AN (Washington) (Roz, F. Washington)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103696807", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Washington) (Roz, F. Washington)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Washington) (Roz, F. Washington)" - ], - "shelfMark_sort": "aAN (Washington) (Roz, F. Washington)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16045476" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708986", - "_score": 26.56689, - "_source": { - "extent": [ - "1417 p. : illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Richardson County (Neb.)", - "Richardson County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bowen" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1917 - ], - "title": [ - "History of Richardson County, Nebraska : its people, industries and institutions" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1917" - ], - "creatorLiteral": [ - "Edwards, Lewis Clifford." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1917 - ], - "idOclc": [ - "11583206" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708986" - }, - { - "type": "nypl:Oclc", - "value": "11583206" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689945" - } - ], - "updatedAt": 1711179793006, - "publicationStatement": [ - "Indianapolis, Ind. : Bowen, 1917." - ], - "identifier": [ - "urn:shelfmark:IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)", - "urn:bnum:12708986", - "urn:oclc:11583206", - "urn:identifier:(WaOLN)nyp2689945" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1917" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Richardson County (Neb.) -- History." - ], - "titleDisplay": [ - "History of Richardson County, Nebraska : its people, industries and institutions / With biographical sketches of representative citizens and genealogical records...." - ], - "uri": "b12708986", - "placeOfPublication": [ - "Indianapolis, Ind." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 26.56689, - "b12708986" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708986", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433093128290" - ], - "identifier": [ - "urn:shelfmark:IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)", - "urn:barcode:33433093128290" - ], - "identifierV2": [ - { - "value": "IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433093128290", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)" - ], - "shelfMark_sort": "aIWD (Richardson Co.) (Edwards, L. C. History of Richardson County, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16202352" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12707981", - "_score": 26.501204, - "_source": { - "extent": [ - "173 p. illus., ports." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cherry County (Neb.)", - "Cherry County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1945 - ], - "title": [ - "A history of Cherry County, Nebraska; the story of its organization, development and people." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1945" - ], - "creatorLiteral": [ - "Reece, Charles S." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1945 - ], - "idOclc": [ - "5214020" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12707981" - }, - { - "type": "nypl:Oclc", - "value": "5214020" - } - ], - "updatedAt": 1710985071923, - "publicationStatement": [ - "[n.p.] 1945." - ], - "identifier": [ - "urn:shelfmark:IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)", - "urn:bnum:12707981", - "urn:oclc:5214020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1945" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cherry County (Neb.) -- History." - ], - "titleDisplay": [ - "A history of Cherry County, Nebraska; the story of its organization, development and people." - ], - "uri": "b12707981", - "placeOfPublication": [ - "[n.p.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 26.501204, - "b12707981" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12707981", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099462768" - ], - "identifier": [ - "urn:shelfmark:IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)", - "urn:barcode:33433099462768" - ], - "identifierV2": [ - { - "value": "IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099462768", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Cherry Co.) (Reece, C. S. History of Cherry county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201398" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708083", - "_score": 26.501204, - "_source": { - "extent": [ - "1173 p. : ill., port." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Custer County (Neb.)", - "Custer County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1919 - ], - "title": [ - "History of Custer county, Nebraska : a narrative of the past, with special emphasis upon the pioneer period of the country's history, its social, commercial, educational, religious and civic development from the early days to the present time" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1919" - ], - "creatorLiteral": [ - "Gaston, William Levi, 1865-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Humphrey, A. R." - ], - "dateStartYear": [ - 1919 - ], - "idOclc": [ - "12989325" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708083" - }, - { - "type": "nypl:Oclc", - "value": "12989325" - } - ], - "updatedAt": 1711179308431, - "publicationStatement": [ - "Lincoln, Neb. : Western Publishing and Engraving Co., 1919." - ], - "identifier": [ - "urn:shelfmark:IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)", - "urn:bnum:12708083", - "urn:oclc:12989325" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1919" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Custer County (Neb.) -- History." - ], - "titleDisplay": [ - "History of Custer county, Nebraska : a narrative of the past, with special emphasis upon the pioneer period of the country's history, its social, commercial, educational, religious and civic development from the early days to the present time / by W. L. Gaston and A. R. Humphrey." - ], - "uri": "b12708083", - "placeOfPublication": [ - "Lincoln, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 26.501204, - "b12708083" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708083", - "_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" - ], - "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": [ - "33433081824900" - ], - "identifier": [ - "urn:shelfmark:IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)", - "urn:barcode:33433081824900" - ], - "identifierV2": [ - { - "value": "IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081824900", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Custer Co.) (Gaston, W. L. History of Custer county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201496" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12706816", - "_score": 26.19181, - "_source": { - "extent": [ - "xi, 937 p. : ill., ports. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Lawrence County (Ind.)", - "Lawrence County (Ind.) -- History", - "Lawrence County (Ind.) -- Biography", - "Orange County (Ind.)", - "Orange County (Ind.) -- History", - "Orange County (Ind.) -- Biography", - "Washington County (Ind.)", - "Washington County (Ind.) -- History", - "Washington County (Ind.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Goodspeed Bros. & Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1884 - ], - "title": [ - "History of Lawrence, Orange, and Washington counties, Indiana : from the earliest time to the present : together with interesting biographical sketches, reminiscences, notes, etc." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1884" - ], - "idLccn": [ - "89113790" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Goodspeed Brothers (Chicago)." - ], - "dateStartYear": [ - 1884 - ], - "idOclc": [ - "12597872" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)" - }, - { - "type": "nypl:Bnumber", - "value": "12706816" - }, - { - "type": "nypl:Oclc", - "value": "12597872" - }, - { - "type": "bf:Lccn", - "value": "89113790" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2687777" - }, - { - "type": "bf:Identifier", - "value": "Y 3.N 88:25/4294" - }, - { - "type": "bf:Identifier", - "value": "1051-H-11 (microfiche)" - } - ], - "updatedAt": 1711179779792, - "publicationStatement": [ - "Chicago : Goodspeed Bros. & Co., 1884." - ], - "identifier": [ - "urn:shelfmark:IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)", - "urn:bnum:12706816", - "urn:oclc:12597872", - "urn:lccn:89113790", - "urn:identifier:(WaOLN)nyp2687777", - "urn:identifier:Y 3.N 88:25/4294", - "urn:identifier:1051-H-11 (microfiche)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1884" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lawrence County (Ind.) -- History.", - "Lawrence County (Ind.) -- Biography.", - "Orange County (Ind.) -- History.", - "Orange County (Ind.) -- Biography.", - "Washington County (Ind.) -- History.", - "Washington County (Ind.) -- Biography." - ], - "titleDisplay": [ - "History of Lawrence, Orange, and Washington counties, Indiana : from the earliest time to the present : together with interesting biographical sketches, reminiscences, notes, etc." - ], - "uri": "b12706816", - "lccClassification": [ - "F532.L4 H57 1884" - ], - "placeOfPublication": [ - "Chicago" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 26.19181, - "b12706816" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12706816", - "_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" - ], - "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": [ - "33433081819892" - ], - "identifier": [ - "urn:shelfmark:IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)", - "urn:barcode:33433081819892" - ], - "identifierV2": [ - { - "value": "IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081819892", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)" - ], - "shelfMark_sort": "aIVD (Lawrence Co.) (History of Lawrence, Orange, and Washington counties)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16200298" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13671514", - "_score": 26.149496, - "_source": { - "extent": [ - "cover-title, 2 leaves., 14, 14a, 15-120 numb. leaves, 21 leaves." - ], - "note": [ - { - "noteType": "Note", - "label": "Mimeographed.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Cover-title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Reproduced from typewritten copy; cover printed.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"The first of a series of works on the records of Washington County.\"--Pref.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Mo.)", - "Washington County (Mo.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1938 - ], - "title": [ - "Marriage records of Washington county, Missouri, 1814-1860" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1938" - ], - "creatorLiteral": [ - "Bernard, Eunice." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1938 - ], - "idOclc": [ - "10802083" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)" - }, - { - "type": "nypl:Bnumber", - "value": "13671514" - }, - { - "type": "nypl:Oclc", - "value": "10802083" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3643018" - } - ], - "updatedAt": 1710989584843, - "publicationStatement": [ - "Potosi, Mo., c1938." - ], - "identifier": [ - "urn:shelfmark:APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)", - "urn:bnum:13671514", - "urn:oclc:10802083", - "urn:identifier:(WaOLN)nyp3643018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1938" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Mo.) -- Genealogy." - ], - "titleDisplay": [ - "Marriage records of Washington county, Missouri, 1814-1860 [by] Eunice Bernard, genealogist (Mrs. Paul)" - ], - "uri": "b13671514", - "placeOfPublication": [ - "Potosi, Mo." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 26.149496, - "b13671514" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13671514", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433085297467" - ], - "identifier": [ - "urn:shelfmark:APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)", - "urn:barcode:33433085297467" - ], - "identifierV2": [ - { - "value": "APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)", - "type": "bf:ShelfMark" - }, - { - "value": "33433085297467", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "APR (Washington Co., Mo.) (Washington County, Mo. Marriage records)" - ], - "shelfMark_sort": "aAPR (Washington Co., Mo.) (Washington County, Mo. Marriage records)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16564727" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19681188", - "_score": 26.14156, - "_source": { - "extent": [ - "4 p. l., 154 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Reproduced from type-written copy.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"First printing, June, 1942.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Ky.)", - "Washington County (Ky.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Hobson Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1942 - ], - "title": [ - "Early times in Washington County, Kentucky" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1942" - ], - "creatorLiteral": [ - "Baylor, Orval W. (Orval Walker), 1894-" - ], - "idLccn": [ - "42024584" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "[The Kentucky sesquicentennial county history series, no. 1]" - ], - "dateStartYear": [ - 1942 - ], - "idOclc": [ - "2591376" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)" - }, - { - "type": "nypl:Bnumber", - "value": "19681188" - }, - { - "type": "nypl:Oclc", - "value": "2591376" - }, - { - "type": "bf:Lccn", - "value": "42024584" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)2591376" - } - ], - "uniformTitle": [ - "Kentucky sesquicentennial county history series ; no. 1." - ], - "updatedAt": 1711540411158, - "publicationStatement": [ - "Cynthiana, Ky. : Hobson Press, [1942]" - ], - "identifier": [ - "urn:shelfmark:ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)", - "urn:bnum:19681188", - "urn:oclc:2591376", - "urn:lccn:42024584", - "urn:identifier:(OCoLC)2591376" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1942" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Ky.) -- History." - ], - "titleDisplay": [ - "Early times in Washington County, Kentucky / by Orval W. Baylor." - ], - "uri": "b19681188", - "lccClassification": [ - "F457.W3 B3" - ], - "placeOfPublication": [ - "Cynthiana, Ky." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 26.14156, - "b19681188" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19681188", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433088454164" - ], - "identifier": [ - "urn:shelfmark:ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)", - "urn:barcode:33433088454164" - ], - "identifierV2": [ - { - "value": "ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)", - "type": "bf:ShelfMark" - }, - { - "value": "33433088454164", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)" - ], - "shelfMark_sort": "aITZ (Washington Co.) (Baylor. Early times in Washington County Kentucky)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29246598" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19720012", - "_score": 26.14156, - "_source": { - "extent": [ - "34 leaves, [7] leaves of plates : ill., ports. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Judges", - "Judges -- Arkansas", - "Judges -- Arkansas -- Biography", - "Lawyers", - "Lawyers -- Arkansas", - "Lawyers -- Arkansas -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Washington County Historical Society" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1961 - ], - "title": [ - "The bench and bar of Washington County, Arkansas, 1828-1961" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1961" - ], - "creatorLiteral": [ - "Williams, Oscar E." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1961 - ], - "idOclc": [ - "22129728" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)" - }, - { - "type": "nypl:Bnumber", - "value": "19720012" - }, - { - "type": "nypl:Oclc", - "value": "22129728" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)22129728" - } - ], - "updatedAt": 1711219969500, - "publicationStatement": [ - "Fayetteville, Ark. : Washington County Historical Society, 1961." - ], - "identifier": [ - "urn:shelfmark:ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)", - "urn:bnum:19720012", - "urn:oclc:22129728", - "urn:identifier:(OCoLC)22129728" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1961" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Judges -- Arkansas -- Biography.", - "Lawyers -- Arkansas -- Biography." - ], - "titleDisplay": [ - "The bench and bar of Washington County, Arkansas, 1828-1961 / by Oscar E. Williams." - ], - "uri": "b19720012", - "placeOfPublication": [ - "Fayetteville, Ark." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "1961." - ] - }, - "sort": [ - 26.14156, - "b19720012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19720012", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433105073294" - ], - "identifier": [ - "urn:shelfmark:ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)", - "urn:barcode:33433105073294" - ], - "identifierV2": [ - { - "value": "ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)", - "type": "bf:ShelfMark" - }, - { - "value": "33433105073294", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)" - ], - "shelfMark_sort": "aITVM (Washington Co.) (Williams, O. Bench and bar of washington County...)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29579897" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11129491", - "_score": 26.065012, - "_source": { - "extent": [ - "22 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Surname index for \"History of Washington Co., MD\" by Williams, pp. 119-121, 567-1328.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Williams, Thomas J. C.", - "Williams, Thomas J. C. -- Indexes", - "Washington County (Md.)", - "Washington County (Md.) -- History", - "Washington County (Md.) -- History -- Indexes", - "Washington County (Md.) -- Biography", - "Washington County (Md.) -- Biography -- Indexes", - "Hagerstown (Md.)", - "Hagerstown (Md.) -- History", - "Hagerstown (Md.) -- History -- Indexes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "B.T. Winter" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1986 - ], - "title": [ - "Surname index to Williams' \"History of Washington Co., MD\" : biographical section, only pp. 119-121, 567-1328" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1986" - ], - "creatorLiteral": [ - "Winter, Bryan T." - ], - "idLccn": [ - "87400235" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Williams, Thomas J. C. (Thomas John Chew)." - ], - "dateStartYear": [ - 1986 - ], - "idOclc": [ - "15858655", - "NYPG87-B80053" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index" - }, - { - "type": "nypl:Bnumber", - "value": "11129491" - }, - { - "type": "nypl:Oclc", - "value": "15858655" - }, - { - "type": "nypl:Oclc", - "value": "NYPG87-B80053" - }, - { - "type": "bf:Lccn", - "value": "87400235" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0314864" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)15858655" - } - ], - "updatedAt": 1711519833125, - "publicationStatement": [ - "San Rafael, CA (145 Meriam Dr., San Rafael 94903) : B.T. Winter, 1986." - ], - "identifier": [ - "urn:shelfmark:ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index", - "urn:bnum:11129491", - "urn:oclc:15858655", - "urn:oclc:NYPG87-B80053", - "urn:lccn:87400235", - "urn:identifier:(WaOLN)nyp0314864", - "urn:identifier:(OCoLC)15858655" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1986" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Williams, Thomas J. C. -- Indexes.", - "Washington County (Md.) -- History -- Indexes.", - "Washington County (Md.) -- Biography -- Indexes.", - "Hagerstown (Md.) -- History -- Indexes." - ], - "titleDisplay": [ - "Surname index to Williams' \"History of Washington Co., MD\" : biographical section, only pp. 119-121, 567-1328 / compiled by Bryan T. Winter." - ], - "uri": "b11129491", - "lccClassification": [ - "F187.W3 W738 1986" - ], - "placeOfPublication": [ - "San Rafael, CA (145 Meriam Dr., San Rafael 94903)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Surname index for History of Washington County, Maryland, by Williams." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 26.065012, - "b11129491" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11129491", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433097940310" - ], - "identifier": [ - "urn:shelfmark:ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index", - "urn:barcode:33433097940310" - ], - "identifierV2": [ - { - "value": "ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index", - "type": "bf:ShelfMark" - }, - { - "value": "33433097940310", - "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": [ - "ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index" - ], - "shelfMark_sort": "aISH (Washington Co.) (Williams, T.J.C. History of Washington Co., Md.) Index", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15862421" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14893756", - "_score": 25.929186, - "_source": { - "extent": [ - "160 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Easton in war\": p. 142-147.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Easton (N.Y.)", - "Easton (N.Y.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1959 - ], - "title": [ - "Some chapters in the history of the town of Easton, N.Y." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1959" - ], - "creatorLiteral": [ - "Washington County (N.Y.) Historical Society." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "History of Washington County, N.Y. / Washington County (N.Y.) Historical Society", - "Washington County (N.Y.) Historical Society. History of Washington County, N.Y." - ], - "contributorLiteral": [ - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1959 - ], - "donor": [ - "Gift of New York Genealogical and Biographical Society." - ], - "idOclc": [ - "11457137" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])" - }, - { - "type": "nypl:Bnumber", - "value": "14893756" - }, - { - "type": "nypl:Oclc", - "value": "11457137" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R200002721" - } - ], - "updatedAt": 1711519900338, - "publicationStatement": [ - "[S.l. s.n.] 1959." - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])", - "urn:bnum:14893756", - "urn:oclc:11457137", - "urn:identifier:(WaOLN)R200002721" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Easton (N.Y.) -- History." - ], - "titleDisplay": [ - "Some chapters in the history of the town of Easton, N.Y." - ], - "uri": "b14893756", - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.929186, - "b14893756" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14893756", - "_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:65", - "label": "book, good condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433083343370" - ], - "identifier": [ - "urn:shelfmark:NYGB N.Y. L EA80", - "urn:barcode:33433083343370" - ], - "identifierV2": [ - { - "value": "NYGB N.Y. L EA80", - "type": "bf:ShelfMark" - }, - { - "value": "33433083343370", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NYGB N.Y. L EA80" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB N.Y. L EA80" - ], - "shelfMark_sort": "aNYGB N.Y. L EA000080", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23229434" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b14893756", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])" - ], - "identifierV2": [ - { - "value": "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])", - "type": "bf:ShelfMark" - } - ], - "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": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])" - ], - "shelfMark_sort": "aIRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. [5])", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17103123" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12699975", - "_score": 25.911907, - "_source": { - "extent": [ - "xii, 17-436 p. incl. front., plates, ports. 2 pℓ., port." - ], - "note": [ - { - "noteType": "Note", - "label": "Imperfect: 2 port. (p. 237-238 and 299-300) wanting.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Illustrated.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (N.Y.)", - "Queensbury (N.Y.)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Gresham publishing company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1894 - ], - "title": [ - "History and biography of Washington county and the town of Queensbury, New York" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1894" - ], - "creatorLiteral": [ - "Gresham Publishing Company." - ], - "idLccn": [ - "08032957" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1894 - ], - "idOclc": [ - "2556811" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)" - }, - { - "type": "nypl:Bnumber", - "value": "12699975" - }, - { - "type": "nypl:Oclc", - "value": "2556811" - }, - { - "type": "bf:Lccn", - "value": "08032957" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2680980" - } - ], - "updatedAt": 1711179521797, - "publicationStatement": [ - "Chicago, Ill., New York, N.Y. [etc.] Gresham publishing company, 1894." - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)", - "urn:bnum:12699975", - "urn:oclc:2556811", - "urn:lccn:08032957", - "urn:identifier:(WaOLN)nyp2680980" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1894" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (N.Y.)", - "Queensbury (N.Y.)" - ], - "titleDisplay": [ - "History and biography of Washington county and the town of Queensbury, New York, with historical notes on the various towns. Arranged and edited by the Gresham publishing company. Illustrated." - ], - "uri": "b12699975", - "lccClassification": [ - "F127.W3 G8" - ], - "placeOfPublication": [ - "Chicago, Ill., New York, N.Y. [etc.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 25.911907, - "b12699975" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12699975", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433111095463" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)", - "urn:barcode:33433111095463" - ], - "identifierV2": [ - { - "value": "IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)", - "type": "bf:ShelfMark" - }, - { - "value": "33433111095463", - "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": [ - "IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)" - ], - "shelfMark_sort": "aIRM (Washington County) (Gresham, John M., & company. History and biography of Washington County)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16195076" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12701623", - "_score": 25.911907, - "_source": { - "extent": [ - "2 v. fronts., plates, ports." - ], - "note": [ - { - "noteType": "Note", - "label": "Paged continuously; v. 1: 602 p.; v. 2: 1 p ℓ., [611]-1347 p.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Md.)", - "Washington County (Md.) -- History", - "Washington County (Md.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J.M. Runk & L.R. Titsworth;" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1906 - ], - "title": [ - "A history of Washington County, Maryland, from the earliest settlements to the present time, including a history of Hagerstown" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1906" - ], - "creatorLiteral": [ - "Williams, Thomas J. C. (Thomas John Chew)" - ], - "idLccn": [ - "06038536" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1906 - ], - "idOclc": [ - "10494542" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland)" - }, - { - "type": "nypl:Bnumber", - "value": "12701623" - }, - { - "type": "nypl:Oclc", - "value": "10494542" - }, - { - "type": "bf:Lccn", - "value": "06038536" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2682629" - } - ], - "updatedAt": 1711138944716, - "publicationStatement": [ - "[Chambersburg, Pa.] J.M. Runk & L.R. Titsworth; [Hagerstown, printed] 1906." - ], - "identifier": [ - "urn:shelfmark:ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland)", - "urn:bnum:12701623", - "urn:oclc:10494542", - "urn:lccn:06038536", - "urn:identifier:(WaOLN)nyp2682629" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1906" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Md.) -- History.", - "Washington County (Md.) -- Biography." - ], - "titleDisplay": [ - "A history of Washington County, Maryland, from the earliest settlements to the present time, including a history of Hagerstown, by Thomas J.C. Williams. To this is added a biographical record of representative families prepared from data obtained from original sources of information ..." - ], - "uri": "b12701623", - "lccClassification": [ - "F187.W3 W7" - ], - "placeOfPublication": [ - "[Chambersburg, Pa.] [Hagerstown, printed]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 25.911907, - "b12701623" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12701623", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433097940161" - ], - "identifier": [ - "urn:shelfmark:ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 2", - "urn:barcode:33433097940161" - ], - "identifierV2": [ - { - "value": "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433097940161", - "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": [ - "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 2" - ], - "shelfMark_sort": "aISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i32115393" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12701623", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433100808082" - ], - "identifier": [ - "urn:shelfmark:ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 1", - "urn:barcode:33433100808082" - ], - "identifierV2": [ - { - "value": "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433100808082", - "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": [ - "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 1" - ], - "shelfMark_sort": "aISH (Washington county) (Williams, T. J. C. History of Washington County, Maryland) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16196418" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14893752", - "_score": 25.911907, - "_source": { - "extent": [ - "87 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Land grants", - "Land grants -- New York (State)", - "Land grants -- New York (State) -- Argyle", - "Argyle (N.Y.)", - "Argyle (N.Y.) -- History", - "Argyle (N.Y.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Washington County Historical Society" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1956 - ], - "title": [ - "A history of the Argyle Patent." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1956" - ], - "creatorLiteral": [ - "Gill, Islay V. H." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "History of Washington County, N.Y. / Washington County Historical Society. no. 4", - "Washington County Historical Society. History of Washington County, N.Y. ; no 4." - ], - "dateStartYear": [ - 1956 - ], - "idOclc": [ - "11057747" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)" - }, - { - "type": "nypl:Bnumber", - "value": "14893752" - }, - { - "type": "nypl:Oclc", - "value": "11057747" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R200002717" - } - ], - "updatedAt": 1713461281492, - "publicationStatement": [ - "[S.l.] Washington County Historical Society, 1956." - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)", - "urn:bnum:14893752", - "urn:oclc:11057747", - "urn:identifier:(WaOLN)R200002717" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1956" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Land grants -- New York (State) -- Argyle.", - "Argyle (N.Y.) -- History.", - "Argyle (N.Y.) -- Genealogy." - ], - "titleDisplay": [ - "A history of the Argyle Patent." - ], - "uri": "b14893752", - "placeOfPublication": [ - "[S.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.911907, - "b14893752" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14893752", - "_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:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433093154825" - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)", - "urn:barcode:33433093154825" - ], - "identifierV2": [ - { - "value": "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)", - "type": "bf:ShelfMark" - }, - { - "value": "33433093154825", - "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": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 4)" - ], - "shelfMark_sort": "aIRM (Washington County (N.Y.) Historical Society. History of Washington County, N.Y. no. 000004)", - "status": [ - { - "id": "status:m", - "label": "Missing" - } - ], - "status_packed": [ - "status:m||Missing" - ], - "type": [ - "bf:Item" - ], - "uri": "i17103122" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12714415", - "_score": 25.87598, - "_source": { - "extent": [ - "xv, 1011 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 987.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Platte County (Neb.)", - "Platte County (Neb.) -- History", - "Platte County (Neb.) -- Biography", - "Platte County (Neb.) -- Genealogy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Murray & Gee" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "The history of Platte County, Nebraska" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "creatorLiteral": [ - "Curry, Margaret." - ], - "idLccn": [ - "86192794" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "3140960" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12714415" - }, - { - "type": "nypl:Oclc", - "value": "3140960" - }, - { - "type": "bf:Lccn", - "value": "86192794" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2695344" - } - ], - "updatedAt": 1711417666639, - "publicationStatement": [ - "Culver City, Calif. : Murray & Gee, c1950." - ], - "identifier": [ - "urn:shelfmark:IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)", - "urn:bnum:12714415", - "urn:oclc:3140960", - "urn:lccn:86192794", - "urn:identifier:(WaOLN)nyp2695344" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Platte County (Neb.) -- History.", - "Platte County (Neb.) -- Biography.", - "Platte County (Neb.) -- Genealogy." - ], - "titleDisplay": [ - "The history of Platte County, Nebraska / by Margaret Curry." - ], - "uri": "b12714415", - "lccClassification": [ - "F672.P58 C87 1950" - ], - "placeOfPublication": [ - "Culver City, Calif." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - 25.87598, - "b12714415" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12714415", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433115101077" - ], - "identifier": [ - "urn:shelfmark:IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)", - "urn:barcode:33433115101077" - ], - "identifierV2": [ - { - "value": "IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433115101077", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XF" - ], - "physicalLocation": [ - "IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD+ (Platte) (Curry, M. History of Platte county, Nebraska)" - ], - "shelfMark_sort": "aIWD+ (Platte) (Curry, M. History of Platte county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16206410" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12687161", - "_score": 25.72874, - "_source": { - "extent": [ - "x, 696 p., [32] leaves of plates : ill., ports.;" - ], - "note": [ - { - "noteType": "Note", - "label": "The committee consisted of G. N. Gage, F. P. Newman and others.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "New York Genealogical and Biographical Society;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington (N.H.)", - "Washington (N.H.) -- Genealogy", - "Washington (N.H.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed by the Claremont manufacturing co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 3 - ], - "createdYear": [ - 1886 - ], - "title": [ - "History of Washington, New Hampshire, from the first settlement to the present time. 1768-1886." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IQD (Washington) (Washington N.H. History of Washington, New Hampshire)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1886" - ], - "creatorLiteral": [ - "Washington (N.H.)" - ], - "idLccn": [ - "01008077" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gage, G. N. (George N.), 1851-", - "New York Genealogical and Biographical Society Collection." - ], - "dateStartYear": [ - 1886 - ], - "donor": [ - "Gift of New York Genealogical and Biographical Society." - ], - "idOclc": [ - "13630146" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IQD (Washington) (Washington N.H. History of Washington, New Hampshire)" - }, - { - "type": "nypl:Bnumber", - "value": "12687161" - }, - { - "type": "nypl:Oclc", - "value": "13630146" - }, - { - "type": "bf:Lccn", - "value": "01008077" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2668240" - } - ], - "updatedAt": 1711179681418, - "publicationStatement": [ - "Claremont, N.H., Printed by the Claremont manufacturing co., 1886." - ], - "identifier": [ - "urn:shelfmark:IQD (Washington) (Washington N.H. History of Washington, New Hampshire)", - "urn:bnum:12687161", - "urn:oclc:13630146", - "urn:lccn:01008077", - "urn:identifier:(WaOLN)nyp2668240" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1886" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington (N.H.) -- Genealogy.", - "Washington (N.H.) -- History." - ], - "titleDisplay": [ - "History of Washington, New Hampshire, from the first settlement to the present time. 1768-1886. Comp. by a committee chosen by the town." - ], - "uri": "b12687161", - "lccClassification": [ - "F44.W3 W3" - ], - "placeOfPublication": [ - "Claremont, N.H." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 25.72874, - "b12687161" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 3, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12687161", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 2" - ], - "enumerationChronology_sort": [ - " 2-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmg2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" - ], - "idBarcode": [ - "33433086427063" - ], - "identifier": [ - "urn:shelfmark:NYGB N.H. L W276 v. 2", - "urn:barcode:33433086427063" - ], - "identifierV2": [ - { - "value": "NYGB N.H. L W276 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433086427063", - "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": [ - "NYGB N.H. L W276" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB N.H. L W276 v. 2" - ], - "shelfMark_sort": "aNYGB N.H. L W276 v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i24157868" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12687161", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmg2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" - ], - "idBarcode": [ - "33433086427071" - ], - "identifier": [ - "urn:shelfmark:NYGB N.H. L W276 v. 1", - "urn:barcode:33433086427071" - ], - "identifierV2": [ - { - "value": "NYGB N.H. L W276 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433086427071", - "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": [ - "NYGB N.H. L W276" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB N.H. L W276 v. 1" - ], - "shelfMark_sort": "aNYGB N.H. L W276 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i24157866" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12687161", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "identifier": [ - "urn:shelfmark:IQD (Washington) (Washington N.H. History of Washington, New Hampshire)" - ], - "identifierV2": [ - { - "value": "IQD (Washington) (Washington N.H. History of Washington, New Hampshire)", - "type": "bf:ShelfMark" - } - ], - "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": [ - "IQD (Washington) (Washington N.H. History of Washington, New Hampshire)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IQD (Washington) (Washington N.H. History of Washington, New Hampshire)" - ], - "shelfMark_sort": "aIQD (Washington) (Washington N.H. History of Washington, New Hampshire)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16187368" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12712847", - "_score": 25.72874, - "_source": { - "extent": [ - "1 p.l., 481 p. front., illus. (incl. ports.) fold. map." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington (D.C.)", - "Washington (D.C.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Washington Post" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1903 - ], - "title": [ - "A history of the city of Washington, its men and institutions" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1903" - ], - "creatorLiteral": [ - "Washington Post." - ], - "idLccn": [ - "03027504" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Slauson, Allan Bedient, 1860-" - ], - "dateStartYear": [ - 1903 - ], - "idOclc": [ - "2731032" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)" - }, - { - "type": "nypl:Bnumber", - "value": "12712847" - }, - { - "type": "nypl:Oclc", - "value": "2731032" - }, - { - "type": "bf:Lccn", - "value": "03027504" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2693796" - } - ], - "updatedAt": 1711220201989, - "publicationStatement": [ - "Washington, D.C., The Washington Post, 1903." - ], - "identifier": [ - "urn:shelfmark:ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)", - "urn:bnum:12712847", - "urn:oclc:2731032", - "urn:lccn:03027504", - "urn:identifier:(WaOLN)nyp2693796" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1903" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington (D.C.) -- History." - ], - "titleDisplay": [ - "A history of the city of Washington, its men and institutions, by the Washington post; ed. by Allan B. Slauson ..." - ], - "uri": "b12712847", - "lccClassification": [ - "F194 .W31" - ], - "placeOfPublication": [ - "Washington, D.C." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - 25.72874, - "b12712847" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12712847", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433115104972" - ], - "identifier": [ - "urn:shelfmark:ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)", - "urn:barcode:33433115104972" - ], - "identifierV2": [ - { - "value": "ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)", - "type": "bf:ShelfMark" - }, - { - "value": "33433115104972", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XF" - ], - "physicalLocation": [ - "ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)" - ], - "shelfMark_sort": "aISK+ (Washington, D.C.) (Washington Post. History of the city of Washington)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16205478" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12708272", - "_score": 25.285242, - "_source": { - "extent": [ - "3 p., leaf. 5-1100 p., frontispiece, illustrations, portraits." - ], - "note": [ - { - "noteType": "Note", - "label": "Military history of Gage County, p. 310-318.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gage County (Neb.)", - "Gage County (Neb.) -- History", - "Gage County (Neb.) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Western Publishing and Engraving Company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1918 - ], - "title": [ - "History of Gage County, Nebraska; a narrative of the past, with special emphasis upon the pioneer period of the county's history, its social, commercial, educational, religious, and civic development from the early days to the present time" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1918" - ], - "creatorLiteral": [ - "Dobbs, Hugh Jackson, 1849-" - ], - "idLccn": [ - "18020668" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1918 - ], - "idOclc": [ - "11310167" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12708272" - }, - { - "type": "nypl:Oclc", - "value": "11310167" - }, - { - "type": "bf:Lccn", - "value": "18020668" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689231" - } - ], - "updatedAt": 1711525759377, - "publicationStatement": [ - "Lincoln, Neb., Western Publishing and Engraving Company, 1918." - ], - "identifier": [ - "urn:shelfmark:IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)", - "urn:bnum:12708272", - "urn:oclc:11310167", - "urn:lccn:18020668", - "urn:identifier:(WaOLN)nyp2689231" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gage County (Neb.) -- History.", - "Gage County (Neb.) -- Biography." - ], - "titleDisplay": [ - "History of Gage County, Nebraska; a narrative of the past, with special emphasis upon the pioneer period of the county's history, its social, commercial, educational, religious, and civic development from the early days to the present time, by Hugh J. Dobbs." - ], - "uri": "b12708272", - "lccClassification": [ - "F672.G13 D6" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://hdl.handle.net/2027/nyp.33433081785945" - } - ], - "placeOfPublication": [ - "Lincoln, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 25.285242, - "b12708272" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12708272", - "_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" - ], - "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": [ - "33433081785945" - ], - "identifier": [ - "urn:shelfmark:IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)", - "urn:barcode:33433081785945" - ], - "identifierV2": [ - { - "value": "IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081785945", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)" - ], - "shelfMark_sort": "aIWD (Gage County) (Dobbs, H. J. History of Gage County, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201677" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12707988", - "_score": 25.193775, - "_source": { - "extent": [ - "243 p. illus., maps." - ], - "note": [ - { - "noteType": "Note", - "label": "Published also without thesis note under title: Pioneer days in Crete, Nebraska.", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis (Ph. D.)--University of Nebraska, 1932.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 224-236.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Frontier and pioneer life", - "Frontier and pioneer life -- Nebraska", - "Frontier and pioneer life -- Nebraska -- Saline County", - "Crete (Neb.)", - "Crete (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "State Journal Print. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1937 - ], - "title": [ - "History of Crete, Nebraska, 1870-1888" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1937" - ], - "creatorLiteral": [ - "Gregory, Annadora Foss." - ], - "idLccn": [ - "38008932" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "4714423" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12707988" - }, - { - "type": "nypl:Oclc", - "value": "4714423" - }, - { - "type": "bf:Lccn", - "value": "38008932" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2688947" - } - ], - "updatedAt": 1711179297989, - "publicationStatement": [ - "[Lincoln, Neb., State Journal Print. Co., 1937]" - ], - "identifier": [ - "urn:shelfmark:IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)", - "urn:bnum:12707988", - "urn:oclc:4714423", - "urn:lccn:38008932", - "urn:identifier:(WaOLN)nyp2688947" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Frontier and pioneer life -- Nebraska -- Saline County.", - "Crete (Neb.) -- History." - ], - "titleDisplay": [ - "History of Crete, Nebraska, 1870-1888, by Annadora Foss Gregory." - ], - "uri": "b12707988", - "lccClassification": [ - "F674.C8 G6" - ], - "placeOfPublication": [ - "[Lincoln, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.193775, - "b12707988" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12707988", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099462875" - ], - "identifier": [ - "urn:shelfmark:IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)", - "urn:barcode:33433099462875" - ], - "identifierV2": [ - { - "value": "IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099462875", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Crete) (Gregory, A. F. History of Crete, Nebraska)" - ], - "shelfMark_sort": "aIWD (Crete) (Gregory, A. F. History of Crete, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201405" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12470023", - "_score": 25.166742, - "_source": { - "extent": [ - "2 v. ports., pl." - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1859 - ], - "title": [ - "Washington: a biography." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Washington) (Lossing, B. J. Washington)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1859" - ], - "creatorLiteral": [ - "Lossing, Benson J. (Benson John), 1813-1891." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1859 - ], - "idOclc": [ - "34835412" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Washington) (Lossing, B. J. Washington)" - }, - { - "type": "nypl:Bnumber", - "value": "12470023" - }, - { - "type": "nypl:Oclc", - "value": "34835412" - } - ], - "updatedAt": 1711102819758, - "publicationStatement": [ - "New York, 1859." - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Lossing, B. J. Washington)", - "urn:bnum:12470023", - "urn:oclc:34835412" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1859" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Washington: a biography." - ], - "uri": "b12470023", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "nar 4to." - ] - }, - "sort": [ - 25.166742, - "b12470023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12470023", - "_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": [ - "33433103397810" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Lossing, B. J. Washington) v. 2", - "urn:barcode:33433103397810" - ], - "identifierV2": [ - { - "value": "AN (Washington) (Lossing, B. J. Washington) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433103397810", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Washington) (Lossing, B. J. Washington)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Washington) (Lossing, B. J. Washington) v. 2" - ], - "shelfMark_sort": "aAN (Washington) (Lossing, B. J. Washington) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i16048312" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12470023", - "_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": [ - "33433103397802" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Lossing, B. J. Washington) v. 1", - "urn:barcode:33433103397802" - ], - "identifierV2": [ - { - "value": "AN (Washington) (Lossing, B. J. Washington) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433103397802", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Washington) (Lossing, B. J. Washington)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Washington) (Lossing, B. J. Washington) v. 1" - ], - "shelfMark_sort": "aAN (Washington) (Lossing, B. J. Washington) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i29177575" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12469818", - "_score": 25.158829, - "_source": { - "extent": [ - "xvi p., 1 ℓ., 269 p. front. (port.)" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First printing.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "\"Table of books cited\": p. 232-250. \"Manuscript collections cited\": p. 251.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington, George, 1732-1799", - "United States", - "United States -- History", - "United States -- History -- Revolution, 1775-1783" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Macmillan Company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1940 - ], - "title": [ - "Washington and the Revolution, a reappraisal; Gates, Conway, and the Continental Congress" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Washington) (Knollenberg, B. Washington and the Revolution)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1940" - ], - "creatorLiteral": [ - "Knollenberg, Bernhard, 1892-1973." - ], - "idLccn": [ - "40035489" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1940 - ], - "idOclc": [ - "747978" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Washington) (Knollenberg, B. Washington and the Revolution)" - }, - { - "type": "nypl:Bnumber", - "value": "12469818" - }, - { - "type": "nypl:Oclc", - "value": "747978" - }, - { - "type": "bf:Lccn", - "value": "40035489" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2453605" - } - ], - "updatedAt": 1711102816989, - "publicationStatement": [ - "New York, The Macmillan Company, 1940." - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Knollenberg, B. Washington and the Revolution)", - "urn:bnum:12469818", - "urn:oclc:747978", - "urn:lccn:40035489", - "urn:identifier:(WaOLN)nyp2453605" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1940" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington, George, 1732-1799.", - "United States -- History -- Revolution, 1775-1783." - ], - "titleDisplay": [ - "Washington and the Revolution, a reappraisal; Gates, Conway, and the Continental Congress, by Bernhard Knollenberg." - ], - "uri": "b12469818", - "lccClassification": [ - "E312.25 .K64" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 25.158829, - "b12469818" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12469818", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433103396473" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Knollenberg, B. Washington and the Revolution)", - "urn:barcode:33433103396473" - ], - "identifierV2": [ - { - "value": "AN (Washington) (Knollenberg, B. Washington and the Revolution)", - "type": "bf:ShelfMark" - }, - { - "value": "33433103396473", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Washington) (Knollenberg, B. Washington and the Revolution)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Washington) (Knollenberg, B. Washington and the Revolution)" - ], - "shelfMark_sort": "aAN (Washington) (Knollenberg, B. Washington and the Revolution)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10530897" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b12469818", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "idBarcode": [ - "33433081040655" - ], - "identifier": [ - "urn:shelfmark:9-IG (Knollenberg, B. Washington and the Revolution)", - "urn:barcode:33433081040655" - ], - "identifierV2": [ - { - "value": "9-IG (Knollenberg, B. Washington and the Revolution)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081040655", - "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": [ - "9-IG (Knollenberg, B. Washington and the Revolution)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "9-IG (Knollenberg, B. Washington and the Revolution)" - ], - "shelfMark_sort": "a9-IG (Knollenberg, B. Washington and the Revolution)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10530898" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12709028", - "_score": 25.144009, - "_source": { - "extent": [ - "290 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Biographical sketches: p. 230-271.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Seward County (Neb.)", - "Seward County (Neb.) -- History", - "Seward County (Neb.) -- Biography", - "Lancaster County (Neb.)", - "Lancaster County (Neb.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "State journal company, printers" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1888 - ], - "title": [ - "History of Seward county, Nebraska, together with a chapter of reminiscenses of the early settlement of Lancaster county." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1888" - ], - "creatorLiteral": [ - "Cox, William Wallace, 1832-" - ], - "idLccn": [ - "01013515" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1888 - ], - "idOclc": [ - "377181" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12709028" - }, - { - "type": "nypl:Oclc", - "value": "377181" - }, - { - "type": "bf:Lccn", - "value": "01013515" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2689987" - } - ], - "updatedAt": 1711524488220, - "publicationStatement": [ - "Lincoln, Neb., State journal company, printers, 1888." - ], - "identifier": [ - "urn:shelfmark:IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)", - "urn:bnum:12709028", - "urn:oclc:377181", - "urn:lccn:01013515", - "urn:identifier:(WaOLN)nyp2689987" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1888" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Seward County (Neb.) -- History.", - "Seward County (Neb.) -- Biography.", - "Lancaster County (Neb.) -- History." - ], - "titleDisplay": [ - "History of Seward county, Nebraska, together with a chapter of reminiscenses of the early settlement of Lancaster county. By W. W. Cox ..." - ], - "uri": "b12709028", - "lccClassification": [ - "F672.S5 C8" - ], - "electronicResources": [ - { - "label": "Full text available via HathiTrust - Vol. IV", - "url": "http://hdl.handle.net/2027/ucm.5318833117" - } - ], - "placeOfPublication": [ - "Lincoln, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.144009, - "b12709028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12709028", - "_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:42", - "label": "internet archive, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:42||internet archive, book" - ], - "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": [ - "33433080441482" - ], - "identifier": [ - "urn:shelfmark:IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)", - "urn:barcode:33433080441482" - ], - "identifierV2": [ - { - "value": "IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433080441482", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Seward Co., Neb.) (Cox, W. W. History of Seward county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16202391" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15242521", - "_score": 25.10493, - "_source": { - "extent": [ - "v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "no. 1- 1954-" - ], - "subjectLiteral_exploded": [ - "Washington County (N.Y.)", - "Washington County (N.Y.) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Washington County Historical Society." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1954 - ], - "dateEndString": [ - "uuuu" - ], - "title": [ - "History of Washington County, N.Y." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IRM (Washington County (N.Y.) Historical Society. History of Washington county, N.Y.)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1954" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Washington County Historical Society." - ], - "dateStartYear": [ - 1954 - ], - "idOclc": [ - "42336081" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IRM (Washington County (N.Y.) Historical Society. History of Washington county, N.Y.)" - }, - { - "type": "nypl:Bnumber", - "value": "15242521" - }, - { - "type": "nypl:Oclc", - "value": "42336081" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)Z070000077" - } - ], - "dateEndYear": [ - null - ], - "updatedAt": 1711572622168, - "publicationStatement": [ - "[n.p.] Washington County Historical Society." - ], - "identifier": [ - "urn:shelfmark:IRM (Washington County (N.Y.) Historical Society. History of Washington county, N.Y.)", - "urn:bnum:15242521", - "urn:oclc:42336081", - "urn:identifier:(WaOLN)Z070000077" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (N.Y.) -- History." - ], - "titleDisplay": [ - "History of Washington County, N.Y." - ], - "uri": "b15242521", - "placeOfPublication": [ - "[n.p.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ] - }, - "sort": [ - 25.10493, - "b15242521" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12469887", - "_score": 25.102934, - "_source": { - "extent": [ - "108 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington, George, 1732-1799", - "United States", - "United States -- History", - "United States -- History -- Revolution, 1775-1783" - ], - "numItemDatesParsed": [ - 1 - ], - "publisherLiteral": [ - "J. Slater" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1825 - ], - "title": [ - "The Life of Washington and history of the American Revolution : together with Washington's farewell address, Declaration of Independence, Constitution of the United States." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Washington) (Life of Washington and history of the American Revolution)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1825" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Washington, George, 1732-1799.", - "United States. Declaration of Independence.", - "United States. Constitution." - ], - "dateStartYear": [ - 1825 - ], - "idOclc": [ - "10116031" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Washington) (Life of Washington and history of the American Revolution)" - }, - { - "type": "nypl:Bnumber", - "value": "12469887" - }, - { - "type": "nypl:Oclc", - "value": "10116031" - } - ], - "updatedAt": 1711407355478, - "publicationStatement": [ - "New York : J. Slater, [1825?]" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Life of Washington and history of the American Revolution)", - "urn:bnum:12469887", - "urn:oclc:10116031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1825" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington, George, 1732-1799.", - "United States -- History -- Revolution, 1775-1783." - ], - "titleDisplay": [ - "The Life of Washington and history of the American Revolution : together with Washington's farewell address, Declaration of Independence, Constitution of the United States." - ], - "uri": "b12469887", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "15 cm." - ] - }, - "sort": [ - 25.102934, - "b12469887" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12469887", - "_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" - ], - "dateRange": [ - { - "gte": "1825", - "lte": "1825" - } - ], - "enumerationChronology": [ - "1825" - ], - "enumerationChronology_sort": [ - " -1825" - ], - "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": [ - "33433104821057" - ], - "identifier": [ - "urn:shelfmark:AN (Washington) (Life of Washington and history of the American Revolution) 1825", - "urn:barcode:33433104821057" - ], - "identifierV2": [ - { - "value": "AN (Washington) (Life of Washington and history of the American Revolution) 1825", - "type": "bf:ShelfMark" - }, - { - "value": "33433104821057", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Washington) (Life of Washington and history of the American Revolution)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Washington) (Life of Washington and history of the American Revolution) 1825" - ], - "shelfMark_sort": "aAN (Washington) (Life of Washington and history of the American Revolution) 001825", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16048202" - }, - "sort": [ - " -1825" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12707922", - "_score": 25.082718, - "_source": { - "extent": [ - "230, [3] p. illus., port." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Box Butte County (Neb.)", - "Box Butte County (Neb.) -- History", - "Nebraska", - "Nebraska -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Leader Print" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1939 - ], - "title": [ - "History of Box Butte County, Nebraska, from dinosaurs to streamliners, and of its permanent settlements from 1866 to 1938. Its neighboring counties of Dawes, Sioux, Scottsbluff, Morrill and Sheridan and a short history of Nebraska" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1939" - ], - "creatorLiteral": [ - "Phillips, Anna N." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ball, Vilma D." - ], - "dateStartYear": [ - 1939 - ], - "idOclc": [ - "11587554" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12707922" - }, - { - "type": "nypl:Oclc", - "value": "11587554" - } - ], - "updatedAt": 1711179528883, - "publicationStatement": [ - "[Hemingsfors, Neb., Leader Print, 1939]" - ], - "identifier": [ - "urn:shelfmark:IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)", - "urn:bnum:12707922", - "urn:oclc:11587554" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1939" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Box Butte County (Neb.) -- History.", - "Nebraska -- History." - ], - "titleDisplay": [ - "History of Box Butte County, Nebraska, from dinosaurs to streamliners, and of its permanent settlements from 1866 to 1938. Its neighboring counties of Dawes, Sioux, Scottsbluff, Morrill and Sheridan and a short history of Nebraska, by Anna N. Phillips and Vilma D. Ball." - ], - "uri": "b12707922", - "placeOfPublication": [ - "[Hemingsfors, Neb." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.082718, - "b12707922" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12707922", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433099461786" - ], - "identifier": [ - "urn:shelfmark:IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)", - "urn:barcode:33433099461786" - ], - "identifierV2": [ - { - "value": "IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "value": "33433099461786", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "IWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)" - ], - "shelfMark_sort": "aIWD (Box Butte co.) (Phillips, A. N. History of Box Butte county, Nebraska)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16201339" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json b/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json deleted file mode 100644 index d56cbbf3..00000000 --- a/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json +++ /dev/null @@ -1,15390 +0,0 @@ -{ - "body": { - "took": 1115, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 10000, - "relation": "gte" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627363", - "_score": 139.8212, - "_source": { - "extent": [ - "128 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Creative age press, inc." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Cats, cats, & cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Rice, Edward, 1917-" - ], - "idLccn": [ - "agr47000211" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gleason, Jean, 1917-" - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "1303934" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Rice, E. Cats, cats, & cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627363" - }, - { - "type": "nypl:Oclc", - "value": "1303934" - }, - { - "type": "bf:Lccn", - "value": "agr47000211" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600714" - } - ], - "updatedAt": 1711615235963, - "publicationStatement": [ - "New York, Creative age press, inc. [c1947]" - ], - "identifier": [ - "urn:shelfmark:VPS (Rice, E. Cats, cats, & cats)", - "urn:bnum:13627363", - "urn:oclc:1303934", - "urn:lccn:agr47000211", - "urn:identifier:(WaOLN)nyp3600714" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Cats -- Pictorial works." - ], - "titleDisplay": [ - "Cats, cats, & cats, by Edward Rice and Jean Gleason." - ], - "uri": "b13627363", - "lccClassification": [ - "SF447 .R5" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 139.8212, - "b13627363" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627363", - "_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": [ - "33433006598316" - ], - "identifier": [ - "urn:shelfmark:VPS (Rice, E. Cats, cats, & cats)", - "urn:barcode:33433006598316" - ], - "identifierV2": [ - { - "value": "VPS (Rice, E. Cats, cats, & cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598316", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "shelfMark_sort": "aVPS (Rice, E. Cats, cats, & cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754478" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627238", - "_score": 35.229103, - "_source": { - "extent": [ - "xii p., 1 l., 341 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"First printing.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Macmillan company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1937 - ], - "title": [ - "Cats-and cats; great cat stories of our day" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Clarke, F. E. Cats--and cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1937" - ], - "creatorLiteral": [ - "Clarke, Frances E. (Frances Elizabeth)" - ], - "idLccn": [ - "37028660" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1937 - ], - "idOclc": [ - "1560780" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Clarke, F. E. Cats--and cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627238" - }, - { - "type": "nypl:Oclc", - "value": "1560780" - }, - { - "type": "bf:Lccn", - "value": "37028660" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600589" - } - ], - "updatedAt": 1711315697072, - "publicationStatement": [ - "New York, The Macmillan company, 1937." - ], - "identifier": [ - "urn:shelfmark:VPS (Clarke, F. E. Cats--and cats)", - "urn:bnum:13627238", - "urn:oclc:1560780", - "urn:lccn:37028660", - "urn:identifier:(WaOLN)nyp3600589" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats-and cats; great cat stories of our day, compiled by Frances E. Clarke." - ], - "uri": "b13627238", - "lccClassification": [ - "QL795.C2 C73" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 35.229103, - "b13627238" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627238", - "_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": [ - "33433006597698" - ], - "identifier": [ - "urn:shelfmark:VPS (Clarke, F. E. Cats--and cats)", - "urn:barcode:33433006597698" - ], - "identifierV2": [ - { - "value": "VPS (Clarke, F. E. Cats--and cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597698", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Clarke, F. E. Cats--and cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Clarke, F. E. Cats--and cats)" - ], - "shelfMark_sort": "aVPS (Clarke, F. E. Cats--and cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754346" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627356", - "_score": 30.133917, - "_source": { - "extent": [ - "142 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Pittman Pub. Corp." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1949 - ], - "title": [ - "Cats; care, training, feeding, breeding, exhibiting;" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Norton, M. A. Cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1949" - ], - "creatorLiteral": [ - "Norton, Marguerite Ann, 1896-" - ], - "idLccn": [ - "agr49000414 /*" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1949 - ], - "idOclc": [ - "1456747" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Norton, M. A. Cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627356" - }, - { - "type": "nypl:Oclc", - "value": "1456747" - }, - { - "type": "bf:Lccn", - "value": "agr49000414 /*" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600707" - } - ], - "updatedAt": 1711423733972, - "publicationStatement": [ - "New York, Pittman Pub. Corp. [1949]" - ], - "identifier": [ - "urn:shelfmark:VPS (Norton, M. A. Cats)", - "urn:bnum:13627356", - "urn:oclc:1456747", - "urn:lccn:agr49000414 /*", - "urn:identifier:(WaOLN)nyp3600707" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1949" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats; care, training, feeding, breeding, exhibiting; with drawings by Gladys Emerson Cook." - ], - "uri": "b13627356", - "lccClassification": [ - "SF413 .N6" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 30.133917, - "b13627356" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627356", - "_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": [ - "33433006598282" - ], - "identifier": [ - "urn:shelfmark:VPS (Norton, M. A. Cats)", - "urn:barcode:33433006598282" - ], - "identifierV2": [ - { - "value": "VPS (Norton, M. A. Cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598282", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Norton, M. A. Cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Norton, M. A. Cats)" - ], - "shelfMark_sort": "aVPS (Norton, M. A. Cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754471" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624830", - "_score": 28.33236, - "_source": { - "extent": [ - "115 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lippincott" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1904 - ], - "title": [ - "Cats by the way." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Trueblood, S. E. Cats by the way)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1904" - ], - "creatorLiteral": [ - "Trueblood, Sarah E." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1904 - ], - "idOclc": [ - "9089025" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Trueblood, S. E. Cats by the way)" - }, - { - "type": "nypl:Bnumber", - "value": "13624830" - }, - { - "type": "nypl:Oclc", - "value": "9089025" - } - ], - "updatedAt": 1711423698065, - "publicationStatement": [ - "Philadelphia, Lippincott, 1904." - ], - "identifier": [ - "urn:shelfmark:VPS (Trueblood, S. E. Cats by the way)", - "urn:bnum:13624830", - "urn:oclc:9089025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1904" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats by the way." - ], - "uri": "b13624830", - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 28.33236, - "b13624830" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624830", - "_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": [ - "33433006598472" - ], - "identifier": [ - "urn:shelfmark:VPS (Trueblood, S. E. Cats by the way)", - "urn:barcode:33433006598472" - ], - "identifierV2": [ - { - "value": "VPS (Trueblood, S. E. Cats by the way)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598472", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Trueblood, S. E. Cats by the way)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Trueblood, S. E. Cats by the way)" - ], - "shelfMark_sort": "aVPS (Trueblood, S. E. Cats by the way)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752466" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624824", - "_score": 28.190008, - "_source": { - "extent": [ - "xiv, 177, [1] p. front., 1 illus., plates, diagr." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Methuen & co. ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1933 - ], - "title": [ - "Cats: long-haired and short; their breeding, rearing & showing" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Soame, E. B.-H. Cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1933" - ], - "creatorLiteral": [ - "Soame, Evelyn Buckworth-Herne-" - ], - "idLccn": [ - "34028997" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1933 - ], - "idOclc": [ - "3862197" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Soame, E. B.-H. Cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13624824" - }, - { - "type": "nypl:Oclc", - "value": "3862197" - }, - { - "type": "bf:Lccn", - "value": "34028997" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3598353" - } - ], - "updatedAt": 1711423623903, - "publicationStatement": [ - "London, Methuen & co. ltd. [1933]" - ], - "identifier": [ - "urn:shelfmark:VPS (Soame, E. B.-H. Cats)", - "urn:bnum:13624824", - "urn:oclc:3862197", - "urn:lccn:34028997", - "urn:identifier:(WaOLN)nyp3598353" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1933" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Cats -- Pictorial works." - ], - "titleDisplay": [ - "Cats: long-haired and short; their breeding, rearing & showing, by Evelyn Buckworth-Herne-Soame, with 23 illustrations and 2 diagrams." - ], - "uri": "b13624824", - "lccClassification": [ - "SF447 .S65" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 28.190008, - "b13624824" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624824", - "_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": [ - "33433006598423" - ], - "identifier": [ - "urn:shelfmark:VPS (Soame, E. B.-H. Cats)", - "urn:barcode:33433006598423" - ], - "identifierV2": [ - { - "value": "VPS (Soame, E. B.-H. Cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598423", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Soame, E. B.-H. Cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Soame, E. B.-H. Cats)" - ], - "shelfMark_sort": "aVPS (Soame, E. B.-H. Cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752461" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627137", - "_score": 27.56612, - "_source": { - "extent": [ - "119 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats in literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Order of the Great Companions" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1954 - ], - "title": [ - "The cosmic cat and other studies." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Barber, M. Cosmic cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1954" - ], - "creatorLiteral": [ - "Barber, Muriel." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Order of the Great Companions." - ], - "dateStartYear": [ - 1954 - ], - "idOclc": [ - "7707060" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Barber, M. Cosmic cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627137" - }, - { - "type": "nypl:Oclc", - "value": "7707060" - } - ], - "updatedAt": 1710978312281, - "publicationStatement": [ - "Kent [Eng.] The Order of the Great Companions, 1954." - ], - "identifier": [ - "urn:shelfmark:VPS (Barber, M. Cosmic cat)", - "urn:bnum:13627137", - "urn:oclc:7707060" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats in literature." - ], - "titleDisplay": [ - "The cosmic cat and other studies." - ], - "uri": "b13627137", - "placeOfPublication": [ - "Kent [Eng.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 27.56612, - "b13627137" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627137", - "_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": [ - "33433006597557" - ], - "identifier": [ - "urn:shelfmark:VPS (Barber, M. Cosmic cat)", - "urn:barcode:33433006597557" - ], - "identifierV2": [ - { - "value": "VPS (Barber, M. Cosmic cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597557", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Barber, M. Cosmic cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Barber, M. Cosmic cat)" - ], - "shelfMark_sort": "aVPS (Barber, M. Cosmic cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754240" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627251", - "_score": 27.56612, - "_source": { - "extent": [ - "118 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Compañía Argentina de Tabacos" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Williams & Norgate" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Ordinary cats; an account of these animals in relation to ourselves; of some aspects of their natural history, behaviour and sex life; of their physical welfare and rights; and of winning their approval and esteem &c." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Duff, C. Ordinary cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "Duff, Charles." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "4826159" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Duff, C. Ordinary cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627251" - }, - { - "type": "nypl:Oclc", - "value": "4826159" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600602" - } - ], - "updatedAt": 1711655746358, - "publicationStatement": [ - "London, Williams & Norgate [1951]" - ], - "identifier": [ - "urn:shelfmark:VPS (Duff, C. Ordinary cats)", - "urn:bnum:13627251", - "urn:oclc:4826159", - "urn:identifier:(WaOLN)nyp3600602" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Compañía Argentina de Tabacos." - ], - "titleDisplay": [ - "Ordinary cats; an account of these animals in relation to ourselves; of some aspects of their natural history, behaviour and sex life; of their physical welfare and rights; and of winning their approval and esteem &c." - ], - "uri": "b13627251", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 27.56612, - "b13627251" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627251", - "_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": [ - "33433006597797" - ], - "identifier": [ - "urn:shelfmark:VPS (Duff, C. Ordinary cats)", - "urn:barcode:33433006597797" - ], - "identifierV2": [ - { - "value": "VPS (Duff, C. Ordinary cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597797", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Duff, C. Ordinary cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Duff, C. Ordinary cats)" - ], - "shelfMark_sort": "aVPS (Duff, C. Ordinary cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754359" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627328", - "_score": 27.56612, - "_source": { - "extent": [ - "ix p., 1 ℓ., 172 p. front., plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dodd, Mead & company" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1931 - ], - "title": [ - "Cat's company" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Joseph, M. Cat's company)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1931" - ], - "creatorLiteral": [ - "Joseph, Michael, 1897-1958." - ], - "idLccn": [ - "31015404" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Dolbin, Benedikt F." - ], - "dateStartYear": [ - 1931 - ], - "idOclc": [ - "3288430" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Joseph, M. Cat's company)" - }, - { - "type": "nypl:Bnumber", - "value": "13627328" - }, - { - "type": "nypl:Oclc", - "value": "3288430" - }, - { - "type": "bf:Lccn", - "value": "31015404" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600679" - } - ], - "updatedAt": 1711412296496, - "publicationStatement": [ - "New York, Dodd, Mead & company, 1931." - ], - "identifier": [ - "urn:shelfmark:VPS (Joseph, M. Cat's company)", - "urn:bnum:13627328", - "urn:oclc:3288430", - "urn:lccn:31015404", - "urn:identifier:(WaOLN)nyp3600679" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1931" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cat's company, by Michael Joseph, with illustrations by B. F. Dolbin." - ], - "uri": "b13627328", - "lccClassification": [ - "QL795.C2 J6 1931" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 27.56612, - "b13627328" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627328", - "_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": [ - "33433006598100" - ], - "identifier": [ - "urn:shelfmark:VPS (Joseph, M. Cat's company)", - "urn:barcode:33433006598100" - ], - "identifierV2": [ - { - "value": "VPS (Joseph, M. Cat's company)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598100", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Joseph, M. Cat's company)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Joseph, M. Cat's company)" - ], - "shelfMark_sort": "aVPS (Joseph, M. Cat's company)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754442" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627337", - "_score": 27.56612, - "_source": { - "extent": [ - "96 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Siamese cat" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Williams & Norgate" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "Siamese cats." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Lauder, P. Siamese cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "creatorLiteral": [ - "Lauder, Phyllis." - ], - "idLccn": [ - "51001748" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "3288491" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Lauder, P. Siamese cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627337" - }, - { - "type": "nypl:Oclc", - "value": "3288491" - }, - { - "type": "bf:Lccn", - "value": "51001748" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600688" - } - ], - "updatedAt": 1710972815435, - "publicationStatement": [ - "London, Williams & Norgate [1950]" - ], - "identifier": [ - "urn:shelfmark:VPS (Lauder, P. Siamese cats)", - "urn:bnum:13627337", - "urn:oclc:3288491", - "urn:lccn:51001748", - "urn:identifier:(WaOLN)nyp3600688" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Siamese cat." - ], - "titleDisplay": [ - "Siamese cats." - ], - "uri": "b13627337", - "lccClassification": [ - "SF449 .L39" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 27.56612, - "b13627337" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627337", - "_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": [ - "33433006598159" - ], - "identifier": [ - "urn:shelfmark:VPS (Lauder, P. Siamese cats)", - "urn:barcode:33433006598159" - ], - "identifierV2": [ - { - "value": "VPS (Lauder, P. Siamese cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598159", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Lauder, P. Siamese cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Lauder, P. Siamese cats)" - ], - "shelfMark_sort": "aVPS (Lauder, P. Siamese cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754451" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13662111", - "_score": 27.56612, - "_source": { - "extent": [ - "1 p. l., vii, xx, 136 p., 1 l., 1 pl. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Everett & Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1908 - ], - "title": [ - "The cat; its points and management in health and disease." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Barton, F. T. Cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1908" - ], - "creatorLiteral": [ - "Barton, Frank Townend." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1908 - ], - "idOclc": [ - "39080908" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Barton, F. T. Cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13662111" - }, - { - "type": "nypl:Oclc", - "value": "39080908" - } - ], - "updatedAt": 1711464013870, - "publicationStatement": [ - "London, Everett & Co., 1908." - ], - "identifier": [ - "urn:shelfmark:VPS (Barton, F. T. Cat)", - "urn:bnum:13662111", - "urn:oclc:39080908" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1908" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The cat; its points and management in health and disease." - ], - "uri": "b13662111", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "12mo." - ] - }, - "sort": [ - 27.56612, - "b13662111" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13662111", - "_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": [ - "33433006597581" - ], - "identifier": [ - "urn:shelfmark:VPS (Barton, F. T. Cat)", - "urn:barcode:33433006597581" - ], - "identifierV2": [ - { - "value": "VPS (Barton, F. T. Cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597581", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Barton, F. T. Cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Barton, F. T. Cat)" - ], - "shelfMark_sort": "aVPS (Barton, F. T. Cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10774894" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627226", - "_score": 27.405962, - "_source": { - "extent": [ - "72 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Anecdotes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A.L. Glaser" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1935 - ], - "title": [ - "The cat on the mat." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Brobeck, F. Cat on the mat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1935" - ], - "creatorLiteral": [ - "Brobeck, Florence, 1895-" - ], - "idLccn": [ - "49042458" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1935 - ], - "idOclc": [ - "9553458" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Brobeck, F. Cat on the mat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627226" - }, - { - "type": "nypl:Oclc", - "value": "9553458" - }, - { - "type": "bf:Lccn", - "value": "49042458" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600577" - } - ], - "updatedAt": 1710977648069, - "publicationStatement": [ - "New York, A.L. Glaser, 1935." - ], - "identifier": [ - "urn:shelfmark:VPS (Brobeck, F. Cat on the mat)", - "urn:bnum:13627226", - "urn:oclc:9553458", - "urn:lccn:49042458", - "urn:identifier:(WaOLN)nyp3600577" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1935" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Anecdotes." - ], - "titleDisplay": [ - "The cat on the mat. Drawings by Inukai." - ], - "uri": "b13627226", - "lccClassification": [ - "QL795.C2 B76" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 27.405962, - "b13627226" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627226", - "_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": [ - "33433006597649" - ], - "identifier": [ - "urn:shelfmark:VPS (Brobeck, F. Cat on the mat)", - "urn:barcode:33433006597649" - ], - "identifierV2": [ - { - "value": "VPS (Brobeck, F. Cat on the mat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597649", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Brobeck, F. Cat on the mat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Brobeck, F. Cat on the mat)" - ], - "shelfMark_sort": "aVPS (Brobeck, F. Cat on the mat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754331" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627331", - "_score": 27.405962, - "_source": { - "extent": [ - "126 p. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography, p. 120-122.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Genetics" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "All-Pets Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1955 - ], - "title": [ - "Cat genetics" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Jude, A. C. Cat genetics)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1955" - ], - "creatorLiteral": [ - "Jude, A. C." - ], - "idLccn": [ - "55012060" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1955 - ], - "idOclc": [ - "190785819", - "1572542" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Jude, A. C. Cat genetics)" - }, - { - "type": "nypl:Bnumber", - "value": "13627331" - }, - { - "type": "nypl:Oclc", - "value": "190785819" - }, - { - "type": "nypl:Oclc", - "value": "1572542" - }, - { - "type": "bf:Lccn", - "value": "55012060" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600682" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)190785819" - } - ], - "updatedAt": 1711412296496, - "publicationStatement": [ - "Fond du Lac, Wis., All-Pets Books, 1955" - ], - "identifier": [ - "urn:shelfmark:VPS (Jude, A. C. Cat genetics)", - "urn:bnum:13627331", - "urn:oclc:190785819", - "urn:oclc:1572542", - "urn:lccn:55012060", - "urn:identifier:(WaOLN)nyp3600682", - "urn:identifier:(OCoLC)190785819" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1955" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Genetics." - ], - "titleDisplay": [ - "Cat genetics" - ], - "uri": "b13627331", - "lccClassification": [ - "SF447 .J8" - ], - "placeOfPublication": [ - "Fond du Lac, Wis." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 27.405962, - "b13627331" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627331", - "_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": [ - "33433006598118" - ], - "identifier": [ - "urn:shelfmark:VPS (Jude, A. C. Cat genetics)", - "urn:barcode:33433006598118" - ], - "identifierV2": [ - { - "value": "VPS (Jude, A. C. Cat genetics)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598118", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Jude, A. C. Cat genetics)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Jude, A. C. Cat genetics)" - ], - "shelfMark_sort": "aVPS (Jude, A. C. Cat genetics)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754445" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13662228", - "_score": 27.405962, - "_source": { - "extent": [ - "98 p. (chiefly illus.)" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works", - "Cats -- Folklore" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Studio Publications, in association with Crowell" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Cats and kittens." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Holme, B. Cats and kittens)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "Holme, Bryan, 1913-" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "39081426" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Holme, B. Cats and kittens)" - }, - { - "type": "nypl:Bnumber", - "value": "13662228" - }, - { - "type": "nypl:Oclc", - "value": "39081426" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3634170" - } - ], - "updatedAt": 1711423803850, - "publicationStatement": [ - "New York, Studio Publications, in association with Crowell [1951]" - ], - "identifier": [ - "urn:shelfmark:VPS (Holme, B. Cats and kittens)", - "urn:bnum:13662228", - "urn:oclc:39081426", - "urn:identifier:(WaOLN)nyp3634170" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Pictorial works.", - "Cats -- Folklore." - ], - "titleDisplay": [ - "Cats and kittens. Introd. by Alleine E. Dodge." - ], - "uri": "b13662228", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 27.405962, - "b13662228" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13662228", - "_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": [ - "33433006598050" - ], - "identifier": [ - "urn:shelfmark:VPS (Holme, B. Cats and kittens)", - "urn:barcode:33433006598050" - ], - "identifierV2": [ - { - "value": "VPS (Holme, B. Cats and kittens)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598050", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Holme, B. Cats and kittens)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Holme, B. Cats and kittens)" - ], - "shelfMark_sort": "aVPS (Holme, B. Cats and kittens)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10774932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13687520", - "_score": 27.405962, - "_source": { - "extent": [ - "[5] p., [81] p. of illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wyn" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "The book of cats." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS+ (House, B. Book of cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "creatorLiteral": [ - "House, Brant, pseud." - ], - "idLccn": [ - "50009910" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "642966" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS+ (House, B. Book of cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13687520" - }, - { - "type": "nypl:Oclc", - "value": "642966" - }, - { - "type": "bf:Lccn", - "value": "50009910" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3657881" - } - ], - "updatedAt": 1710977301852, - "publicationStatement": [ - "New York, Wyn, 1950." - ], - "identifier": [ - "urn:shelfmark:VPS+ (House, B. Book of cats)", - "urn:bnum:13687520", - "urn:oclc:642966", - "urn:lccn:50009910", - "urn:identifier:(WaOLN)nyp3657881" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Pictorial works." - ], - "titleDisplay": [ - "The book of cats." - ], - "uri": "b13687520", - "lccClassification": [ - "SF446 .H67" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - 27.405962, - "b13687520" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13687520", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433008907382" - ], - "identifier": [ - "urn:shelfmark:VPS+ (House, B. Book of cats)", - "urn:barcode:33433008907382" - ], - "identifierV2": [ - { - "value": "VPS+ (House, B. Book of cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433008907382", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS+ (House, B. Book of cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS+ (House, B. Book of cats)" - ], - "shelfMark_sort": "aVPS+ (House, B. Book of cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10781167" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13687517", - "_score": 26.040113, - "_source": { - "extent": [ - "[52] p. : col. front., ill. (part col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Illustrated lining-papers.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Grosset & Dunlap" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1941 - ], - "title": [ - "Hiram and other cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS+ (Cook, G. E. Hiram and other cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1941" - ], - "creatorLiteral": [ - "Cook, Gladys Emerson, 1894-1977." - ], - "idLccn": [ - "41026517" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Smith, Laurence Dwight." - ], - "dateStartYear": [ - 1941 - ], - "idOclc": [ - "3013005" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS+ (Cook, G. E. Hiram and other cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13687517" - }, - { - "type": "nypl:Oclc", - "value": "3013005" - }, - { - "type": "bf:Lccn", - "value": "41026517" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3657878" - } - ], - "updatedAt": 1711023910385, - "publicationStatement": [ - "New York : Grosset & Dunlap, c1941." - ], - "identifier": [ - "urn:shelfmark:VPS+ (Cook, G. E. Hiram and other cats)", - "urn:bnum:13687517", - "urn:oclc:3013005", - "urn:lccn:41026517", - "urn:identifier:(WaOLN)nyp3657878" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1941" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Pictorial works.", - "Cats." - ], - "titleDisplay": [ - "Hiram and other cats / drawings by Gladys Emerson Cook, story by Laurence Dwight Smith." - ], - "uri": "b13687517", - "lccClassification": [ - "N7660 .C67" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - 26.040113, - "b13687517" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13687517", - "_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:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433008907374" - ], - "identifier": [ - "urn:shelfmark:VPS+ (Cook, G. E. Hiram and other cats)", - "urn:barcode:33433008907374" - ], - "identifierV2": [ - { - "value": "VPS+ (Cook, G. E. Hiram and other cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433008907374", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS+ (Cook, G. E. Hiram and other cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS+ (Cook, G. E. Hiram and other cats)" - ], - "shelfMark_sort": "aVPS+ (Cook, G. E. Hiram and other cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10781166" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10732051", - "_score": 25.840048, - "_source": { - "extent": [ - "800 v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "New York Public Library. Research Libraries", - "New York Public Library. Research Libraries -- Catalogs" - ], - "numItemDatesParsed": [ - 29 - ], - "publisherLiteral": [ - "New York Public Library, Astor, Lenox, and Tilden Foundations ; distributed by G.K. Hall" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 799 - ], - "createdYear": [ - 1979 - ], - "title": [ - "Dictionary catalog of the Research Libraries of the New York Public Library, 1911-1971." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Pub. Cat." - ], - "numItemVolumesParsed": [ - 799 - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "80146184 //r81" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "G.K. Hall & Company." - ], - "dateStartYear": [ - 1979 - ], - "idOclc": [ - "5154767", - "NYPG82-B15235" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Pub. Cat." - }, - { - "type": "nypl:Bnumber", - "value": "10732051" - }, - { - "type": "bf:Isbn", - "value": "0816103208 (set)" - }, - { - "type": "nypl:Oclc", - "value": "5154767" - }, - { - "type": "nypl:Oclc", - "value": "NYPG82-B15235" - }, - { - "type": "bf:Lccn", - "value": "80146184 //r81" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)xxx0000018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0738816" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5154767" - } - ], - "updatedAt": 1711181055776, - "publicationStatement": [ - "[New York] : New York Public Library, Astor, Lenox, and Tilden Foundations ; [Boston] : distributed by G.K. Hall, c1979." - ], - "idIsbn": [ - "0816103208 (set)" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat.", - "urn:bnum:10732051", - "urn:isbn:0816103208 (set)", - "urn:oclc:5154767", - "urn:oclc:NYPG82-B15235", - "urn:lccn:80146184 //r81", - "urn:identifier:(WaOLN)xxx0000018", - "urn:identifier:(WaOLN)nyp0738816", - "urn:identifier:(OCoLC)5154767" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "New York Public Library. Research Libraries -- Catalogs." - ], - "titleDisplay": [ - "Dictionary catalog of the Research Libraries of the New York Public Library, 1911-1971." - ], - "uri": "b10732051", - "lccClassification": [ - "Z881 .N59 1979" - ], - "placeOfPublication": [ - "[New York] : [Boston]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Retrospective catalog of the New York Public Library." - ], - "dimensions": [ - "37 cm." - ], - "idIsbn_clean": [ - "0816103208" - ] - }, - "sort": [ - 25.840048, - "b10732051" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 799, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10732051", - "_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" - ], - "enumerationChronology": [ - "v. 800 (Zoology B to Zy)" - ], - "enumerationChronology_sort": [ - " 800-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433080384773" - ], - "identifier": [ - "urn:shelfmark:ReCAP 08-1794 v. 800 (Zoology B to Zy)", - "urn:barcode:33433080384773" - ], - "identifierV2": [ - { - "value": "ReCAP 08-1794 v. 800 (Zoology B to Zy)", - "type": "bf:ShelfMark" - }, - { - "value": "33433080384773", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ReCAP 08-1794" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ReCAP 08-1794 v. 800 (Zoology B to Zy)" - ], - "shelfMark_sort": "aReCAP 08-1794 v. 000800 (Zoology B to Zy)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 800, - "lte": 800 - } - ], - "uri": "i17775909" - }, - "sort": [ - " 800-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10732051", - "_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:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "enumerationChronology": [ - "v. 799 (Zimmerman D to Zoology A)" - ], - "enumerationChronology_sort": [ - " 799-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433080384765" - ], - "identifier": [ - "urn:shelfmark:ReCAP 08-1794 v. 799 (Zimmerman D to Zoology A)", - "urn:barcode:33433080384765" - ], - "identifierV2": [ - { - "value": "ReCAP 08-1794 v. 799 (Zimmerman D to Zoology A)", - "type": "bf:ShelfMark" - }, - { - "value": "33433080384765", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ReCAP 08-1794" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ReCAP 08-1794 v. 799 (Zimmerman D to Zoology A)" - ], - "shelfMark_sort": "aReCAP 08-1794 v. 000799 (Zimmerman D to Zoology A)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 799, - "lte": 799 - } - ], - "uri": "i17775908" - }, - "sort": [ - " 799-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10732051", - "_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:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "enumerationChronology": [ - "v. 798 (Zehn K to Zimmerman C)" - ], - "enumerationChronology_sort": [ - " 798-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433080384757" - ], - "identifier": [ - "urn:shelfmark:ReCAP 08-1794 v. 798 (Zehn K to Zimmerman C)", - "urn:barcode:33433080384757" - ], - "identifierV2": [ - { - "value": "ReCAP 08-1794 v. 798 (Zehn K to Zimmerman C)", - "type": "bf:ShelfMark" - }, - { - "value": "33433080384757", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ReCAP 08-1794" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ReCAP 08-1794 v. 798 (Zehn K to Zimmerman C)" - ], - "shelfMark_sort": "aReCAP 08-1794 v. 000798 (Zehn K to Zimmerman C)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 798, - "lte": 798 - } - ], - "uri": "i17775907" - }, - "sort": [ - " 798-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16126183", - "_score": 25.840048, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Note", - "label": "Published: Palm Coast, Fl., ", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "v. 1-52, no. 7; 1945-July 1996." - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Periodicals" - ], - "numItemDatesParsed": [ - 25 - ], - "description": [ - "\"America's oldest cat publication.\"" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 25 - ], - "createdYear": [ - 1945 - ], - "dateEndString": [ - "1996" - ], - "title": [ - "Cats magazine" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPSA (Cats)" - ], - "numItemVolumesParsed": [ - 25 - ], - "createdString": [ - "1945" - ], - "idLccn": [ - "00233179" - ], - "idIssn": [ - "0008-8544" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1945 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "idOclc": [ - "7504759" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPSA (Cats)" - }, - { - "type": "nypl:Bnumber", - "value": "16126183" - }, - { - "type": "nypl:Oclc", - "value": "7504759" - }, - { - "type": "bf:Lccn", - "value": "00233179" - }, - { - "type": "bf:Issn", - "value": "0008-8544" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S190000002" - } - ], - "dateEndYear": [ - 1996 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1945)-30(1973)." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "VPSA (Cats)" - } - ], - "physicalLocation": [ - "VPSA (Cats)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:mal", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "shelfMark": [ - "VPSA (Cats)" - ], - "uri": "h1132682" - } - ], - "updatedAt": 1711441544125, - "publicationStatement": [ - "Port Orange, Fla. [etc.]" - ], - "identifier": [ - "urn:shelfmark:VPSA (Cats)", - "urn:bnum:16126183", - "urn:oclc:7504759", - "urn:lccn:00233179", - "urn:issn:0008-8544", - "urn:identifier:(WaOLN)S190000002" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1945" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Periodicals." - ], - "titleDisplay": [ - "Cats magazine [microform]." - ], - "uri": "b16126183", - "lccClassification": [ - "SF441 .C3" - ], - "placeOfPublication": [ - "Port Orange, Fla. [etc.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 25.840048, - "b16126183" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 25, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16126183", - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology": [ - "v. 51A (Jan-Dec. 1995)" - ], - "enumerationChronology_sort": [ - " 51-1995" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "idBarcode": [ - "33433109065791" - ], - "identifier": [ - "urn:shelfmark:*ZAN-5924 v. 51A (Jan-Dec. 1995)", - "urn:barcode:33433109065791" - ], - "identifierV2": [ - { - "value": "*ZAN-5924 v. 51A (Jan-Dec. 1995)", - "type": "bf:ShelfMark" - }, - { - "value": "33433109065791", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*ZAN-5924" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZAN-5924 v. 51A (Jan-Dec. 1995)" - ], - "shelfMark_sort": "a*ZAN-5924 v. 000051A (Jan-Dec. 1995)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - } - ], - "uri": "i30539337" - }, - "sort": [ - " 51-1995" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16126183", - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1994" - } - ], - "enumerationChronology": [ - "v. 51 (Jan.-Dec. 1994); Index v. 50 (1993)" - ], - "enumerationChronology_sort": [ - " 50-1993" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "idBarcode": [ - "33433109065783" - ], - "identifier": [ - "urn:shelfmark:*ZAN-5924 v. 51 (Jan.-Dec. 1994); Index v. 50 (1993)", - "urn:barcode:33433109065783" - ], - "identifierV2": [ - { - "value": "*ZAN-5924 v. 51 (Jan.-Dec. 1994); Index v. 50 (1993)", - "type": "bf:ShelfMark" - }, - { - "value": "33433109065783", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*ZAN-5924" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZAN-5924 v. 51 (Jan.-Dec. 1994); Index v. 50 (1993)" - ], - "shelfMark_sort": "a*ZAN-5924 v. 000051 (Jan.-Dec. 1994); Index v. 50 (1993)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - }, - { - "gte": 50, - "lte": 50 - } - ], - "uri": "i30539336" - }, - "sort": [ - " 50-1993" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b16126183", - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1993" - } - ], - "enumerationChronology": [ - "v. 50 (Jan.-Dec. 1993); Index v. 49 (1992)" - ], - "enumerationChronology_sort": [ - " 49-1992" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "idBarcode": [ - "33433109065775" - ], - "identifier": [ - "urn:shelfmark:*ZAN-5924 v. 50 (Jan.-Dec. 1993); Index v. 49 (1992)", - "urn:barcode:33433109065775" - ], - "identifierV2": [ - { - "value": "*ZAN-5924 v. 50 (Jan.-Dec. 1993); Index v. 49 (1992)", - "type": "bf:ShelfMark" - }, - { - "value": "33433109065775", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*ZAN-5924" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZAN-5924 v. 50 (Jan.-Dec. 1993); Index v. 49 (1992)" - ], - "shelfMark_sort": "a*ZAN-5924 v. 000050 (Jan.-Dec. 1993); Index v. 49 (1992)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - }, - { - "gte": 49, - "lte": 49 - } - ], - "uri": "i30539287" - }, - "sort": [ - " 49-1992" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624823", - "_score": 25.285816, - "_source": { - "extent": [ - "xv, [17]-126 p. 24 pl. (incl. front.: port.)" - ], - "note": [ - { - "noteType": "Note", - "label": "The first edition was published under the title \"Cats and all about them.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sir I. Pitman & sons, ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1909 - ], - "title": [ - "Cats for pleasure and profit;" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Simpson, F. Cats for pleasure and profit)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Simpson, Frances, Miss." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "3782799" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Simpson, F. Cats for pleasure and profit)" - }, - { - "type": "nypl:Bnumber", - "value": "13624823" - }, - { - "type": "nypl:Oclc", - "value": "3782799" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3598352" - } - ], - "updatedAt": 1711423623903, - "publicationStatement": [ - "London, Sir I. Pitman & sons, ltd., 1909." - ], - "identifier": [ - "urn:shelfmark:VPS (Simpson, F. Cats for pleasure and profit)", - "urn:bnum:13624823", - "urn:oclc:3782799", - "urn:identifier:(WaOLN)nyp3598352" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats for pleasure and profit; by Frances Simpson. With twenty-five illustrations." - ], - "uri": "b13624823", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 25.285816, - "b13624823" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624823", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433006598415" - ], - "identifier": [ - "urn:shelfmark:VPS (Simpson, F. Cats for pleasure and profit)", - "urn:barcode:33433006598415" - ], - "identifierV2": [ - { - "value": "VPS (Simpson, F. Cats for pleasure and profit)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598415", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Simpson, F. Cats for pleasure and profit)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Simpson, F. Cats for pleasure and profit)" - ], - "shelfMark_sort": "aVPS (Simpson, F. Cats for pleasure and profit)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752460" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627236", - "_score": 25.285816, - "_source": { - "extent": [ - "85 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Poetry", - "Cats -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Knopf" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1952 - ], - "title": [ - "All kinds of cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Chandoha, W. All kinds of cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1952" - ], - "creatorLiteral": [ - "Chandoha, Walter." - ], - "idLccn": [ - "52006395" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Borzoi book" - ], - "dateStartYear": [ - 1952 - ], - "idOclc": [ - "1303895" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Chandoha, W. All kinds of cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627236" - }, - { - "type": "nypl:Oclc", - "value": "1303895" - }, - { - "type": "bf:Lccn", - "value": "52006395" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600587" - } - ], - "updatedAt": 1711394444316, - "publicationStatement": [ - "New York, Knopf, c1952]" - ], - "identifier": [ - "urn:shelfmark:VPS (Chandoha, W. All kinds of cats)", - "urn:bnum:13627236", - "urn:oclc:1303895", - "urn:lccn:52006395", - "urn:identifier:(WaOLN)nyp3600587" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1952" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Cats -- Poetry.", - "Cats -- Pictorial works." - ], - "titleDisplay": [ - "All kinds of cats, edited and with photos. by Walter Chandoha." - ], - "uri": "b13627236", - "lccClassification": [ - "SF442 .C45" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - 25.285816, - "b13627236" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627236", - "_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": [ - "33433031345741" - ], - "identifier": [ - "urn:shelfmark:VPS (Chandoha, W. All kinds of cats)", - "urn:barcode:33433031345741" - ], - "identifierV2": [ - { - "value": "VPS (Chandoha, W. All kinds of cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433031345741", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Chandoha, W. All kinds of cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Chandoha, W. All kinds of cats)" - ], - "shelfMark_sort": "aVPS (Chandoha, W. All kinds of cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11304292" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627333", - "_score": 25.285816, - "_source": { - "extent": [ - "199 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Anecdotes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Current Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1949 - ], - "title": [ - "The cats in our lives" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Kellino, P. Cats in our lives)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1949" - ], - "creatorLiteral": [ - "Mason, Pamela, 1915-" - ], - "idLccn": [ - "49008201 /*" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Mason, James, 1909-1984." - ], - "dateStartYear": [ - 1949 - ], - "idOclc": [ - "1457025" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Kellino, P. Cats in our lives)" - }, - { - "type": "nypl:Bnumber", - "value": "13627333" - }, - { - "type": "nypl:Oclc", - "value": "1457025" - }, - { - "type": "bf:Lccn", - "value": "49008201 /*" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600684" - } - ], - "updatedAt": 1710977648069, - "publicationStatement": [ - "New York, Current Books, 1949." - ], - "identifier": [ - "urn:shelfmark:VPS (Kellino, P. Cats in our lives)", - "urn:bnum:13627333", - "urn:oclc:1457025", - "urn:lccn:49008201 /*", - "urn:identifier:(WaOLN)nyp3600684" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1949" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Anecdotes." - ], - "titleDisplay": [ - "The cats in our lives [by] Pamela Kellino and James Mason; with drawings by James Mason." - ], - "uri": "b13627333", - "lccClassification": [ - "QL795.C2 K4" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 25.285816, - "b13627333" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627333", - "_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": [ - "33433006598126" - ], - "identifier": [ - "urn:shelfmark:VPS (Kellino, P. Cats in our lives)", - "urn:barcode:33433006598126" - ], - "identifierV2": [ - { - "value": "VPS (Kellino, P. Cats in our lives)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598126", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Kellino, P. Cats in our lives)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Kellino, P. Cats in our lives)" - ], - "shelfMark_sort": "aVPS (Kellino, P. Cats in our lives)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754447" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627344", - "_score": 25.285816, - "_source": { - "extent": [ - "[8], 103, [1] p., [9] p. of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"First published 1954\"--Verso of t.p.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Marshall, Bruce, 1899-1987", - "Marshall, Bruce, 1899-1987 -- Biography", - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1954 - ], - "title": [ - "Thoughts of my cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Marshall, B. Thoughts of my cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1954" - ], - "creatorLiteral": [ - "Marshall, Bruce, 1899-1987." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1954 - ], - "idOclc": [ - "13427800" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Marshall, B. Thoughts of my cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627344" - }, - { - "type": "nypl:Oclc", - "value": "13427800" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600695" - } - ], - "updatedAt": 1711359146945, - "publicationStatement": [ - "London : Constable, 1954." - ], - "identifier": [ - "urn:shelfmark:VPS (Marshall, B. Thoughts of my cats)", - "urn:bnum:13627344", - "urn:oclc:13427800", - "urn:identifier:(WaOLN)nyp3600695" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Marshall, Bruce, 1899-1987 -- Biography.", - "Cats." - ], - "titleDisplay": [ - "Thoughts of my cats / [by] Bruce Marshall." - ], - "uri": "b13627344", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 25.285816, - "b13627344" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627344", - "_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": [ - "33433006598191" - ], - "identifier": [ - "urn:shelfmark:VPS (Marshall, B. Thoughts of my cats)", - "urn:barcode:33433006598191" - ], - "identifierV2": [ - { - "value": "VPS (Marshall, B. Thoughts of my cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598191", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Marshall, B. Thoughts of my cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Marshall, B. Thoughts of my cats)" - ], - "shelfMark_sort": "aVPS (Marshall, B. Thoughts of my cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754458" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13662356", - "_score": 25.285816, - "_source": { - "extent": [ - "p. 557-572, 83-105." - ], - "note": [ - { - "noteType": "Note", - "label": "Typewritten title-page.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Excerpt: Temple Bar mag. Dec. 1895-Jan. 1896.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Compañía Argentina de Tabacos" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1895 - ], - "dateEndString": [ - "1896" - ], - "title": [ - "Cats and their affections" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Wister, S. B. Cats and their affections)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1895" - ], - "creatorLiteral": [ - "Wister, Sarah Butler, 1835-1908." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1895 - ], - "idOclc": [ - "39082280" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Wister, S. B. Cats and their affections)" - }, - { - "type": "nypl:Bnumber", - "value": "13662356" - }, - { - "type": "nypl:Oclc", - "value": "39082280" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3634297" - } - ], - "dateEndYear": [ - 1896 - ], - "updatedAt": 1711423803850, - "publicationStatement": [ - "[New York?] 1895-96." - ], - "identifier": [ - "urn:shelfmark:VPS (Wister, S. B. Cats and their affections)", - "urn:bnum:13662356", - "urn:oclc:39082280", - "urn:identifier:(WaOLN)nyp3634297" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1895" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Compañía Argentina de Tabacos." - ], - "titleDisplay": [ - "Cats and their affections, by Sarah B. Wister ..." - ], - "uri": "b13662356", - "placeOfPublication": [ - "[New York?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8vo." - ] - }, - "sort": [ - 25.285816, - "b13662356" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13662356", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433006598548" - ], - "identifier": [ - "urn:shelfmark:VPS (Wister, S. B. Cats and their affections)", - "urn:barcode:33433006598548" - ], - "identifierV2": [ - { - "value": "VPS (Wister, S. B. Cats and their affections)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598548", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Wister, S. B. Cats and their affections)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Wister, S. B. Cats and their affections)" - ], - "shelfMark_sort": "aVPS (Wister, S. B. Cats and their affections)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10774978" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624815", - "_score": 25.140326, - "_source": { - "extent": [ - "viii, 296 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Also engraved title-pages.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Anecdotes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Griffith and Farran" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1868 - ], - "title": [ - "The book of cats : a chit-chat chronicle of feline facts and fancies, legendary, lyrical, medical, mirthful and miscellaneous" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Ross, C. H. Book of cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1868" - ], - "creatorLiteral": [ - "Ross, Charles H. (Charles Henry), 1842?-1897." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1868 - ], - "idOclc": [ - "10112373" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Ross, C. H. Book of cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13624815" - }, - { - "type": "nypl:Oclc", - "value": "10112373" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3598344" - } - ], - "updatedAt": 1711607891222, - "publicationStatement": [ - "London, England : Griffith and Farran, 1868." - ], - "identifier": [ - "urn:shelfmark:VPS (Ross, C. H. Book of cats)", - "urn:bnum:13624815", - "urn:oclc:10112373", - "urn:identifier:(WaOLN)nyp3598344" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1868" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Anecdotes." - ], - "titleDisplay": [ - "The book of cats : a chit-chat chronicle of feline facts and fancies, legendary, lyrical, medical, mirthful and miscellaneous / by Charles H. Ross; with twenty illus. by the author." - ], - "uri": "b13624815", - "electronicResources": [ - { - "label": "Full text available via HathiTrust - 1868", - "url": "http://hdl.handle.net/2027/ncs1.ark:/13960/t5fb5cc4z" - } - ], - "placeOfPublication": [ - "London, England" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 25.140326, - "b13624815" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624815", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433006598340" - ], - "identifier": [ - "urn:shelfmark:VPS (Ross, C. H. Book of cats)", - "urn:barcode:33433006598340" - ], - "identifierV2": [ - { - "value": "VPS (Ross, C. H. Book of cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598340", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Ross, C. H. Book of cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Ross, C. H. Book of cats)" - ], - "shelfMark_sort": "aVPS (Ross, C. H. Book of cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752454" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627164", - "_score": 25.140326, - "_source": { - "extent": [ - "88 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally published as 'Katten.' Born, 1953.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography, p. 84-88.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Compañía Argentina de Tabacos" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Beck" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1955 - ], - "title": [ - "Cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Beer, J. H. de. Cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1955" - ], - "creatorLiteral": [ - "Beer, J. H. de." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1955 - ], - "idOclc": [ - "30195332" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Beer, J. H. de. Cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627164" - }, - { - "type": "nypl:Oclc", - "value": "30195332" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600515" - } - ], - "updatedAt": 1711423733972, - "publicationStatement": [ - "Beck, 1955." - ], - "identifier": [ - "urn:shelfmark:VPS (Beer, J. H. de. Cats)", - "urn:bnum:13627164", - "urn:oclc:30195332", - "urn:identifier:(WaOLN)nyp3600515" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1955" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Compañía Argentina de Tabacos." - ], - "titleDisplay": [ - "Cats / translated from the Dutch by L. Ohl." - ], - "uri": "b13627164", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 25.140326, - "b13627164" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627164", - "_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": [ - "33433006597607" - ], - "identifier": [ - "urn:shelfmark:VPS (Beer, J. H. de. Cats)", - "urn:barcode:33433006597607" - ], - "identifierV2": [ - { - "value": "VPS (Beer, J. H. de. Cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597607", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Beer, J. H. de. Cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Beer, J. H. de. Cats)" - ], - "shelfMark_sort": "aVPS (Beer, J. H. de. Cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754265" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627242", - "_score": 25.140326, - "_source": { - "extent": [ - "xxvii, 387 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Fiction", - "Cats -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Coward-McCann" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Cats, in prose and verse; drawings by Diana Thorne." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Crawford, N. A. Cats in prose and verse)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Crawford, Nelson Antrim, 1888-1963" - ], - "idLccn": [ - "47005209" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Thorne, Diana, 1895-" - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "1088828" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Crawford, N. A. Cats in prose and verse)" - }, - { - "type": "nypl:Bnumber", - "value": "13627242" - }, - { - "type": "nypl:Oclc", - "value": "1088828" - }, - { - "type": "bf:Lccn", - "value": "47005209" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600593" - } - ], - "updatedAt": 1711423733972, - "publicationStatement": [ - "New York, Coward-McCann [c1947]" - ], - "identifier": [ - "urn:shelfmark:VPS (Crawford, N. A. Cats in prose and verse)", - "urn:bnum:13627242", - "urn:oclc:1088828", - "urn:lccn:47005209", - "urn:identifier:(WaOLN)nyp3600593" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Cats -- Fiction.", - "Cats -- Poetry." - ], - "titleDisplay": [ - "Cats, in prose and verse; drawings by Diana Thorne." - ], - "uri": "b13627242", - "lccClassification": [ - "PN6071 .C3 C7" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 25.140326, - "b13627242" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627242", - "_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": [ - "33433006597730" - ], - "identifier": [ - "urn:shelfmark:VPS (Crawford, N. A. Cats in prose and verse)", - "urn:barcode:33433006597730" - ], - "identifierV2": [ - { - "value": "VPS (Crawford, N. A. Cats in prose and verse)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597730", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Crawford, N. A. Cats in prose and verse)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Crawford, N. A. Cats in prose and verse)" - ], - "shelfMark_sort": "aVPS (Crawford, N. A. Cats in prose and verse)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754350" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627250", - "_score": 25.140326, - "_source": { - "extent": [ - "44 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Bibliography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "H. Denham" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1952 - ], - "title": [ - "Cats between covers : a bibliography of books about cats" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Denham, S. Cats between covers)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1952" - ], - "creatorLiteral": [ - "Denham, Sidney." - ], - "idLccn": [ - "53016059" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1952 - ], - "idOclc": [ - "10416990" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Denham, S. Cats between covers)" - }, - { - "type": "nypl:Bnumber", - "value": "13627250" - }, - { - "type": "nypl:Oclc", - "value": "10416990" - }, - { - "type": "bf:Lccn", - "value": "53016059" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600601" - } - ], - "updatedAt": 1711315697072, - "publicationStatement": [ - "London : H. Denham, 1952." - ], - "identifier": [ - "urn:shelfmark:VPS (Denham, S. Cats between covers)", - "urn:bnum:13627250", - "urn:oclc:10416990", - "urn:lccn:53016059", - "urn:identifier:(WaOLN)nyp3600601" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1952" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Bibliography." - ], - "titleDisplay": [ - "Cats between covers : a bibliography of books about cats / by Sidney Denham ; with a foreword by Sir Compton Mackenzie." - ], - "uri": "b13627250", - "lccClassification": [ - "Z5491 .D45" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 25.140326, - "b13627250" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627250", - "_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": [ - "33433006597789" - ], - "identifier": [ - "urn:shelfmark:VPS (Denham, S. Cats between covers)", - "urn:barcode:33433006597789" - ], - "identifierV2": [ - { - "value": "VPS (Denham, S. Cats between covers)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597789", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Denham, S. Cats between covers)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Denham, S. Cats between covers)" - ], - "shelfMark_sort": "aVPS (Denham, S. Cats between covers)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754358" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627322", - "_score": 25.140326, - "_source": { - "extent": [ - "102 p. pl." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Compañía Argentina de Tabacos" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "James bros." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1898 - ], - "title": [ - "The Angora cat; how to breed, train and keep it; with additional chapters on the history, peculiarities and diseases of the animal." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (James, R. K. Angora cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1898" - ], - "creatorLiteral": [ - "James, Robert Kent" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1898 - ], - "idOclc": [ - "5153298" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (James, R. K. Angora cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627322" - }, - { - "type": "nypl:Oclc", - "value": "5153298" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600673" - } - ], - "updatedAt": 1711142763716, - "publicationStatement": [ - "Boston, James bros., 1898." - ], - "identifier": [ - "urn:shelfmark:VPS (James, R. K. Angora cat)", - "urn:bnum:13627322", - "urn:oclc:5153298", - "urn:identifier:(WaOLN)nyp3600673" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1898" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Compañía Argentina de Tabacos." - ], - "titleDisplay": [ - "The Angora cat; how to breed, train and keep it; with additional chapters on the history, peculiarities and diseases of the animal." - ], - "uri": "b13627322", - "placeOfPublication": [ - "Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 25.140326, - "b13627322" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627326", - "_score": 25.140326, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "Imprint under label: London : Faber and Faber, 1950.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Various contributors.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Robert Bentley" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1953 - ], - "title": [ - "Best cat stories" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Joseph, M. Best cat stories)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1953" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Joseph, Michael, 1897-1958." - ], - "dateStartYear": [ - 1953 - ], - "idOclc": [ - "9595001" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Joseph, M. Best cat stories)" - }, - { - "type": "nypl:Bnumber", - "value": "13627326" - }, - { - "type": "nypl:Oclc", - "value": "9595001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600677" - } - ], - "updatedAt": 1711407640563, - "publicationStatement": [ - "Cambridge, Mass. : Robert Bentley, 1953." - ], - "identifier": [ - "urn:shelfmark:VPS (Joseph, M. Best cat stories)", - "urn:bnum:13627326", - "urn:oclc:9595001", - "urn:identifier:(WaOLN)nyp3600677" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Fiction." - ], - "titleDisplay": [ - "Best cat stories / edited with an introducaion by Michael Joseph ; illustrated by Eileen Mayo." - ], - "uri": "b13627326", - "placeOfPublication": [ - "Cambridge, Mass." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 25.140326, - "b13627326" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627326", - "_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": [ - "33433006598092" - ], - "identifier": [ - "urn:shelfmark:VPS (Joseph, M. Best cat stories)", - "urn:barcode:33433006598092" - ], - "identifierV2": [ - { - "value": "VPS (Joseph, M. Best cat stories)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598092", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Joseph, M. Best cat stories)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Joseph, M. Best cat stories)" - ], - "shelfMark_sort": "aVPS (Joseph, M. Best cat stories)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754440" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627326", - "_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: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": [ - "33433006598084" - ], - "identifier": [ - "urn:shelfmark:VPS (James, R. K. Angora cat)", - "urn:barcode:33433006598084" - ], - "identifierV2": [ - { - "value": "VPS (James, R. K. Angora cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598084", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (James, R. K. Angora cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (James, R. K. Angora cat)" - ], - "shelfMark_sort": "aVPS (James, R. K. Angora cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754436" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13662210", - "_score": 25.140326, - "_source": { - "extent": [ - "156 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Siamese cat" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cats and kittens magazine] Sole American distributors Denlingers [Silver Spring?] Md." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Siamese cats; the first work published since 1936 and bringing up-to-date news and views to all those interested in the Siamese cat." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (France, S. W. Siamese cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "France, Sydney W." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "39081238" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (France, S. W. Siamese cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13662210" - }, - { - "type": "nypl:Oclc", - "value": "39081238" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3634153" - } - ], - "updatedAt": 1710972817345, - "publicationStatement": [ - "[Derby, Eng., Cats and kittens magazine] Sole American distributors Denlingers [Silver Spring?] Md., 1951." - ], - "identifier": [ - "urn:shelfmark:VPS (France, S. W. Siamese cats)", - "urn:bnum:13662210", - "urn:oclc:39081238", - "urn:identifier:(WaOLN)nyp3634153" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Siamese cat." - ], - "titleDisplay": [ - "Siamese cats; the first work published since 1936 and bringing up-to-date news and views to all those interested in the Siamese cat. With a foreword by Miss Kit Wilson." - ], - "uri": "b13662210", - "placeOfPublication": [ - "[Derby, Eng." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 25.140326, - "b13662210" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13662210", - "_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": [ - "33433006597904" - ], - "identifier": [ - "urn:shelfmark:VPS (France, S. W. Siamese cats)", - "urn:barcode:33433006597904" - ], - "identifierV2": [ - { - "value": "VPS (France, S. W. Siamese cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597904", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (France, S. W. Siamese cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (France, S. W. Siamese cats)" - ], - "shelfMark_sort": "aVPS (France, S. W. Siamese cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10774924" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b19668600", - "_score": 24.545706, - "_source": { - "extent": [ - "166 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Germans", - "Germans -- Texas", - "Cat Spring (Tex.)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lone Star Print. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1956 - ], - "title": [ - "The Cat Spring story." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1956" - ], - "creatorLiteral": [ - "Cat Spring Agricultural Society." - ], - "idLccn": [ - "56035105" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1956 - ], - "idOclc": [ - "2601809" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)" - }, - { - "type": "nypl:Bnumber", - "value": "19668600" - }, - { - "type": "nypl:Oclc", - "value": "2601809" - }, - { - "type": "bf:Lccn", - "value": "56035105" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)2601809" - } - ], - "updatedAt": 1711220280092, - "publicationStatement": [ - "San Antonio : Lone Star Print. Co., 1956." - ], - "identifier": [ - "urn:shelfmark:ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)", - "urn:bnum:19668600", - "urn:oclc:2601809", - "urn:lccn:56035105", - "urn:identifier:(OCoLC)2601809" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1956" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Germans -- Texas.", - "Cat Spring (Tex.)" - ], - "titleDisplay": [ - "The Cat Spring story." - ], - "uri": "b19668600", - "lccClassification": [ - "F394.C3 C3" - ], - "placeOfPublication": [ - "San Antonio" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 24.545706, - "b19668600" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b19668600", - "_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:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433101132383" - ], - "identifier": [ - "urn:shelfmark:ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)", - "urn:barcode:33433101132383" - ], - "identifierV2": [ - { - "value": "ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)", - "type": "bf:ShelfMark" - }, - { - "value": "33433101132383", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)" - ], - "shelfMark_sort": "aITRM (Cat Spring) (Cat Spring Agricultural Society. Cat Spring story)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29098310" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627131", - "_score": 23.361937, - "_source": { - "extent": [ - "115 p. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "\"A Creative Age Press book.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 113-115.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Siamese cat" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Farrar, Straus and Young" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Your Siamese cat." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Baker, H. G. Your Siamese cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "Baker, Hettie Gray, 1881-1957." - ], - "idLccn": [ - "51007703 /L" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Creative age press book" - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "1666117" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Baker, H. G. Your Siamese cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627131" - }, - { - "type": "nypl:Oclc", - "value": "1666117" - }, - { - "type": "bf:Lccn", - "value": "51007703 /L" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600482" - } - ], - "updatedAt": 1710987283797, - "publicationStatement": [ - "New York, Farrar, Straus and Young [1951]" - ], - "identifier": [ - "urn:shelfmark:VPS (Baker, H. G. Your Siamese cat)", - "urn:bnum:13627131", - "urn:oclc:1666117", - "urn:lccn:51007703 /L", - "urn:identifier:(WaOLN)nyp3600482" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Siamese cat." - ], - "titleDisplay": [ - "Your Siamese cat." - ], - "uri": "b13627131", - "lccClassification": [ - "SF449 .B3" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 23.361937, - "b13627131" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627131", - "_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": [ - "33433006597532" - ], - "identifier": [ - "urn:shelfmark:VPS (Baker, H. G. Your Siamese cat)", - "urn:barcode:33433006597532" - ], - "identifierV2": [ - { - "value": "VPS (Baker, H. G. Your Siamese cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597532", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Baker, H. G. Your Siamese cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Baker, H. G. Your Siamese cat)" - ], - "shelfMark_sort": "aVPS (Baker, H. G. Your Siamese cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754235" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627158", - "_score": 23.361937, - "_source": { - "extent": [ - "96 p., [16] p. of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "The Bazaar, Exchange and Mart Office" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1921 - ], - "title": [ - "Domestic & fancy cats : a practical treatise on their varieties, breeding, management, and diseases" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Bazaar, exchange and mart. Domestic & fancy cats)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1921" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Morton, Christine M." - ], - "dateStartYear": [ - 1921 - ], - "idOclc": [ - "16387085" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Bazaar, exchange and mart. Domestic & fancy cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627158" - }, - { - "type": "nypl:Oclc", - "value": "16387085" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600509" - } - ], - "updatedAt": 1711552260890, - "publicationStatement": [ - "London : The Bazaar, Exchange and Mart Office, 1921." - ], - "identifier": [ - "urn:shelfmark:VPS (Bazaar, exchange and mart. Domestic & fancy cats)", - "urn:bnum:13627158", - "urn:oclc:16387085", - "urn:identifier:(WaOLN)nyp3600509" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1921" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Domestic & fancy cats : a practical treatise on their varieties, breeding, management, and diseases / revised and brought up to date by Christine M. Morton." - ], - "uri": "b13627158", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Domestic and fancy cats." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 23.361937, - "b13627158" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627158", - "_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": [ - "33433006597599" - ], - "identifier": [ - "urn:shelfmark:VPS (Bazaar, exchange and mart. Domestic & fancy cats)", - "urn:barcode:33433006597599" - ], - "identifierV2": [ - { - "value": "VPS (Bazaar, exchange and mart. Domestic & fancy cats)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597599", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Bazaar, exchange and mart. Domestic & fancy cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Bazaar, exchange and mart. Domestic & fancy cats)" - ], - "shelfMark_sort": "aVPS (Bazaar, exchange and mart. Domestic & fancy cats)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754258" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627289", - "_score": 23.361937, - "_source": { - "extent": [ - "xiii, 267, [1] p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Second printing.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Simon and Schuster" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "dateEndString": [ - "1946" - ], - "title": [ - "How to live with a cat" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Gay, M. C. How to live with a cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Gay, Margaret Cooper." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "9396567" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Gay, M. C. How to live with a cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627289" - }, - { - "type": "nypl:Oclc", - "value": "9396567" - }, - { - "type": "bf:Identifier", - "value": "1928586" - } - ], - "dateEndYear": [ - 1946 - ], - "updatedAt": 1711339234929, - "publicationStatement": [ - "New York, N.Y. : Simon and Schuster, 1947, c1946." - ], - "identifier": [ - "urn:shelfmark:VPS (Gay, M. C. How to live with a cat)", - "urn:bnum:13627289", - "urn:oclc:9396567", - "urn:identifier:1928586" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "How to live with a cat / by Margaret Cooper Gay ; with forewords by Dr. Norman H. Johnson ... and Sydney H. Coleman ... illustrated by Roberta Macdonald." - ], - "uri": "b13627289", - "placeOfPublication": [ - "New York, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 23.361937, - "b13627289" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627289", - "_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": [ - "33433006597938" - ], - "identifier": [ - "urn:shelfmark:VPS (Gay, M. C. How to live with a cat)", - "urn:barcode:33433006597938" - ], - "identifierV2": [ - { - "value": "VPS (Gay, M. C. How to live with a cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597938", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Gay, M. C. How to live with a cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Gay, M. C. How to live with a cat)" - ], - "shelfMark_sort": "aVPS (Gay, M. C. How to live with a cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754399" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627301", - "_score": 23.361937, - "_source": { - "extent": [ - "viii, 86 p. : plates ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Periodicals for cat lovers,\" p.85. \"Cat clubs and societies (1948),\" p.85-86.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Williams & Norgate" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1948 - ], - "title": [ - "Cats for pets and show" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Harman, I. D. A. Cats for pets and show)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1948" - ], - "creatorLiteral": [ - "Harman, Ian, 1911-" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1948 - ], - "idOclc": [ - "1521438" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Harman, I. D. A. Cats for pets and show)" - }, - { - "type": "nypl:Bnumber", - "value": "13627301" - }, - { - "type": "nypl:Oclc", - "value": "1521438" - } - ], - "updatedAt": 1711423733972, - "publicationStatement": [ - "London : Williams & Norgate, [1948]" - ], - "identifier": [ - "urn:shelfmark:VPS (Harman, I. D. A. Cats for pets and show)", - "urn:bnum:13627301", - "urn:oclc:1521438" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1948" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats for pets and show / Ian Denys Anthony Harman." - ], - "uri": "b13627301", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 23.361937, - "b13627301" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627301", - "_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": [ - "33433006597987" - ], - "identifier": [ - "urn:shelfmark:VPS (Harman, I. D. A. Cats for pets and show)", - "urn:barcode:33433006597987" - ], - "identifierV2": [ - { - "value": "VPS (Harman, I. D. A. Cats for pets and show)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597987", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Harman, I. D. A. Cats for pets and show)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Harman, I. D. A. Cats for pets and show)" - ], - "shelfMark_sort": "aVPS (Harman, I. D. A. Cats for pets and show)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754415" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627340", - "_score": 23.361937, - "_source": { - "extent": [ - "286 p. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 277-280.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lippincott" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "Cats and people" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Lockridge, F. L. D. Cats and people)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "creatorLiteral": [ - "Lockridge, Frances Louise Davis." - ], - "idLccn": [ - "50008836" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lockridge, Richard, 1898-" - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "1097089" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Lockridge, F. L. D. Cats and people)" - }, - { - "type": "nypl:Bnumber", - "value": "13627340" - }, - { - "type": "nypl:Oclc", - "value": "1097089" - }, - { - "type": "bf:Lccn", - "value": "50008836" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600691" - } - ], - "updatedAt": 1711423733972, - "publicationStatement": [ - "Philadelphia, Lippincott [1950]" - ], - "identifier": [ - "urn:shelfmark:VPS (Lockridge, F. L. D. Cats and people)", - "urn:bnum:13627340", - "urn:oclc:1097089", - "urn:lccn:50008836", - "urn:identifier:(WaOLN)nyp3600691" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "Cats and people [by] Frances and Richard Lockridge; with drawings by Helen Stone." - ], - "uri": "b13627340", - "lccClassification": [ - "SF447 .L6" - ], - "placeOfPublication": [ - "Philadelphia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 23.361937, - "b13627340" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627340", - "_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": [ - "33433006598175" - ], - "identifier": [ - "urn:shelfmark:VPS (Lockridge, F. L. D. Cats and people)", - "urn:barcode:33433006598175" - ], - "identifierV2": [ - { - "value": "VPS (Lockridge, F. L. D. Cats and people)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598175", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Lockridge, F. L. D. Cats and people)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Lockridge, F. L. D. Cats and people)" - ], - "shelfMark_sort": "aVPS (Lockridge, F. L. D. Cats and people)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754454" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627348", - "_score": 23.361937, - "_source": { - "extent": [ - "xii, 275 p. front., illus., plates." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "\"Selected bibliography\": p.[255]-261.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.Scribner̕s sons; C. Scribner̕s sons,ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1940 - ], - "title": [ - "The science and the mystery of the cat; its evolutionary status, antiquity as a pet, body, brain, behavior, so-called \"occult powers,\" and its effect on people" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Mellen, I. M. Science and the mystery of the cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1940" - ], - "creatorLiteral": [ - "Mellen, Ida May, 1877-" - ], - "idLccn": [ - "40027496" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1940 - ], - "idOclc": [ - "1282514" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Mellen, I. M. Science and the mystery of the cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627348" - }, - { - "type": "nypl:Oclc", - "value": "1282514" - }, - { - "type": "bf:Lccn", - "value": "40027496" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600699" - } - ], - "updatedAt": 1710982800118, - "publicationStatement": [ - "New York, C.Scribner̕s sons; London, C. Scribner̕s sons,ltd., 1940." - ], - "identifier": [ - "urn:shelfmark:VPS (Mellen, I. M. Science and the mystery of the cat)", - "urn:bnum:13627348", - "urn:oclc:1282514", - "urn:lccn:40027496", - "urn:identifier:(WaOLN)nyp3600699" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1940" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "The science and the mystery of the cat; its evolutionary status, antiquity as a pet, body, brain, behavior, so-called \"occult powers,\" and its effect on people, by Ida M. Mellen." - ], - "uri": "b13627348", - "lccClassification": [ - "QL737.C2 M4" - ], - "placeOfPublication": [ - "New York, London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 23.361937, - "b13627348" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627348", - "_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": [ - "33433006598217" - ], - "identifier": [ - "urn:shelfmark:VPS (Mellen, I. M. Science and the mystery of the cat)", - "urn:barcode:33433006598217" - ], - "identifierV2": [ - { - "value": "VPS (Mellen, I. M. Science and the mystery of the cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598217", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Mellen, I. M. Science and the mystery of the cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Mellen, I. M. Science and the mystery of the cat)" - ], - "shelfMark_sort": "aVPS (Mellen, I. M. Science and the mystery of the cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754462" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627354", - "_score": 23.361937, - "_source": { - "extent": [ - "103 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Siamese cat" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "All-Pets Books" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1953 - ], - "title": [ - "Siamese cat book." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Nelson, V. M. Siamese cat book)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1953" - ], - "creatorLiteral": [ - "Nelson, Vera M., 1909-" - ], - "idLccn": [ - "53010012 /L" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1953 - ], - "idOclc": [ - "3288547" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Nelson, V. M. Siamese cat book)" - }, - { - "type": "nypl:Bnumber", - "value": "13627354" - }, - { - "type": "nypl:Oclc", - "value": "3288547" - }, - { - "type": "bf:Lccn", - "value": "53010012 /L" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600705" - } - ], - "updatedAt": 1710972815435, - "publicationStatement": [ - "Fond du Lac, Wis., All-Pets Books, 1953." - ], - "identifier": [ - "urn:shelfmark:VPS (Nelson, V. M. Siamese cat book)", - "urn:bnum:13627354", - "urn:oclc:3288547", - "urn:lccn:53010012 /L", - "urn:identifier:(WaOLN)nyp3600705" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Siamese cat." - ], - "titleDisplay": [ - "Siamese cat book." - ], - "uri": "b13627354", - "lccClassification": [ - "SF449 .N45 1953" - ], - "placeOfPublication": [ - "Fond du Lac, Wis." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 23.361937, - "b13627354" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627354", - "_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": [ - "33433006598258" - ], - "identifier": [ - "urn:shelfmark:VPS (Nelson, V. M. Siamese cat book)", - "urn:barcode:33433006598258" - ], - "identifierV2": [ - { - "value": "VPS (Nelson, V. M. Siamese cat book)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598258", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Nelson, V. M. Siamese cat book)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Nelson, V. M. Siamese cat book)" - ], - "shelfMark_sort": "aVPS (Nelson, V. M. Siamese cat book)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754469" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14986225", - "_score": 23.361937, - "_source": { - "extent": [ - "nos." - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1st-" - ], - "subjectLiteral_exploded": [ - "Cat", - "Cat -- Exhibitions, United States: New York" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1895 - ], - "dateEndString": [ - "uuuu" - ], - "title": [ - "Official catalogue of entries ... annual National Cat Show, Madison Square Garden, New York ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (National Cat Show. Official catalogue of entries)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1895" - ], - "creatorLiteral": [ - "National Cat Show." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1895 - ], - "idOclc": [ - "46343655" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (National Cat Show. Official catalogue of entries)" - }, - { - "type": "nypl:Bnumber", - "value": "14986225" - }, - { - "type": "nypl:Oclc", - "value": "46343655" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)Z280000029" - } - ], - "dateEndYear": [ - null - ], - "updatedAt": 1711603022145, - "publicationStatement": [ - "[New York] 1895-" - ], - "identifier": [ - "urn:shelfmark:VPS (National Cat Show. Official catalogue of entries)", - "urn:bnum:14986225", - "urn:oclc:46343655", - "urn:identifier:(WaOLN)Z280000029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1895" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cat -- Exhibitions, United States: New York." - ], - "titleDisplay": [ - "Official catalogue of entries ... annual National Cat Show, Madison Square Garden, New York ..." - ], - "uri": "b14986225", - "placeOfPublication": [ - "[New York]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "8vo." - ] - }, - "sort": [ - 23.361937, - "b14986225" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14986225", - "_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" - ], - "enumerationChronology": [ - "1st-2nd" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433006598266" - ], - "identifier": [ - "urn:shelfmark:VPS (National Cat Show. Official catalogue of entries) 1st-2nd", - "urn:barcode:33433006598266" - ], - "identifierV2": [ - { - "value": "VPS (National Cat Show. Official catalogue of entries) 1st-2nd", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598266", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (National Cat Show. Official catalogue of entries)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (National Cat Show. Official catalogue of entries) 1st-2nd" - ], - "shelfMark_sort": "aVPS (National Cat Show. Official catalogue of entries) 1st-2nd", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11424137" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13624838", - "_score": 23.228666, - "_source": { - "extent": [ - "v, 90 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Duell, Sloan and Pearce" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "The cats of Wildcat Hill" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Wilson, C. W. Cats of Wildcat hill)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Wilson, Charis, 1914-" - ], - "idLccn": [ - "47011974 //r79" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Weston, Edward, 1886-1958." - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "5147780" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Wilson, C. W. Cats of Wildcat hill)" - }, - { - "type": "nypl:Bnumber", - "value": "13624838" - }, - { - "type": "nypl:Oclc", - "value": "5147780" - }, - { - "type": "bf:Lccn", - "value": "47011974 //r79" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3598367" - } - ], - "updatedAt": 1710992467943, - "publicationStatement": [ - "New York, Duell, Sloan and Pearce [1947]" - ], - "identifier": [ - "urn:shelfmark:VPS (Wilson, C. W. Cats of Wildcat hill)", - "urn:bnum:13624838", - "urn:oclc:5147780", - "urn:lccn:47011974 //r79", - "urn:identifier:(WaOLN)nyp3598367" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats." - ], - "titleDisplay": [ - "The cats of Wildcat Hill, by Charis Wilson and Edward Weston." - ], - "uri": "b13624838", - "lccClassification": [ - "QL795.C2 W54" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 x 28 cm." - ] - }, - "sort": [ - 23.228666, - "b13624838" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13624838", - "_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": [ - "33433006598571" - ], - "identifier": [ - "urn:shelfmark:VPS (Wilson, C. W. Cats of Wildcat hill)", - "urn:barcode:33433006598571" - ], - "identifierV2": [ - { - "value": "VPS (Wilson, C. W. Cats of Wildcat hill)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598571", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Wilson, C. W. Cats of Wildcat hill)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Wilson, C. W. Cats of Wildcat hill)" - ], - "shelfMark_sort": "aVPS (Wilson, C. W. Cats of Wildcat hill)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10752472" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627127", - "_score": 23.228666, - "_source": { - "extent": [ - "175 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Anecdotes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Farrar, Straus and Young" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1953 - ], - "title": [ - "195 cat tales." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Baker, H. G. 195 cat tales)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1953" - ], - "creatorLiteral": [ - "Baker, Hettie Gray." - ], - "idLccn": [ - "53009120" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1953 - ], - "idOclc": [ - "1456952" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Baker, H. G. 195 cat tales)" - }, - { - "type": "nypl:Bnumber", - "value": "13627127" - }, - { - "type": "nypl:Oclc", - "value": "1456952" - }, - { - "type": "bf:Lccn", - "value": "53009120" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600478" - } - ], - "updatedAt": 1711367721375, - "publicationStatement": [ - "New York, Farrar, Straus and Young [1953]" - ], - "identifier": [ - "urn:shelfmark:VPS (Baker, H. G. 195 cat tales)", - "urn:bnum:13627127", - "urn:oclc:1456952", - "urn:lccn:53009120", - "urn:identifier:(WaOLN)nyp3600478" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Anecdotes." - ], - "titleDisplay": [ - "195 cat tales." - ], - "uri": "b13627127", - "lccClassification": [ - "QL795.C2 B3" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 23.228666, - "b13627127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627127", - "_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": [ - "33433006597524" - ], - "identifier": [ - "urn:shelfmark:VPS (Baker, H. G. 195 cat tales)", - "urn:barcode:33433006597524" - ], - "identifierV2": [ - { - "value": "VPS (Baker, H. G. 195 cat tales)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597524", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Baker, H. G. 195 cat tales)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Baker, H. G. 195 cat tales)" - ], - "shelfMark_sort": "aVPS (Baker, H. G. 195 cat tales)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754227" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627285", - "_score": 23.228666, - "_source": { - "extent": [ - "ix, 196 p. illus., plates, diagrs." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 187-191.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Animal intelligence", - "Animal behavior", - "Psychology, Comparative" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Macmillan" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1928 - ], - "title": [ - "The modern cat: her mind & manners; an introduction to comparative psychology" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Gates, G. I. S. Modern cat)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1928" - ], - "creatorLiteral": [ - "Gates, Georgina Ida Stickland, 1896-" - ], - "idLccn": [ - "28011572" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1928 - ], - "idOclc": [ - "860712" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Gates, G. I. S. Modern cat)" - }, - { - "type": "nypl:Bnumber", - "value": "13627285" - }, - { - "type": "nypl:Oclc", - "value": "860712" - }, - { - "type": "bf:Lccn", - "value": "28011572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600636" - } - ], - "updatedAt": 1710980524328, - "publicationStatement": [ - "New York, Macmillan, 1928." - ], - "identifier": [ - "urn:shelfmark:VPS (Gates, G. I. S. Modern cat)", - "urn:bnum:13627285", - "urn:oclc:860712", - "urn:lccn:28011572", - "urn:identifier:(WaOLN)nyp3600636" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1928" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Animal intelligence.", - "Animal behavior.", - "Psychology, Comparative." - ], - "titleDisplay": [ - "The modern cat: her mind & manners; an introduction to comparative psychology, by Georgina Stickland Gates." - ], - "uri": "b13627285", - "lccClassification": [ - "QL785 .G3" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 23.228666, - "b13627285" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627285", - "_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": [ - "33433006597912" - ], - "identifier": [ - "urn:shelfmark:VPS (Gates, G. I. S. Modern cat)", - "urn:barcode:33433006597912" - ], - "identifierV2": [ - { - "value": "VPS (Gates, G. I. S. Modern cat)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597912", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Gates, G. I. S. Modern cat)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Gates, G. I. S. Modern cat)" - ], - "shelfMark_sort": "aVPS (Gates, G. I. S. Modern cat)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754396" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13627335", - "_score": 23.228666, - "_source": { - "extent": [ - "xvi, 312 p. front., illus., plates." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Guinea pigs", - "Rabbits" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J.M. Dent" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1903 - ], - "title": [ - "Rabbits, cats and cavies; descriptive sketches of all recognized exhibition varieties with many original anecdotes" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Lane, C. H. Rabbits, cats and cavies)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1903" - ], - "creatorLiteral": [ - "Lane, Charles Henry." - ], - "idLccn": [ - "agr04000374" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bebb, Rosa." - ], - "dateStartYear": [ - 1903 - ], - "idOclc": [ - "2591495" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Lane, C. H. Rabbits, cats and cavies)" - }, - { - "type": "nypl:Bnumber", - "value": "13627335" - }, - { - "type": "nypl:Oclc", - "value": "2591495" - }, - { - "type": "bf:Lccn", - "value": "agr04000374" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600686" - } - ], - "updatedAt": 1710967841889, - "publicationStatement": [ - "London, J.M. Dent, 1903." - ], - "identifier": [ - "urn:shelfmark:VPS (Lane, C. H. Rabbits, cats and cavies)", - "urn:bnum:13627335", - "urn:oclc:2591495", - "urn:lccn:agr04000374", - "urn:identifier:(WaOLN)nyp3600686" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1903" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Guinea pigs.", - "Rabbits." - ], - "titleDisplay": [ - "Rabbits, cats and cavies; descriptive sketches of all recognized exhibition varieties with many original anecdotes, by C. H. Lane." - ], - "uri": "b13627335", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 23.228666, - "b13627335" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13627335", - "_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": [ - "33433006598142" - ], - "identifier": [ - "urn:shelfmark:VPS (Lane, C. H. Rabbits, cats and cavies)", - "urn:barcode:33433006598142" - ], - "identifierV2": [ - { - "value": "VPS (Lane, C. H. Rabbits, cats and cavies)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006598142", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Lane, C. H. Rabbits, cats and cavies)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Lane, C. H. Rabbits, cats and cavies)" - ], - "shelfMark_sort": "aVPS (Lane, C. H. Rabbits, cats and cavies)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10754449" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13662201", - "_score": 23.228666, - "_source": { - "extent": [ - "21 l., 36 pl." - ], - "note": [ - { - "noteType": "Note", - "label": "Text excerpted from her: Alexander and some other cats. [1938]", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Compañía Argentina de Tabacos" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Privately printed by the Plimpton Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1938 - ], - "title": [ - "Happy cats and their care;" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "VPS (Eddy, S. J. Happy cats and their care)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1938" - ], - "creatorLiteral": [ - "Eddy, Sarah J." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1938 - ], - "idOclc": [ - "39081170" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Eddy, S. J. Happy cats and their care)" - }, - { - "type": "nypl:Bnumber", - "value": "13662201" - }, - { - "type": "nypl:Oclc", - "value": "39081170" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3634144" - } - ], - "updatedAt": 1711465106414, - "publicationStatement": [ - "Norwood, Mass., Privately printed by the Plimpton Press [1938?]" - ], - "identifier": [ - "urn:shelfmark:VPS (Eddy, S. J. Happy cats and their care)", - "urn:bnum:13662201", - "urn:oclc:39081170", - "urn:identifier:(WaOLN)nyp3634144" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1938" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Compañía Argentina de Tabacos." - ], - "titleDisplay": [ - "Happy cats and their care; compiled and arranged by Sarah J. Eddy ..." - ], - "uri": "b13662201", - "placeOfPublication": [ - "Norwood, Mass." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 23.228666, - "b13662201" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13662201", - "_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": [ - "33433006597839" - ], - "identifier": [ - "urn:shelfmark:VPS (Eddy, S. J. Happy cats and their care)", - "urn:barcode:33433006597839" - ], - "identifierV2": [ - { - "value": "VPS (Eddy, S. J. Happy cats and their care)", - "type": "bf:ShelfMark" - }, - { - "value": "33433006597839", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "VPS (Eddy, S. J. Happy cats and their care)" - ], - "recapCustomerCode": [ - "NL" - ], - "requestable": [ - true - ], - "shelfMark": [ - "VPS (Eddy, S. J. Happy cats and their care)" - ], - "shelfMark_sort": "aVPS (Eddy, S. J. Happy cats and their care)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10774918" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10148470", - "_score": 23.207302, - "_source": { - "extent": [ - "231 v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "French literature", - "French literature -- Bibliography", - "French literature -- Bibliography -- Catalogs", - "Library catalogs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Imprimerie nationale" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 459 - ], - "createdYear": [ - 1897 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Catalogue général des livres imprimés de la Bibliothèque nationale. Auteurs." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Ref. Cat. 2000" - ], - "numItemVolumesParsed": [ - 232 - ], - "createdString": [ - "1897" - ], - "creatorLiteral": [ - "Bibliothèque nationale (France). Département des imprimés." - ], - "idLccn": [ - "01005989" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1897 - ], - "idOclc": [ - "NYPG744246744-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Ref. Cat. 2000" - }, - { - "type": "nypl:Bnumber", - "value": "10148470" - }, - { - "type": "nypl:Oclc", - "value": "NYPG744246744-B" - }, - { - "type": "bf:Lccn", - "value": "01005989" - }, - { - "type": "bf:Identifier", - "value": "NN744246744" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0149486" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711115196436, - "publicationStatement": [ - "Paris, Imprimerie nationale, 1897-1981." - ], - "identifier": [ - "urn:shelfmark:Ref. Cat. 2000", - "urn:bnum:10148470", - "urn:oclc:NYPG744246744-B", - "urn:lccn:01005989", - "urn:identifier:NN744246744", - "urn:identifier:(WaOLN)nyp0149486" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1897" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "French literature -- Bibliography -- Catalogs.", - "Library catalogs." - ], - "titleDisplay": [ - "Catalogue général des livres imprimés de la Bibliothèque nationale. Auteurs." - ], - "uri": "b10148470", - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 23.207302, - "b10148470" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 459, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10148470", - "_nested": { - "field": "items", - "offset": 227 - }, - "_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" - ], - "enumerationChronology": [ - "v. 231 (ZIMMERMAN - ZYZYKIN)" - ], - "enumerationChronology_sort": [ - " 231-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433076827744" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. Z927 .P2 v. 231 (ZIMMERMAN - ZYZYKIN)", - "urn:barcode:33433076827744" - ], - "identifierV2": [ - { - "value": "Pub. Cat. Z927 .P2 v. 231 (ZIMMERMAN - ZYZYKIN)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076827744", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. Z927 .P2" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. Z927 .P2 v. 231 (ZIMMERMAN - ZYZYKIN)" - ], - "shelfMark_sort": "aPub. Cat. Z927 .P2 v. 000231 (ZIMMERMAN - ZYZYKIN)", - "status": [ - { - "id": "status:o", - "label": "Use in library" - } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 231, - "lte": 231 - } - ], - "uri": "i16664098" - }, - "sort": [ - " 231-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10148470", - "_nested": { - "field": "items", - "offset": 228 - }, - "_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" - ], - "enumerationChronology": [ - "v. 230 (ZBARASKI - ZIMMERLIN)" - ], - "enumerationChronology_sort": [ - " 230-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433076827736" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. Z927 .P2 v. 230 (ZBARASKI - ZIMMERLIN)", - "urn:barcode:33433076827736" - ], - "identifierV2": [ - { - "value": "Pub. Cat. Z927 .P2 v. 230 (ZBARASKI - ZIMMERLIN)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076827736", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. Z927 .P2" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. Z927 .P2 v. 230 (ZBARASKI - ZIMMERLIN)" - ], - "shelfMark_sort": "aPub. Cat. Z927 .P2 v. 000230 (ZBARASKI - ZIMMERLIN)", - "status": [ - { - "id": "status:o", - "label": "Use in library" - } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 230, - "lte": 230 - } - ], - "uri": "i16664097" - }, - "sort": [ - " 230-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b10148470", - "_nested": { - "field": "items", - "offset": 229 - }, - "_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" - ], - "enumerationChronology": [ - "v. 229 (YOUNGBLOOD - ZAZZO)" - ], - "enumerationChronology_sort": [ - " 229-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433076827728" - ], - "identifier": [ - "urn:shelfmark:Pub. Cat. Z927 .P2 v. 229 (YOUNGBLOOD - ZAZZO)", - "urn:barcode:33433076827728" - ], - "identifierV2": [ - { - "value": "Pub. Cat. Z927 .P2 v. 229 (YOUNGBLOOD - ZAZZO)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076827728", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Pub. Cat. Z927 .P2" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Pub. Cat. Z927 .P2 v. 229 (YOUNGBLOOD - ZAZZO)" - ], - "shelfMark_sort": "aPub. Cat. Z927 .P2 v. 000229 (YOUNGBLOOD - ZAZZO)", - "status": [ - { - "id": "status:o", - "label": "Use in library" - } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 229, - "lte": 229 - } - ], - "uri": "i16664096" - }, - "sort": [ - " 229-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11337855", - "_score": 23.207302, - "_source": { - "extent": [ - "1 v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contains articles by the Zen Master Sokei-an.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "500 copies printed.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "NYPL copy: No. 81 signed by Sasaki Shigetsu.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Reprint with a forward, appendix, glossary and index. Originally published monthly: New York? : Buddhist Society of America.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1, no. 1 (July 1940)-v. 2, no. 1 (July 1941)." - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Periodicals", - "Zen Buddhism", - "Zen Buddhism -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "First Zen Institute of America, Inc." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1940 - ], - "dateEndString": [ - "1941" - ], - "title": [ - "Cat's yawn." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*OLWL (Cat's yawn)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1940" - ], - "idLccn": [ - "sn 87021030" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sasaki, Shigetsu, 1882-1945.", - "Buddhist Society of America.", - "First Zen Institute of America." - ], - "dateStartYear": [ - 1940 - ], - "idOclc": [ - "1553605", - "NYPG88-S2462" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLWL (Cat's yawn)" - }, - { - "type": "nypl:Bnumber", - "value": "11337855" - }, - { - "type": "nypl:Oclc", - "value": "1553605" - }, - { - "type": "nypl:Oclc", - "value": "NYPG88-S2462" - }, - { - "type": "bf:Lccn", - "value": "sn 87021030" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1345714" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1553605" - } - ], - "dateEndYear": [ - 1941 - ], - "updatedAt": 1712854107859, - "publicationStatement": [ - "New York : First Zen Institute of America, Inc., 1947." - ], - "identifier": [ - "urn:shelfmark:*OLWL (Cat's yawn)", - "urn:bnum:11337855", - "urn:oclc:1553605", - "urn:oclc:NYPG88-S2462", - "urn:lccn:sn 87021030", - "urn:identifier:(WaOLN)nyp1345714", - "urn:identifier:(OCoLC)1553605" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1940" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Periodicals.", - "Zen Buddhism -- Periodicals." - ], - "titleDisplay": [ - "Cat's yawn." - ], - "uri": "b11337855", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - 23.207302, - "b11337855" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11337855", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "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" - ], - "idBarcode": [ - "33433061442244" - ], - "identifier": [ - "urn:shelfmark:*OLWL (Cat's yawn)", - "urn:barcode:33433061442244" - ], - "identifierV2": [ - { - "value": "*OLWL (Cat's yawn)", - "type": "bf:ShelfMark" - }, - { - "value": "33433061442244", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*OLWL (Cat's yawn)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*OLWL (Cat's yawn)" - ], - "shelfMark_sort": "a*OLWL (Cat's yawn)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14965537", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*OLWL+%28Cat%27s+yawn%29&Date=1940&Form=30&Genre=serial&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11337855&ItemISxN=i14965537x&ItemNumber=33433061442244&ItemPlace=New+York&ItemPublisher=First+Zen+Institute+of+America%2C+Inc.%2C+1947.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b113378555&Site=SASRB&Title=Cat%27s+yawn.&Transaction.CustomFields.MapsLocationNote=%28Locked+cage%29" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11400949", - "_score": 23.207302, - "_source": { - "extent": [ - "xx, 222, 380 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"The two parts of the Oxford dictionary of Modern Greek were first published separately, Greek-English in 1965 and English-Greek in 1982. This combined edition was first publishe in 1982.\"--T.p verso", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Greek language, Modern", - "Greek language, Modern -- Dictionaries", - "Greek language, Modern -- Dictionaries -- English", - "English language", - "English language -- Dictionaries", - "English language -- Dictionaries -- Greek" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Clarendon Press ; Oxford University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1986 - ], - "title": [ - "The Oxford dictionary of modern Greek : Greek-English and English-Greek" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Ref. Cat. 1160A" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1986" - ], - "creatorLiteral": [ - "Pring, J. T. (Julian Talbot)" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1986 - ], - "idOclc": [ - "16579085", - "NYPG90-B92951" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Ref. Cat. 1160A" - }, - { - "type": "nypl:Bnumber", - "value": "11400949" - }, - { - "type": "bf:Isbn", - "value": "0198641370" - }, - { - "type": "bf:Isbn", - "value": "0198641486 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "16579085" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-B92951" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1409005" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)16579085" - } - ], - "updatedAt": 1711528940366, - "publicationStatement": [ - "Oxford : Clarendon Press ; New York : Oxford University Press, c1986." - ], - "idIsbn": [ - "0198641370", - "0198641486 (pbk.)" - ], - "identifier": [ - "urn:shelfmark:Ref. Cat. 1160A", - "urn:bnum:11400949", - "urn:isbn:0198641370", - "urn:isbn:0198641486 (pbk.)", - "urn:oclc:16579085", - "urn:oclc:NYPG90-B92951", - "urn:identifier:(WaOLN)nyp1409005", - "urn:identifier:(OCoLC)16579085" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1986" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Greek language, Modern -- Dictionaries -- English.", - "English language -- Dictionaries -- Greek." - ], - "titleDisplay": [ - "The Oxford dictionary of modern Greek : Greek-English and English-Greek / compiled by J.T. Pring." - ], - "uri": "b11400949", - "placeOfPublication": [ - "Oxford : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ], - "idIsbn_clean": [ - "0198641370", - "0198641486" - ] - }, - "sort": [ - 23.207302, - "b11400949" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11400949", - "_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:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433083535520" - ], - "identifier": [ - "urn:shelfmark:Ref. Cat. 1160A", - "urn:barcode:33433083535520" - ], - "identifierV2": [ - { - "value": "Ref. Cat. 1160A", - "type": "bf:ShelfMark" - }, - { - "value": "33433083535520", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "Ref. Cat. 1160A" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Ref. Cat. 1160A" - ], - "shelfMark_sort": "aRef. Cat. 1160A", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "type": [ - "bf:Item" - ], - "uri": "i15900404" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11409732", - "_score": 23.207302, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "New eds. issued periodically in several vols., arranged in sections, and kept up to date by separately numbered monthly and semiannual supplements (monthly and semiannual supplements in turn replaced by a bound supplementary vol. or vols.)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Each ed. is cummulative", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A compilation of citations to United States lower court cases reported in Federal reporter and Federal cases.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Annotations and citations (Law)", - "Annotations and citations (Law) -- United States" - ], - "numItemDatesParsed": [ - 40 - ], - "publisherLiteral": [ - "Shepard's/McGraw-Hill [etc.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 40 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Shepard's Federal citations." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PUB CAT KF105.2" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shepard's/McGraw-Hill." - ], - "dateStartYear": [ - 999 - ], - "idOclc": [ - "NYPG90-S8744" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PUB CAT KF105.2" - }, - { - "type": "nypl:Bnumber", - "value": "11409732" - }, - { - "type": "nypl:Oclc", - "value": "NYPG90-S8744" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0011586" - } - ], - "uniformTitle": [ - "Federal reporter." - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "ed. 9, v. 1-38 & 2006/2007 suppls. no. 1-2." - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "KF105.2 .S55" - } - ], - "physicalLocation": [ - "KF105.2 .S55" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:mal", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "shelfMark": [ - "KF105.2 .S55" - ], - "uri": "h1060003" - } - ], - "updatedAt": 1711506405860, - "publicationStatement": [ - "Colorado Springs, Shepard's/McGraw-Hill [etc.]" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF105.2", - "urn:bnum:11409732", - "urn:oclc:NYPG90-S8744", - "urn:identifier:(WaOLN)nyp0011586" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Annotations and citations (Law) -- United States." - ], - "titleDisplay": [ - "Shepard's Federal citations." - ], - "uri": "b11409732", - "placeOfPublication": [ - "Colorado Springs" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Shepard's Federal citations", - "Federal citations" - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - 23.207302, - "b11409732" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 40, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11409732", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "ed. 9:v. 9 (2006)" - ], - "enumerationChronology_sort": [ - " -2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433067521314" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF105.2 .S55 ed. 9:v. 9 (2006)", - "urn:barcode:33433067521314" - ], - "identifierV2": [ - { - "value": "PUB CAT KF105.2 .S55 ed. 9:v. 9 (2006)", - "type": "bf:ShelfMark" - }, - { - "value": "33433067521314", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF105.2 .S55" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF105.2 .S55 ed. 9:v. 9 (2006)" - ], - "shelfMark_sort": "aPUB CAT KF105.2 .S55 ed. 9:v. 9 (2006)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16727808" - }, - "sort": [ - " -2006" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11409732", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "ed. 9:v. 8 (2006)" - ], - "enumerationChronology_sort": [ - " -2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433067521322" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF105.2 .S55 ed. 9:v. 8 (2006)", - "urn:barcode:33433067521322" - ], - "identifierV2": [ - { - "value": "PUB CAT KF105.2 .S55 ed. 9:v. 8 (2006)", - "type": "bf:ShelfMark" - }, - { - "value": "33433067521322", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF105.2 .S55" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF105.2 .S55 ed. 9:v. 8 (2006)" - ], - "shelfMark_sort": "aPUB CAT KF105.2 .S55 ed. 9:v. 8 (2006)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16727807" - }, - "sort": [ - " -2006" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11409732", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology": [ - "ed. 9:v. 7 (2006)" - ], - "enumerationChronology_sort": [ - " -2006" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433067521306" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF105.2 .S55 ed. 9:v. 7 (2006)", - "urn:barcode:33433067521306" - ], - "identifierV2": [ - { - "value": "PUB CAT KF105.2 .S55 ed. 9:v. 7 (2006)", - "type": "bf:ShelfMark" - }, - { - "value": "33433067521306", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF105.2 .S55" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF105.2 .S55 ed. 9:v. 7 (2006)" - ], - "shelfMark_sort": "aPUB CAT KF105.2 .S55 ed. 9:v. 7 (2006)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16727806" - }, - "sort": [ - " -2006" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11479709", - "_score": 23.207302, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Interim table of statutes has title: New York Jur 2nd.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Kept up to date by pocket supplements and rev. vols.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes extra unnumbered vols.: Interim topics, Interim table of statutes, Interim general index (4 v.), Table of statutes and rules, Desk book (loose-leaf), Table of cases with annotation references (6 v.), General index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes \"Quarterly update service\" vols.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Law", - "Law -- New York (State)" - ], - "numItemDatesParsed": [ - 172 - ], - "publisherLiteral": [ - "Lawyers Co-Operative Pub. Co." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 172 - ], - "createdYear": [ - 1979 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "New York jurisprudence 2d." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PUB CAT KFN5065" - ], - "numItemVolumesParsed": [ - 147 - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "79090263" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lawyers Co-operative Publishing Company." - ], - "dateStartYear": [ - 1979 - ], - "idOclc": [ - "NYPG91-B64168" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PUB CAT KFN5065" - }, - { - "type": "nypl:Bnumber", - "value": "11479709" - }, - { - "type": "nypl:Oclc", - "value": "NYPG91-B64168" - }, - { - "type": "bf:Lccn", - "value": "79090263" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0012133" - } - ], - "uniformTitle": [ - "New York jurisprudence. 2nd. Quarterly update service." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711203313937, - "publicationStatement": [ - "Rochester, N.Y. : Lawyers Co-Operative Pub. Co., 1979-" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KFN5065", - "urn:bnum:11479709", - "urn:oclc:NYPG91-B64168", - "urn:lccn:79090263", - "urn:identifier:(WaOLN)nyp0012133" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Law -- New York (State)" - ], - "titleDisplay": [ - "New York jurisprudence 2d." - ], - "uri": "b11479709", - "lccClassification": [ - "KFN5065 .N48 1979" - ], - "placeOfPublication": [ - "Rochester, N.Y." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "NY jur 2D", - "New York Jur 2nd." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 23.207302, - "b11479709" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 172, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11479709", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology": [ - "v. 116 [2011]:Words & Phrases S-Z " - ], - "enumerationChronology_sort": [ - " 116-2011" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal72", - "label": "SASB - SIBL - General Research - Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal72||SASB - SIBL - General Research - Room 315" - ], - "idBarcode": [ - "33433089163921" - ], - "identifier": [ - "urn:shelfmark:KFN5065 .N48 v. 116 [2011]:Words & Phrases S-Z ", - "urn:barcode:33433089163921" - ], - "identifierV2": [ - { - "value": "KFN5065 .N48 v. 116 [2011]:Words & Phrases S-Z ", - "type": "bf:ShelfMark" - }, - { - "value": "33433089163921", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "KFN5065 .N48" - ], - "requestable": [ - false - ], - "shelfMark": [ - "KFN5065 .N48 v. 116 [2011]:Words & Phrases S-Z " - ], - "shelfMark_sort": "aKFN5065 .N48 v. 000116 [2011]:Words & Phrases S-Z ", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 116, - "lte": 116 - } - ], - "uri": "i26488198" - }, - "sort": [ - " 116-2011" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11479709", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology": [ - "v. 115 [2011]:Words & Phrases P-R" - ], - "enumerationChronology_sort": [ - " 115-2011" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal72", - "label": "SASB - SIBL - General Research - Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal72||SASB - SIBL - General Research - Room 315" - ], - "idBarcode": [ - "33433089163939" - ], - "identifier": [ - "urn:shelfmark:KFN5065 .N48 v. 115 [2011]:Words & Phrases P-R", - "urn:barcode:33433089163939" - ], - "identifierV2": [ - { - "value": "KFN5065 .N48 v. 115 [2011]:Words & Phrases P-R", - "type": "bf:ShelfMark" - }, - { - "value": "33433089163939", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "KFN5065 .N48" - ], - "requestable": [ - false - ], - "shelfMark": [ - "KFN5065 .N48 v. 115 [2011]:Words & Phrases P-R" - ], - "shelfMark_sort": "aKFN5065 .N48 v. 000115 [2011]:Words & Phrases P-R", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 115, - "lte": 115 - } - ], - "uri": "i26488196" - }, - "sort": [ - " 115-2011" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11479709", - "_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:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology": [ - "v. 114 [2011]:Words & Phrases I-O" - ], - "enumerationChronology_sort": [ - " 114-2011" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal72", - "label": "SASB - SIBL - General Research - Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal72||SASB - SIBL - General Research - Room 315" - ], - "idBarcode": [ - "33433089163913" - ], - "identifier": [ - "urn:shelfmark:KFN5065 .N48 v. 114 [2011]:Words & Phrases I-O", - "urn:barcode:33433089163913" - ], - "identifierV2": [ - { - "value": "KFN5065 .N48 v. 114 [2011]:Words & Phrases I-O", - "type": "bf:ShelfMark" - }, - { - "value": "33433089163913", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "KFN5065 .N48" - ], - "requestable": [ - false - ], - "shelfMark": [ - "KFN5065 .N48 v. 114 [2011]:Words & Phrases I-O" - ], - "shelfMark_sort": "aKFN5065 .N48 v. 000114 [2011]:Words & Phrases I-O", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 114, - "lte": 114 - } - ], - "uri": "i26488191" - }, - "sort": [ - " 114-2011" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11552852", - "_score": 23.207302, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Pt. A is Subject Index, pt. B is Author/Title Index, Table of Cases, Table of Statutes", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Imprint varies.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Multiple access to legal periodicals.\"", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Annual cumulations for <1991>- issued in 2 vols.", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Published by: Information Access Corporation, 1980- ; Information Access Company, <1982>- .", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Published in cooperation with the American Association of Law Libraries.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Information issued also in: Legal resource index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1, no. 1 (Jan. 1980)-" - ], - "subjectLiteral_exploded": [ - "Law", - "Law -- Periodicals", - "Law -- Periodicals -- Indexes", - "Law -- Periodicals -- Indexes.", - "Law -- Periodicals -- Indexes. -- United States" - ], - "numItemDatesParsed": [ - 52 - ], - "publisherLiteral": [ - "Information Access Corp." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 52 - ], - "createdYear": [ - 1980 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Current law index." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PUB CAT K33" - ], - "numItemVolumesParsed": [ - 52 - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "80645396" - ], - "idIssn": [ - "0196-1780" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Information Access Corporation.", - "Information Access Company.", - "American Association of Law Libraries." - ], - "dateStartYear": [ - 1980 - ], - "idOclc": [ - "5756625", - "NYPG92-S1907" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PUB CAT K33" - }, - { - "type": "nypl:Bnumber", - "value": "11552852" - }, - { - "type": "nypl:Oclc", - "value": "5756625" - }, - { - "type": "nypl:Oclc", - "value": "NYPG92-S1907" - }, - { - "type": "bf:Lccn", - "value": "80645396" - }, - { - "type": "bf:Issn", - "value": "0196-1780" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1561316" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5756625" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "v. 1 (1980) - v. 30 (2009)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "K33 .C877" - } - ], - "physicalLocation": [ - "K33 .C877" - ], - "format": [ - "PRINT of annual cumulations" - ], - "location": [ - { - "code": "loc:mal", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "shelfMark": [ - "K33 .C877" - ], - "uri": "h1065362" - } - ], - "updatedAt": 1709748761156, - "publicationStatement": [ - "[Los Altos, Calif.] : Information Access Corp., 1980-" - ], - "identifier": [ - "urn:shelfmark:PUB CAT K33", - "urn:bnum:11552852", - "urn:oclc:5756625", - "urn:oclc:NYPG92-S1907", - "urn:lccn:80645396", - "urn:issn:0196-1780", - "urn:identifier:(WaOLN)nyp1561316", - "urn:identifier:(OCoLC)5756625" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Law -- Periodicals -- Indexes.", - "Law -- Periodicals -- Indexes. -- United States" - ], - "titleDisplay": [ - "Current law index." - ], - "uri": "b11552852", - "lccClassification": [ - "K33 .C87" - ], - "placeOfPublication": [ - "[Los Altos, Calif.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Curr. law index", - "Current law index" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 23.207302, - "b11552852" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 52, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11552852", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "v. 30, pt. B (2009)" - ], - "enumerationChronology_sort": [ - " 30-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433086395617" - ], - "identifier": [ - "urn:shelfmark:PUB CAT K33 .C877 v. 30, pt. B (2009)", - "urn:barcode:33433086395617" - ], - "identifierV2": [ - { - "value": "PUB CAT K33 .C877 v. 30, pt. B (2009)", - "type": "bf:ShelfMark" - }, - { - "value": "33433086395617", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT K33 .C877" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT K33 .C877 v. 30, pt. B (2009)" - ], - "shelfMark_sort": "aPUB CAT K33 .C877 v. 000030, pt. B (2009)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i24824001" - }, - "sort": [ - " 30-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11552852", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology": [ - "v. 30, pt. A (2009)" - ], - "enumerationChronology_sort": [ - " 30-2009" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433086395609" - ], - "identifier": [ - "urn:shelfmark:PUB CAT K33 .C877 v. 30, pt. A (2009)", - "urn:barcode:33433086395609" - ], - "identifierV2": [ - { - "value": "PUB CAT K33 .C877 v. 30, pt. A (2009)", - "type": "bf:ShelfMark" - }, - { - "value": "33433086395609", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT K33 .C877" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT K33 .C877 v. 30, pt. A (2009)" - ], - "shelfMark_sort": "aPUB CAT K33 .C877 v. 000030, pt. A (2009)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i24823806" - }, - "sort": [ - " 30-2009" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11552852", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology": [ - "v. 29, pt. B (2008)" - ], - "enumerationChronology_sort": [ - " 29-2008" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433067567903" - ], - "identifier": [ - "urn:shelfmark:PUB CAT K33 .C877 v. 29, pt. B (2008)", - "urn:barcode:33433067567903" - ], - "identifierV2": [ - { - "value": "PUB CAT K33 .C877 v. 29, pt. B (2008)", - "type": "bf:ShelfMark" - }, - { - "value": "33433067567903", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT K33 .C877" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT K33 .C877 v. 29, pt. B (2008)" - ], - "shelfMark_sort": "aPUB CAT K33 .C877 v. 000029, pt. B (2008)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "uri": "i23139156" - }, - "sort": [ - " 29-2008" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13942019", - "_score": 23.207302, - "_source": { - "extent": [ - "v. : ill." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: American jurisprudence 2d.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Co-published: Rochester, N.Y., Lawyers Co-operative Pub. Co. ; San Francisco, Bancroft-Whitney Co., 1962-1997.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Accompanied by: Special edition on The Internal Revenue Service Restructuring and Reform Act of 1998. (xv, 497 p.).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Accompanied by: 2005 bankruptcy reform legislation with analysis : commentary and highlighted text of the United States Bankruptcy Code as amended by the The Bankruptcy Abuse Prevention and Consumer Protection Act of 2005, Public Law 109-8, by William Houston Brown and Lawrence R. Ahern III. (389 p.), cataloged separately.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Kept up to date by pocket parts, supplements, and revised volumes.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes unnumbered vols., e.g., General index, Table of statutes, rules, and regulations cited, Desk book, New topic service (loose-leaf service, pamphlets, and bound vols.), etc.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Description based on: t.p., v. 7, 1997.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "United States", - "Law", - "Law -- United States", - "Law reports, digests, etc.", - "Law reports, digests, etc. -- United States", - "Bankruptcy", - "Bankruptcy -- United States", - "Consumer credit", - "Consumer credit -- Law and legislation", - "Consumer credit -- Law and legislation -- United States" - ], - "numItemDatesParsed": [ - 155 - ], - "publisherLiteral": [ - "West Group" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 155 - ], - "createdYear": [ - 1962 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "American jurisprudence : a modern comprehensive text statement of American law, State and Federal." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "PUB CAT KF154" - ], - "numItemVolumesParsed": [ - 143 - ], - "createdString": [ - "1962" - ], - "idLccn": [ - "62004388 //r988" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brown, William Houston.", - "Ahern, Lawrence R., III", - "Lawyers Co-operative Publishing Company.", - "Bancroft-Whitney Company.", - "West Group." - ], - "dateStartYear": [ - 1962 - ], - "idOclc": [ - "1025873" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "PUB CAT KF154" - }, - { - "type": "nypl:Bnumber", - "value": "13942019" - }, - { - "type": "nypl:Oclc", - "value": "1025873" - }, - { - "type": "bf:Lccn", - "value": "62004388 //r988" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0530063" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1-83 & indices (as of 2007)" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "KF154 .A42" - } - ], - "physicalLocation": [ - "KF154 .A42" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:mal", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "shelfMark": [ - "KF154 .A42" - ], - "uri": "h1082373" - } - ], - "updatedAt": 1711283824716, - "publicationStatement": [ - "[St. Paul, Minn.] : West Group, 1962-" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF154", - "urn:bnum:13942019", - "urn:oclc:1025873", - "urn:lccn:62004388 //r988", - "urn:identifier:(WaOLN)nyp0530063" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1962" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "United States.", - "Law -- United States.", - "Law reports, digests, etc. -- United States.", - "Bankruptcy -- United States.", - "Consumer credit -- Law and legislation -- United States." - ], - "titleDisplay": [ - "American jurisprudence : a modern comprehensive text statement of American law, State and Federal." - ], - "uri": "b13942019", - "lccClassification": [ - "KF154 .A42" - ], - "placeOfPublication": [ - "[St. Paul, Minn.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "American jurisprudence 2d.", - "Internal Revenue Service Restructuring and Reform Act of 1998.", - "2005 bankruptcy reform legislation with analysis.", - "Bankruptcy reform legislation with analysis." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 23.207302, - "b13942019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 155, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13942019", - "_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:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology": [ - "v. 83 [2003]:Zoning and Planning" - ], - "enumerationChronology_sort": [ - " 83-2003" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433030819555" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF154 .A42 v. 83 [2003]:Zoning and Planning", - "urn:barcode:33433030819555" - ], - "identifierV2": [ - { - "value": "PUB CAT KF154 .A42 v. 83 [2003]:Zoning and Planning", - "type": "bf:ShelfMark" - }, - { - "value": "33433030819555", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF154 .A42" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF154 .A42 v. 83 [2003]:Zoning and Planning" - ], - "shelfMark_sort": "aPUB CAT KF154 .A42 v. 000083 [2003]:Zoning and Planning", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "uri": "i12329189" - }, - "sort": [ - " 83-2003" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13942019", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology": [ - "v. 82 [2003]:Workers' Compensation to Wrongful Discharge" - ], - "enumerationChronology_sort": [ - " 82-2003" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433030818151" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF154 .A42 v. 82 [2003]:Workers' Compensation to Wrongful Discharge", - "urn:barcode:33433030818151" - ], - "identifierV2": [ - { - "value": "PUB CAT KF154 .A42 v. 82 [2003]:Workers' Compensation to Wrongful Discharge", - "type": "bf:ShelfMark" - }, - { - "value": "33433030818151", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF154 .A42" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF154 .A42 v. 82 [2003]:Workers' Compensation to Wrongful Discharge" - ], - "shelfMark_sort": "aPUB CAT KF154 .A42 v. 000082 [2003]:Workers' Compensation to Wrongful Discharge", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "uri": "i12329187" - }, - "sort": [ - " 82-2003" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13942019", - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology": [ - "v. 81 [2004]:Witnesses" - ], - "enumerationChronology_sort": [ - " 81-2004" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:malv2", - "label": "Schwarzman Building - Public Catalog Room 315" - } - ], - "holdingLocation_packed": [ - "loc:malv2||Schwarzman Building - Public Catalog Room 315" - ], - "idBarcode": [ - "33433061611111" - ], - "identifier": [ - "urn:shelfmark:PUB CAT KF154 .A42 v. 81 [2004]:Witnesses", - "urn:barcode:33433061611111" - ], - "identifierV2": [ - { - "value": "PUB CAT KF154 .A42 v. 81 [2004]:Witnesses", - "type": "bf:ShelfMark" - }, - { - "value": "33433061611111", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "PUB CAT KF154 .A42" - ], - "requestable": [ - false - ], - "shelfMark": [ - "PUB CAT KF154 .A42 v. 81 [2004]:Witnesses" - ], - "shelfMark_sort": "aPUB CAT KF154 .A42 v. 000081 [2004]:Witnesses", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "uri": "i15224406" - }, - "sort": [ - " 81-2004" - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-bb6df452559cef891c376c2d95dc8ce2.json b/test/fixtures/query-bb6df452559cef891c376c2d95dc8ce2.json deleted file mode 100644 index ac1cf038..00000000 --- a/test/fixtures/query-bb6df452559cef891c376c2d95dc8ce2.json +++ /dev/null @@ -1,972 +0,0 @@ -{ - "body": { - "took": 29, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_score": 25.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "creatorModifiedName": "Miriam Gloger", - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 25.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "uri": "i37857771", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "enumerationChronology": [ - "v.1" - ], - "idBarcode": [ - "3333333333" - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ] - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "uri": "i37857772", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "enumerationChronology": [ - "nothing" - ], - "idBarcode": [ - "44455533322211" - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-bd510336b2eda3456f80765424931e26.json b/test/fixtures/query-bd510336b2eda3456f80765424931e26.json deleted file mode 100644 index 63b19433..00000000 --- a/test/fixtures/query-bd510336b2eda3456f80765424931e26.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "body": { - "took": 225, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-88ac9bac6878f0c60274f019a8b268d3.json b/test/fixtures/query-c4f6e66d4cbb40fa4cc103afdd9c09db.json similarity index 94% rename from test/fixtures/query-88ac9bac6878f0c60274f019a8b268d3.json rename to test/fixtures/query-c4f6e66d4cbb40fa4cc103afdd9c09db.json index 365925a0..b30a9891 100644 --- a/test/fixtures/query-88ac9bac6878f0c60274f019a8b268d3.json +++ b/test/fixtures/query-c4f6e66d4cbb40fa4cc103afdd9c09db.json @@ -1,6 +1,6 @@ { "body": { - "took": 154, + "took": 350, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-c91b970cd916854378d09639937168a5.json b/test/fixtures/query-c91b970cd916854378d09639937168a5.json deleted file mode 100644 index 584d5bef..00000000 --- a/test/fixtures/query-c91b970cd916854378d09639937168a5.json +++ /dev/null @@ -1,972 +0,0 @@ -{ - "body": { - "took": 74, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_score": 25.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "creatorModifiedName": "Miriam Gloger", - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 25.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "uri": "i37857771", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "enumerationChronology": [ - "v.1" - ], - "idBarcode": [ - "3333333333" - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ] - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-13", - "_id": "b22144813", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "uri": "i37857772", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "enumerationChronology": [ - "nothing" - ], - "idBarcode": [ - "44455533322211" - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json b/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json deleted file mode 100644 index 110db869..00000000 --- a/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 65, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 18.592264, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 18.592264, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-d1d9a1906aa571ad66409b88bf04dbfa.json b/test/fixtures/query-d1d9a1906aa571ad66409b88bf04dbfa.json deleted file mode 100644 index 9f0796b4..00000000 --- a/test/fixtures/query-d1d9a1906aa571ad66409b88bf04dbfa.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 66, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-f57797aed5209b803135dc9ed71f4db4.json b/test/fixtures/query-dfe3136e8671841ebc0e0c4a15c94845.json similarity index 99% rename from test/fixtures/query-f57797aed5209b803135dc9ed71f4db4.json rename to test/fixtures/query-dfe3136e8671841ebc0e0c4a15c94845.json index e3a56a46..76a91b99 100644 --- a/test/fixtures/query-f57797aed5209b803135dc9ed71f4db4.json +++ b/test/fixtures/query-dfe3136e8671841ebc0e0c4a15c94845.json @@ -1,6 +1,6 @@ { "body": { - "took": 219, + "took": 317, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-21994510d949d9e950d650fddba2ea2a.json b/test/fixtures/query-e7a03b6471082676fab174f58e595549.json similarity index 99% rename from test/fixtures/query-21994510d949d9e950d650fddba2ea2a.json rename to test/fixtures/query-e7a03b6471082676fab174f58e595549.json index c0274674..9d44b87b 100644 --- a/test/fixtures/query-21994510d949d9e950d650fddba2ea2a.json +++ b/test/fixtures/query-e7a03b6471082676fab174f58e595549.json @@ -1,6 +1,6 @@ { "body": { - "took": 903, + "took": 1581, "timed_out": false, "_shards": { "total": 2, @@ -10,7 +10,7 @@ }, "hits": { "total": { - "value": 585, + "value": 577, "relation": "eq" }, "max_score": null, diff --git a/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json b/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json deleted file mode 100644 index 96332751..00000000 --- a/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json +++ /dev/null @@ -1,14005 +0,0 @@ -{ - "body": { - "took": 541, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 10000, - "relation": "gte" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12423567", - "_score": 931.7346, - "_source": { - "extent": [ - "202 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S. Neaulme" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1741 - ], - "title": [ - "Vita Th. Campanellae." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1741" - ], - "creatorLiteral": [ - "Cyprian, Ernst Salomon, 1673-1745." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1741 - ], - "idOclc": [ - "34529242" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - }, - { - "type": "nypl:Bnumber", - "value": "12423567" - }, - { - "type": "nypl:Oclc", - "value": "34529242" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2408048" - } - ], - "updatedAt": 1711326027341, - "publicationStatement": [ - "Trajecti ad Rhenum, S. Neaulme, 1741." - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "urn:bnum:12423567", - "urn:oclc:34529242", - "urn:identifier:(WaOLN)nyp2408048" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1741" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Vita Th. Campanellae. Autore Ern. Sal. Cypriano. Accedunt hac secunda editione appendices IV. doctorum virorum de Campanellae vita, philosophia & libris schediasmata complectentes." - ], - "uri": "b12423567", - "placeOfPublication": [ - "Trajecti ad Rhenum" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - 931.7346, - "b12423567" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12423567", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "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": [ - "33433104031624" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "urn:barcode:33433104031624" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "type": "bf:ShelfMark" - }, - { - "value": "33433104031624", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "shelfMark_sort": "aAN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16020288" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14284417", - "_score": 33.82753, - "_source": { - "extent": [ - "4 p.l., 379 [i.e. 376] p." - ], - "note": [ - { - "noteType": "Note", - "label": "Engraved and illustrated t.-p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pages 289, 376 wrongly numbered 198, 379.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Printed at Leiden by B. and A. Elzevier.--cf. Willems 971 and Rahir: Elzevier, 964.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "First published Amsterdam, 1640.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Brunet", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "History, Modern", - "History, Modern -- 17th century", - "Monarchy", - "Spain", - "Spain -- Politics and government", - "Spain -- Politics and government -- 1621-1665", - "Europe", - "Europe -- Politics and government", - "Spain -- Government, 1516-1808" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Apud L. Elzeuirium" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1641 - ], - "title": [ - "Th. Campanella De monarchia Hispanica." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1641" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Elzevir, Louis." - ], - "dateStartYear": [ - 1641 - ], - "idOclc": [ - "7684591" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)" - }, - { - "type": "nypl:Bnumber", - "value": "14284417" - }, - { - "type": "nypl:Oclc", - "value": "7684591" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R200000271" - } - ], - "updatedAt": 1712865387092, - "publicationStatement": [ - "Amsterodami, Apud L. Elzeuirium, ao. 1641." - ], - "identifier": [ - "urn:shelfmark:*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)", - "urn:bnum:14284417", - "urn:oclc:7684591", - "urn:identifier:(WaOLN)R200000271" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1641" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "History, Modern -- 17th century.", - "Monarchy.", - "Spain -- Politics and government -- 1621-1665.", - "Europe -- Politics and government.", - "Spain -- Government, 1516-1808." - ], - "titleDisplay": [ - "Th. Campanella De monarchia Hispanica." - ], - "uri": "b14284417", - "placeOfPublication": [ - "Amsterodami" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "De monarchia hispanica." - ], - "dimensions": [ - "11 cm. (16mo.)" - ] - }, - "sort": [ - 33.82753, - "b14284417" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14284417", - "_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:*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)" - ], - "identifierV2": [ - { - "value": "*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)" - ], - "shelfMark_sort": "a*KB 1641 (Campanella, T. Th. Campanella De monarchia Hispanica)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16973915", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Campanella%2C+Tommaso%2C+1568-1639.&CallNumber=*KB+1641+%28Campanella%2C+T.+Th.+Campanella+De+monarchia+Hispanica%29&Date=1641&Form=30&Genre=book+non-circ&ItemEdition=Editio+nouissima%2C+aucta+%26+emendata&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14284417&ItemISxN=i169739156&ItemPlace=Amsterodami&ItemPublisher=Apud+L.+Elzeuirium%2C+ao.+1641.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b142844172&Site=SASRB&Title=Th.+Campanella+De+monarchia+Hispanica.&Transaction.CustomFields.Custom651=Spain+Government%2C+1516-1808." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759429", - "_score": 30.925909, - "_source": { - "extent": [ - "190 pages ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-1993", - "African American baseball players", - "African American baseball players -- Fiction", - "African Americans", - "African Americans -- Fiction", - "Courage", - "Courage -- Fiction", - "Conduct of life", - "Conduct of life -- Fiction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G.P. Putnam's Sons" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1959 - ], - "title": [ - "Roy Campanella : man of courage" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc B-Campanella (Schoor, G. Roy Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1959" - ], - "creatorLiteral": [ - "Schoor, Gene" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1959 - ], - "idOclc": [ - "1127828985" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc B-Campanella (Schoor, G. Roy Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "11759429" - }, - { - "type": "nypl:Oclc", - "value": "1127828985" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1127828985" - } - ], - "updatedAt": 1711041025273, - "publicationStatement": [ - "New York : G.P. Putnam's Sons, [1959]" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Schoor, G. Roy Campanella)", - "urn:bnum:11759429", - "urn:oclc:1127828985", - "urn:identifier:(OCoLC)1127828985" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-1993.", - "African American baseball players -- Fiction.", - "African Americans -- Fiction.", - "Courage -- Fiction.", - "Conduct of life -- Fiction." - ], - "titleDisplay": [ - "Roy Campanella : man of courage / by Gene Schoor." - ], - "uri": "b11759429", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm" - ] - }, - "sort": [ - 30.925909, - "b11759429" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11759429", - "_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:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433019761133" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Schoor, G. Roy Campanella)", - "urn:barcode:33433019761133" - ], - "identifierV2": [ - { - "value": "Sc B-Campanella (Schoor, G. Roy Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433019761133", - "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 B-Campanella (Schoor, G. Roy Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc B-Campanella (Schoor, G. Roy Campanella)" - ], - "shelfMark_sort": "aSc B-Campanella (Schoor, G. Roy Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10422028" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759429", - "_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" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433110673104" - ], - "identifier": [ - "urn:shelfmark:D-11 8763", - "urn:barcode:33433110673104" - ], - "identifierV2": [ - { - "value": "D-11 8763", - "type": "bf:ShelfMark" - }, - { - "value": "33433110673104", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "D-11 8763" - ], - "requestable": [ - true - ], - "shelfMark": [ - "D-11 8763" - ], - "shelfMark_sort": "aD-11 008763", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10422029" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759457", - "_score": 30.925909, - "_source": { - "extent": [ - "306 p. illus., ports." - ], - "note": [ - { - "noteType": "Note", - "label": "Written with the assistance of Joe Reichler and Dave Camerer.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Little, Brown" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1959 - ], - "title": [ - "It's good to be alive." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc B-Campanella (Campanella, R. It's good to be alive)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1959" - ], - "creatorLiteral": [ - "Campanella, Roy, 1921-" - ], - "idLccn": [ - "59011889 /L" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1959 - ], - "idOclc": [ - "710695", - "NYPGR710695-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc B-Campanella (Campanella, R. It's good to be alive)" - }, - { - "type": "nypl:Bnumber", - "value": "11759457" - }, - { - "type": "nypl:Oclc", - "value": "710695" - }, - { - "type": "nypl:Oclc", - "value": "NYPGR710695-B" - }, - { - "type": "bf:Lccn", - "value": "59011889 /L" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)710695" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1769256" - } - ], - "updatedAt": 1711165942770, - "publicationStatement": [ - "Boston, Little, Brown [c1959]" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Campanella, R. It's good to be alive)", - "urn:bnum:11759457", - "urn:oclc:710695", - "urn:oclc:NYPGR710695-B", - "urn:lccn:59011889 /L", - "urn:identifier:(OCoLC)710695", - "urn:identifier:(WaOLN)nyp1769256" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-" - ], - "titleDisplay": [ - "It's good to be alive." - ], - "uri": "b11759457", - "lccClassification": [ - "GV865.C3 A3" - ], - "placeOfPublication": [ - "Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 30.925909, - "b11759457" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11759457", - "_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:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433061246330" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Campanella, R. It's good to be alive)", - "urn:barcode:33433061246330" - ], - "identifierV2": [ - { - "value": "Sc B-Campanella (Campanella, R. It's good to be alive)", - "type": "bf:ShelfMark" - }, - { - "value": "33433061246330", - "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 B-Campanella (Campanella, R. It's good to be alive)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc B-Campanella (Campanella, R. It's good to be alive)" - ], - "shelfMark_sort": "aSc B-Campanella (Campanella, R. It's good to be alive)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15030331" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759457", - "_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" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433110792367" - ], - "identifier": [ - "urn:shelfmark:D-12 1069", - "urn:barcode:33433110792367" - ], - "identifierV2": [ - { - "value": "D-12 1069", - "type": "bf:ShelfMark" - }, - { - "value": "33433110792367", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "D-12 1069" - ], - "requestable": [ - true - ], - "shelfMark": [ - "D-12 1069" - ], - "shelfMark_sort": "aD-12 001069", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10422065" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759074", - "_score": 29.775703, - "_source": { - "extent": [ - "viii, 184 p., illus., ports." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A. S. Barnes" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1952 - ], - "title": [ - "Roy Campanella." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc B-Campanella (Young, D. Roy Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1952" - ], - "creatorLiteral": [ - "Young, Dick." - ], - "idLccn": [ - "52006333" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Most valuable player series" - ], - "dateStartYear": [ - 1952 - ], - "idOclc": [ - "2978917", - "NYPGR2978917-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc B-Campanella (Young, D. Roy Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "11759074" - }, - { - "type": "nypl:Oclc", - "value": "2978917" - }, - { - "type": "nypl:Oclc", - "value": "NYPGR2978917-B" - }, - { - "type": "bf:Lccn", - "value": "52006333" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)2978917" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1768860" - } - ], - "updatedAt": 1711082111043, - "publicationStatement": [ - "New York, A. S. Barnes [c1952]" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Young, D. Roy Campanella)", - "urn:bnum:11759074", - "urn:oclc:2978917", - "urn:oclc:NYPGR2978917-B", - "urn:lccn:52006333", - "urn:identifier:(OCoLC)2978917", - "urn:identifier:(WaOLN)nyp1768860" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1952" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-" - ], - "titleDisplay": [ - "Roy Campanella." - ], - "uri": "b11759074", - "lccClassification": [ - "GV865.C3 Y6" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 29.775703, - "b11759074" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11759074", - "_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:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433019761158" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Young, D. Roy Campanella)", - "urn:barcode:33433019761158" - ], - "identifierV2": [ - { - "value": "Sc B-Campanella (Young, D. Roy Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433019761158", - "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 B-Campanella (Young, D. Roy Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc B-Campanella (Young, D. Roy Campanella)" - ], - "shelfMark_sort": "aSc B-Campanella (Young, D. Roy Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10421597" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11759074", - "_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" - ], - "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": [ - "33433104031749" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Young, D. Roy Campanella)", - "urn:barcode:33433104031749" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Young, D. Roy Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433104031749", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Campanella) (Young, D. Roy Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Young, D. Roy Campanella)" - ], - "shelfMark_sort": "aAN (Campanella) (Young, D. Roy Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10421598" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13400761", - "_score": 29.775703, - "_source": { - "extent": [ - "vii, 539 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [531]-532.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639", - "Philosophers", - "Philosophers -- Italy", - "Philosophers -- Italy -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "CEDAM" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Tommaso Campanella, filosofo della restaurazione cattolica" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "YBX (Campanella) (Napoli, G. di. Tommaso Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Di Napoli, Giovanni, 1910-" - ], - "idLccn": [ - "49026073" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Problemi d'oggi ; 2. ser., v. 10" - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "3837255" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "YBX (Campanella) (Napoli, G. di. Tommaso Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "13400761" - }, - { - "type": "nypl:Oclc", - "value": "3837255" - }, - { - "type": "bf:Lccn", - "value": "49026073" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3378796" - } - ], - "updatedAt": 1711377022300, - "publicationStatement": [ - "Padova : CEDAM, [1947]" - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Napoli, G. di. Tommaso Campanella)", - "urn:bnum:13400761", - "urn:oclc:3837255", - "urn:lccn:49026073", - "urn:identifier:(WaOLN)nyp3378796" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639.", - "Philosophers -- Italy -- Biography." - ], - "titleDisplay": [ - "Tommaso Campanella, filosofo della restaurazione cattolica / Giovanni di Napoli." - ], - "uri": "b13400761", - "lccClassification": [ - "B785.C24 N3" - ], - "placeOfPublication": [ - "Padova" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 29.775703, - "b13400761" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13400761", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433087534115" - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Napoli, G. di. Tommaso Campanella)", - "urn:barcode:33433087534115" - ], - "identifierV2": [ - { - "value": "YBX (Campanella) (Napoli, G. di. Tommaso Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433087534115", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "YBX (Campanella) (Napoli, G. di. Tommaso Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "YBX (Campanella) (Napoli, G. di. Tommaso Campanella)" - ], - "shelfMark_sort": "aYBX (Campanella) (Napoli, G. di. Tommaso Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16473499" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13400575", - "_score": 29.442429, - "_source": { - "extent": [ - "183 p. port., facsims." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Philosophy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "L. S. Olschki" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1951 - ], - "title": [ - "Opuscoli inediti;" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "YBX (Campanella) (Campanella, T. Opuscoli inediti)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1951" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "a 52005315" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Opuscoli filosofici; testi e documenti inedito o rari, 9" - ], - "contributorLiteral": [ - "Firpo, Luigi." - ], - "dateStartYear": [ - 1951 - ], - "idOclc": [ - "2409434" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "YBX (Campanella) (Campanella, T. Opuscoli inediti)" - }, - { - "type": "nypl:Bnumber", - "value": "13400575" - }, - { - "type": "nypl:Oclc", - "value": "2409434" - }, - { - "type": "bf:Lccn", - "value": "a 52005315" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3378610" - } - ], - "updatedAt": 1711450988909, - "publicationStatement": [ - "Firenze, L. S. Olschki, 1951." - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Campanella, T. Opuscoli inediti)", - "urn:bnum:13400575", - "urn:oclc:2409434", - "urn:lccn:a 52005315", - "urn:identifier:(WaOLN)nyp3378610" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1951" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Philosophy." - ], - "titleDisplay": [ - "Opuscoli inediti; a cura di Luigi Firpo." - ], - "uri": "b13400575", - "lccClassification": [ - "B785.C21 F5" - ], - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Risposte alle censure dell' \"Ateismo triunfato\" (1631).--Documenta ad Gallorum nationem.--Consultationes aphoristicae gerendae rei praesentis temporis cum Austriacis ac Italis ad hispanismi delectionem perficiendam (1635).--Compendium veritatis catholicae et falsitatis sectariorum de praedestinatione.--Censure al \"De praedestinationes\" (1636)" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 29.442429, - "b13400575" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13400575", - "_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": [ - "33433087534099" - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Campanella, T. Opuscoli inediti)", - "urn:barcode:33433087534099" - ], - "identifierV2": [ - { - "value": "YBX (Campanella) (Campanella, T. Opuscoli inediti)", - "type": "bf:ShelfMark" - }, - { - "value": "33433087534099", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "YBX (Campanella) (Campanella, T. Opuscoli inediti)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "YBX (Campanella) (Campanella, T. Opuscoli inediti)" - ], - "shelfMark_sort": "aYBX (Campanella) (Campanella, T. Opuscoli inediti)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16473347" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11757684", - "_score": 28.291502, - "_source": { - "extent": [ - "192 p. illus., ports." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Messner" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1958 - ], - "title": [ - "The Roy Campanella story." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc B-Campanella (Shapiro, M. Roy Campanella story)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1958" - ], - "creatorLiteral": [ - "Shapiro, Milton J." - ], - "idLccn": [ - "58010932 /L" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1958 - ], - "idOclc": [ - "1368232", - "NYPGR1368232-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc B-Campanella (Shapiro, M. Roy Campanella story)" - }, - { - "type": "nypl:Bnumber", - "value": "11757684" - }, - { - "type": "nypl:Oclc", - "value": "1368232" - }, - { - "type": "nypl:Oclc", - "value": "NYPGR1368232-B" - }, - { - "type": "bf:Lccn", - "value": "58010932 /L" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1368232" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1767421" - } - ], - "updatedAt": 1711173419928, - "publicationStatement": [ - "New York, Messner [c1958]" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Shapiro, M. Roy Campanella story)", - "urn:bnum:11757684", - "urn:oclc:1368232", - "urn:oclc:NYPGR1368232-B", - "urn:lccn:58010932 /L", - "urn:identifier:(OCoLC)1368232", - "urn:identifier:(WaOLN)nyp1767421" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1958" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-" - ], - "titleDisplay": [ - "The Roy Campanella story." - ], - "uri": "b11757684", - "lccClassification": [ - "GV865.C3 S45" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 28.291502, - "b11757684" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11757684", - "_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:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433019761141" - ], - "identifier": [ - "urn:shelfmark:Sc B-Campanella (Shapiro, M. Roy Campanella story)", - "urn:barcode:33433019761141" - ], - "identifierV2": [ - { - "value": "Sc B-Campanella (Shapiro, M. Roy Campanella story)", - "type": "bf:ShelfMark" - }, - { - "value": "33433019761141", - "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 B-Campanella (Shapiro, M. Roy Campanella story)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc B-Campanella (Shapiro, M. Roy Campanella story)" - ], - "shelfMark_sort": "aSc B-Campanella (Shapiro, M. Roy Campanella story)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10421098" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b11757684", - "_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" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433110682295" - ], - "identifier": [ - "urn:shelfmark:D-11 6192", - "urn:barcode:33433110682295" - ], - "identifierV2": [ - { - "value": "D-11 6192", - "type": "bf:ShelfMark" - }, - { - "value": "33433110682295", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "D-11 6192" - ], - "requestable": [ - true - ], - "shelfMark": [ - "D-11 6192" - ], - "shelfMark_sort": "aD-11 006192", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10421099" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12461928", - "_score": 27.990652, - "_source": { - "extent": [ - "xix, 387 p. front. (port.)" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Giuseppe Maria, 1814-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "R. Bentley and Son" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1874 - ], - "title": [ - "My life and what I learnt in it: an autobiography" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Campanella) (Campanella, G. M. My life and what I leant in it)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1874" - ], - "creatorLiteral": [ - "Campanella, Giuseppe Maria, 1814-" - ], - "idLccn": [ - "09029742" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1874 - ], - "idOclc": [ - "5718206" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Campanella, G. M. My life and what I leant in it)" - }, - { - "type": "nypl:Bnumber", - "value": "12461928" - }, - { - "type": "nypl:Oclc", - "value": "5718206" - }, - { - "type": "bf:Lccn", - "value": "09029742" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2445809" - } - ], - "updatedAt": 1711407433540, - "publicationStatement": [ - "London, R. Bentley and Son, 1874." - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Campanella, G. M. My life and what I leant in it)", - "urn:bnum:12461928", - "urn:oclc:5718206", - "urn:lccn:09029742", - "urn:identifier:(WaOLN)nyp2445809" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1874" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Giuseppe Maria, 1814-" - ], - "titleDisplay": [ - "My life and what I learnt in it: an autobiography, by Giuseppe Maria Campanella." - ], - "uri": "b12461928", - "lccClassification": [ - "DG552.8.C17 A3" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 27.990652, - "b12461928" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12461928", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433104031715" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Campanella, G. M. My life and what I leant in it)", - "urn:barcode:33433104031715" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Campanella, G. M. My life and what I leant in it)", - "type": "bf:ShelfMark" - }, - { - "value": "33433104031715", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Campanella) (Campanella, G. M. My life and what I leant in it)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Campanella, G. M. My life and what I leant in it)" - ], - "shelfMark_sort": "aAN (Campanella) (Campanella, G. M. My life and what I leant in it)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16042972" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13400577", - "_score": 27.775703, - "_source": { - "extent": [ - "222 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Fratelli Bocca" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1953 - ], - "title": [ - "Tommaso Campanella; la crisi della coscienza di sè." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1953" - ], - "creatorLiteral": [ - "Jacobelli Isoldi, Angela Maria." - ], - "idLccn": [ - "a 54007360 //r61" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Piccola biblioteca di scienze moderne, n. 519" - ], - "dateStartYear": [ - 1953 - ], - "idOclc": [ - "11219742" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "13400577" - }, - { - "type": "nypl:Oclc", - "value": "11219742" - }, - { - "type": "bf:Lccn", - "value": "a 54007360 //r61" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3378612" - } - ], - "updatedAt": 1711316423548, - "publicationStatement": [ - "Milano, Fratelli Bocca [1953]" - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)", - "urn:bnum:13400577", - "urn:oclc:11219742", - "urn:lccn:a 54007360 //r61", - "urn:identifier:(WaOLN)nyp3378612" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Tommaso Campanella; la crisi della coscienza di sè." - ], - "uri": "b13400577", - "placeOfPublication": [ - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 27.775703, - "b13400577" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13400577", - "_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": [ - "33433087534107" - ], - "identifier": [ - "urn:shelfmark:YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)", - "urn:barcode:33433087534107" - ], - "identifierV2": [ - { - "value": "YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433087534107", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "YBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)" - ], - "shelfMark_sort": "aYBX (Campanella) (Jacobelli Isoldi, A. M. Tommaso Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16473349" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b11487609", - "_score": 27.554531, - "_source": { - "extent": [ - "<8> photoprints : silver gelatin, b&w ;", - "<4> photoprints : silver gelatin, b&w ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title devised by cataloger.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Photographs have captions; some photographs contain written descriptive information; some are cropped; some have airbrush marks.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Photographers include Cecil Layne, M. Associates, Wide World Photos and others.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Forms part of the Portrait Collection.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-1993", - "Black, Joe", - "Newcombe, Don", - "Campanella, David", - "Brooklyn Dodgers (Baseball team)", - "African American baseball players", - "Catchers (Baseball)", - "Catchers (Baseball) -- United States", - "African American athletes", - "African American executives", - "Professional sports", - "Professional sports -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "Portraits of baseball catcher and business executive Roy Campanella ranging from the 1950s to the 1980s. Collection includes half, three quarter and full-length views, some promotional, of Campanella in his Dodgers uniform; with baseball colleagues Don Newcombe, Joe Black. Campanella is in group portraits, taken both before and after he was confined to a wheelchair, attending and being honored at a variety of functions, including one in an unidentified stadium, possibly with the all-stars from the Brooklyn Dodgers. Included also is a photo of Campanella's son, David, at age 15, and a group shot of Campanella shooting pool with teenage boys." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "dateEndString": [ - "1989" - ], - "title": [ - "Roy Campanella portrait collection" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc Photo Campanella, Roy" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Layne, Cecil.", - "Brooklyn Dodgers (Baseball team)", - "United Press International.", - "M. Associates (New York, N.Y.)", - "Wide World Photos.", - "Los Angeles Dodgers (Baseball team)", - "Layne's Studio (New York, N.Y.)" - ], - "dateStartYear": [ - 1950 - ], - "donor": [ - "Schomburg NEH Automated Access to Special Collections Project." - ], - "idOclc": [ - "NYPG085000790-F" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Photo Campanella, Roy" - }, - { - "type": "nypl:Bnumber", - "value": "11487609" - }, - { - "type": "nypl:Oclc", - "value": "NYPG085000790-F" - }, - { - "type": "bf:Identifier", - "value": "(NN-Sc)08500790" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1495892" - } - ], - "dateEndYear": [ - 1989 - ], - "updatedAt": 1712854298116, - "publicationStatement": [ - "<1950?-1989?>" - ], - "genreForm": [ - "Group portraits – 1950-1989.", - "Portrait photographs – 1950-1989.", - "Silver gelatin photoprints – 1950-1989." - ], - "identifier": [ - "urn:shelfmark:Sc Photo Campanella, Roy", - "urn:bnum:11487609", - "urn:oclc:NYPG085000790-F", - "urn:identifier:(NN-Sc)08500790", - "urn:identifier:(WaOLN)nyp1495892" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:img", - "label": "Still image" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-1993.", - "Black, Joe.", - "Newcombe, Don.", - "Campanella, David.", - "Brooklyn Dodgers (Baseball team)", - "African American baseball players.", - "Catchers (Baseball) -- United States.", - "African American athletes.", - "African American executives.", - "Professional sports -- United States." - ], - "titleDisplay": [ - "Roy Campanella portrait collection [graphic]." - ], - "uri": "b11487609", - "issuance": [ - { - "id": "urn:biblevel:d", - "label": "subunit" - } - ], - "dimensions": [ - "26 x 21 cm. or smaller.", - "21 x 26 cm. or smaller." - ] - }, - "sort": [ - 27.554531, - "b11487609" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b11487609", - "_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:15", - "label": "flat graphic" - } - ], - "catalogItemType_packed": [ - "catalogItemType:15||flat graphic" - ], - "formatLiteral": [ - "Still image" - ], - "holdingLocation": [ - { - "id": "loc:scee2", - "label": "Schomburg Center - Photographs & Prints" - } - ], - "holdingLocation_packed": [ - "loc:scee2||Schomburg Center - Photographs & Prints" - ], - "idBarcode": [ - "33433077464786" - ], - "identifier": [ - "urn:shelfmark:Sc Photo Campanella, Roy", - "urn:barcode:33433077464786" - ], - "identifierV2": [ - { - "value": "Sc Photo Campanella, Roy", - "type": "bf:ShelfMark" - }, - { - "value": "33433077464786", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1118", - "label": "Schomburg Center for Research in Black Culture, Photographs and Prints Division" - } - ], - "owner_packed": [ - "orgs:1118||Schomburg Center for Research in Black Culture, Photographs and Prints Division" - ], - "physicalLocation": [ - "Sc Photo Campanella, Roy" - ], - "requestable": [ - false - ], - "shelfMark": [ - "Sc Photo Campanella, Roy" - ], - "shelfMark_sort": "aSc Photo Campanella, Roy", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16734449", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Photo+Campanella%2C+Roy&Date=1950&Form=30&Genre=flat+graphic&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11487609&ItemISxN=i167344493&ItemNumber=33433077464786&ItemPublisher=%3C1950%3F-1989%3F%3E&Location=Schomburg+Center+Photographs+and+Prints&ReferenceNumber=b114876095&Site=SCHPP&Title=Roy+Campanella+portrait+collection" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16874840", - "_score": 27.554531, - "_source": { - "extent": [ - "1 folder" - ], - "note": [ - { - "noteType": "Issued By", - "label": "Compiled by: Rodgers & Hammerstein Archives of Recorded Sound, The New York Public Library.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Michele" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Michele" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*L-CLP (Campanella, Michele)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Rodgers and Hammerstein Archives of Recorded Sound." - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*L-CLP (Campanella, Michele)" - }, - { - "type": "nypl:Bnumber", - "value": "16874840" - } - ], - "updatedAt": 1711665849598, - "genreForm": [ - "Clippings.", - "Clippings (Books, newspapers, etc.)" - ], - "identifier": [ - "urn:shelfmark:*L-CLP (Campanella, Michele)", - "urn:bnum:16874840" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Michele." - ], - "titleDisplay": [ - "Campanella, Michele : clippings." - ], - "uri": "b16874840", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Michele Campanella" - ] - }, - "sort": [ - 27.554531, - "b16874840" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16874840", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:22", - "label": "clipping files" - } - ], - "catalogItemType_packed": [ - "catalogItemType:22||clipping files" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pah32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:pah32||Performing Arts Research Collections - Recorded Sound" - ], - "idBarcode": [ - "33433079167270" - ], - "identifier": [ - "urn:shelfmark:*L-CLP (Campanella, Michele)", - "urn:barcode:33433079167270" - ], - "identifierV2": [ - { - "value": "*L-CLP (Campanella, Michele)", - "type": "bf:ShelfMark" - }, - { - "value": "33433079167270", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*L-CLP (Campanella, Michele)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*L-CLP (Campanella, Michele)" - ], - "shelfMark_sort": "a*L-CLP (Campanella, Michele)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17728281", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*L-CLP+%28Campanella%2C+Michele%29&Date=++++&Form=30&Genre=clipping+files&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16874840&ItemISxN=i177282812&ItemNumber=33433079167270&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b16874840x&Site=LPAMR&Title=Campanella%2C+Michele+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21186674", - "_score": 27.554531, - "_source": { - "extent": [ - "1 folder. " - ], - "note": [ - { - "noteType": "Note", - "label": "Clippings about the sound designer Philip Campanella.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Folder contains obituary, date of death is May 5, 2005.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Philip" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Philip" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-CLP (Campanella, Philip)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "In honor of George Freedley" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-CLP (Campanella, Philip)" - }, - { - "type": "nypl:Bnumber", - "value": "21186674" - } - ], - "updatedAt": 1711661287068, - "genreForm": [ - "Clippings." - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Philip)", - "urn:bnum:21186674" - ], - "numCheckinCardItems": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Philip." - ], - "titleDisplay": [ - "Campanella, Philip : clippings." - ], - "uri": "b21186674", - "issuance": [ - { - "id": "urn:biblevel:2" - } - ] - }, - "sort": [ - 27.554531, - "b21186674" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21186674", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433119061384" - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Philip)", - "urn:barcode:33433119061384" - ], - "identifierV2": [ - { - "value": "*T-CLP (Campanella, Philip)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119061384", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*T-CLP (Campanella, Philip)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-CLP (Campanella, Philip)" - ], - "shelfMark_sort": "a*T-CLP (Campanella, Philip)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34926859", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-CLP+%28Campanella%2C+Philip%29&Date=++++&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21186674&ItemISxN=i349268599&ItemNumber=33433119061384&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b21186674x&Site=LPATH&Title=Campanella%2C+Philip+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b22159502", - "_score": 27.254114, - "_source": { - "extent": [ - "1 v. (unpaged) : col. ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-", - "Baseball players", - "Baseball players -- United States", - "Baseball players -- United States -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Viking" - ], - "description": [ - "Authors tells the story of a man who was so much more than a sports hero." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2006 - ], - "title": [ - "Campy : the Roy Campanella story" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "J B CAMPANELLA A" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2006" - ], - "creatorLiteral": [ - "Adler, David A." - ], - "idLccn": [ - "2005023314" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "James, Gordon C." - ], - "dateStartYear": [ - 2006 - ], - "idOclc": [ - "61261304" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "J B CAMPANELLA A" - }, - { - "type": "nypl:Bnumber", - "value": "22159502" - }, - { - "type": "bf:Isbn", - "value": "9780670060412 (hardcover : alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "0670060410 (hardcover : alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "9781428732872 (BWI bdg.)" - }, - { - "type": "bf:Isbn", - "value": "142873287X (BWI bdg.)" - }, - { - "type": "nypl:Oclc", - "value": "61261304" - }, - { - "type": "bf:Lccn", - "value": "2005023314" - } - ], - "updatedAt": 1711240597775, - "publicationStatement": [ - "New York : Viking, 2006." - ], - "idIsbn": [ - "9780670060412 (hardcover : alk. paper)", - "0670060410 (hardcover : alk. paper)", - "9781428732872 (BWI bdg.)", - "142873287X (BWI bdg.)" - ], - "identifier": [ - "urn:shelfmark:J B CAMPANELLA A", - "urn:bnum:22159502", - "urn:isbn:9780670060412 (hardcover : alk. paper)", - "urn:isbn:0670060410 (hardcover : alk. paper)", - "urn:isbn:9781428732872 (BWI bdg.)", - "urn:isbn:142873287X (BWI bdg.)", - "urn:oclc:61261304", - "urn:lccn:2005023314" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2006" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-", - "Baseball players -- United States -- Biography." - ], - "titleDisplay": [ - "Campy : the Roy Campanella story / by David A. Adler ; illustrated b Gordon C. James." - ], - "uri": "b22159502", - "lccClassification": [ - "GV865.C3 A35 2006" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Publisher description", - "url": "http://www.loc.gov/catdir/enhancements/fy0719/2005023314-d.html" - }, - { - "label": "Contributor biographical information", - "url": "http://www.loc.gov/catdir/enhancements/fy0719/2005023314-b.html" - } - ], - "titleAlt": [ - "Roy Campanella story" - ], - "dimensions": [ - "27 cm." - ], - "idIsbn_clean": [ - "9780670060412", - "0670060410", - "9781428732872", - "142873287X" - ] - }, - "sort": [ - 27.254114, - "b22159502" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22159502", - "_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": [ - "33333219831399" - ], - "identifier": [ - "urn:shelfmark:J B Campanella A", - "urn:barcode:33333219831399" - ], - "identifierV2": [ - { - "value": "J B Campanella A", - "type": "bf:ShelfMark" - }, - { - "value": "33333219831399", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "J B Campanella A" - ], - "recapCustomerCode": [ - "NW" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J B Campanella A" - ], - "shelfMark_sort": "aJ B Campanella A", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37874838" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12423563", - "_score": 26.961395, - "_source": { - "extent": [ - "viii, 255 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Pubblicazione promossa dalla Reale accademia delle scienze di Torino nel III centenario della morte di T. Campanella.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Cronologia della vita e delle opere di Tommaso Campanella,\" p. 22-30.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "\"Bibliografia minima,\" p. 20-21.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639", - "Campanella, Tommaso, 1568-1639 -- Bibliography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tipografia V. Bona" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1940 - ], - "title": [ - "Bibliografia degli scritti di Tommaso Campanella." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1940" - ], - "creatorLiteral": [ - "Firpo, Luigi." - ], - "idLccn": [ - "43021591" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Reale accademia delle scienze di Torino." - ], - "dateStartYear": [ - 1940 - ], - "idOclc": [ - "6559056" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "12423563" - }, - { - "type": "nypl:Oclc", - "value": "6559056" - }, - { - "type": "bf:Lccn", - "value": "43021591" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2408044" - } - ], - "updatedAt": 1711613432179, - "publicationStatement": [ - "Torino, Tipografia V. Bona, 1940." - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)", - "urn:bnum:12423563", - "urn:oclc:6559056", - "urn:lccn:43021591", - "urn:identifier:(WaOLN)nyp2408044" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1940" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639 -- Bibliography." - ], - "titleDisplay": [ - "Bibliografia degli scritti di Tommaso Campanella." - ], - "uri": "b12423563", - "placeOfPublication": [ - "Torino" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 26.961395, - "b12423563" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12423563", - "_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:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "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": [ - "33433081514691" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)", - "urn:barcode:33433081514691" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081514691", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)" - ], - "shelfMark_sort": "aAN (Campanella) (Firpo, L. Bibliografia degli scritti di Tommaso Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16020284" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13051330", - "_score": 26.541645, - "_source": { - "extent": [ - "409 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographic references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Reale Accademia d'Italia" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1944 - ], - "title": [ - "Poetica; testo italiano inedito e rifacimento latino, a cura di Luigi Firpo." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NAEC (Campanella, T. Poetica)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1944" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "a 48005906" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Reale Accademia d'Italia. Studi e documenti, 13" - ], - "contributorLiteral": [ - "Firpo, Luigi." - ], - "dateStartYear": [ - 1944 - ], - "idOclc": [ - "6214682" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NAEC (Campanella, T. Poetica)" - }, - { - "type": "nypl:Bnumber", - "value": "13051330" - }, - { - "type": "nypl:Oclc", - "value": "6214682" - }, - { - "type": "bf:Lccn", - "value": "a 48005906" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3029964" - } - ], - "uniformTitle": [ - "Studi e documenti (Reale Accademia d'Italia) ; 13." - ], - "updatedAt": 1711434955332, - "publicationStatement": [ - "Roma, Reale Accademia d'Italia, 1944." - ], - "identifier": [ - "urn:shelfmark:NAEC (Campanella, T. Poetica)", - "urn:bnum:13051330", - "urn:oclc:6214682", - "urn:lccn:a 48005906", - "urn:identifier:(WaOLN)nyp3029964" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1944" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Poetry." - ], - "titleDisplay": [ - "Poetica; testo italiano inedito e rifacimento latino, a cura di Luigi Firpo." - ], - "uri": "b13051330", - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 26.541645, - "b13051330" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13051330", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433102471178" - ], - "identifier": [ - "urn:shelfmark:NAEC (Campanella, T. Poetica)", - "urn:barcode:33433102471178" - ], - "identifierV2": [ - { - "value": "NAEC (Campanella, T. Poetica)", - "type": "bf:ShelfMark" - }, - { - "value": "33433102471178", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NAEC (Campanella, T. Poetica)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NAEC (Campanella, T. Poetica)" - ], - "shelfMark_sort": "aNAEC (Campanella, T. Poetica)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16217730" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13245604", - "_score": 26.541645, - "_source": { - "extent": [ - "2 v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Italian literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cugini Pomba e comp." - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1854 - ], - "title": [ - "Opere di Tommaso Campanella scelte, ordinate ed annotate da Alessandro d'Ancona, e precedute da un discorso del medesimo sulla vita e le dottrine dell'autore ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NNCC (Campanella, T. Opere)" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1854" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 2 - ], - "seriesStatement": [ - "Nuova biblioteca popolare. Classe iv. Politica" - ], - "contributorLiteral": [ - "D'Ancona, Alessandro, 1835-1914." - ], - "dateStartYear": [ - 1854 - ], - "idOclc": [ - "23501597" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NNCC (Campanella, T. Opere)" - }, - { - "type": "nypl:Bnumber", - "value": "13245604" - }, - { - "type": "nypl:Oclc", - "value": "23501597" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3223309" - } - ], - "updatedAt": 1711010882440, - "publicationStatement": [ - "Torino, Cugini Pomba e comp., 1854." - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Opere)", - "urn:bnum:13245604", - "urn:oclc:23501597", - "urn:identifier:(WaOLN)nyp3223309" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1854" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Italian literature." - ], - "titleDisplay": [ - "Opere di Tommaso Campanella scelte, ordinate ed annotate da Alessandro d'Ancona, e precedute da un discorso del medesimo sulla vita e le dottrine dell'autore ..." - ], - "uri": "b13245604", - "electronicResources": [ - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433075848808" - }, - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433075848816" - } - ], - "placeOfPublication": [ - "Torino" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Della vita e delle dottrine di Tommaso Campanella; discorso di A. d'Ancona. Documenti. Poesie filosofiche di T. Campanella col commento di T. Adami, pubblicate per la prima volta in Italia da G. G. Orelli ... 2. ed., con molte correzioni per cura di A. d'Ancona.--v. 2. Aforismi politici di Frȧ T. Campanella tratti dal Ms. 6 (Bouhier della Bibl. r. di Parigi)" - ], - "dimensions": [ - "18 1/2cm." - ] - }, - "sort": [ - 26.541645, - "b13245604" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13245604", - "_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": [ - "33433075848816" - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Opere) v. 2", - "urn:barcode:33433075848816" - ], - "identifierV2": [ - { - "value": "NNCC (Campanella, T. Opere) v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433075848816", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NNCC (Campanella, T. Opere)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNCC (Campanella, T. Opere) v. 2" - ], - "shelfMark_sort": "aNNCC (Campanella, T. Opere) v. 000002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "uri": "i16823742" - }, - "sort": [ - " 2-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13245604", - "_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: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": [ - "33433075848808" - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Opere) v. 1", - "urn:barcode:33433075848808" - ], - "identifierV2": [ - { - "value": "NNCC (Campanella, T. Opere) v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433075848808", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "NNCC (Campanella, T. Opere)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNCC (Campanella, T. Opere) v. 1" - ], - "shelfMark_sort": "aNNCC (Campanella, T. Opere) v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i16823741" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13249623", - "_score": 26.541645, - "_source": { - "extent": [ - "462 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliographical references included in \"Nota\" and \"Annotazioni\" (p. [421]-448).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Italian letters" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Latera" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1927 - ], - "title": [ - "Lettere, a cura di Vincenzo Spampanato." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NND (Campanella, T. Lettere)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1927" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "a 28000091 //r" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Scrittori d'Italia [103]" - ], - "contributorLiteral": [ - "Spampanato, Vincenzo, 1873-" - ], - "dateStartYear": [ - 1927 - ], - "idOclc": [ - "2132012" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NND (Campanella, T. Lettere)" - }, - { - "type": "nypl:Bnumber", - "value": "13249623" - }, - { - "type": "nypl:Oclc", - "value": "2132012" - }, - { - "type": "bf:Lccn", - "value": "a 28000091 //r" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0438217" - } - ], - "updatedAt": 1711340498062, - "publicationStatement": [ - "Bari, G. Latera, 1927." - ], - "identifier": [ - "urn:shelfmark:NND (Campanella, T. Lettere)", - "urn:bnum:13249623", - "urn:oclc:2132012", - "urn:lccn:a 28000091 //r", - "urn:identifier:(WaOLN)nyp0438217" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1927" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Italian letters." - ], - "titleDisplay": [ - "Lettere, a cura di Vincenzo Spampanato." - ], - "uri": "b13249623", - "lccClassification": [ - "PQ4617.C23 A83" - ], - "placeOfPublication": [ - "Bari" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 26.541645, - "b13249623" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13249623", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433100305451" - ], - "identifier": [ - "urn:shelfmark:NND (Campanella, T. Lettere)", - "urn:barcode:33433100305451" - ], - "identifierV2": [ - { - "value": "NND (Campanella, T. Lettere)", - "type": "bf:ShelfMark" - }, - { - "value": "33433100305451", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NND (Campanella, T. Lettere)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NND (Campanella, T. Lettere)" - ], - "shelfMark_sort": "aNND (Campanella, T. Lettere)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16373843" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13251450", - "_score": 26.541645, - "_source": { - "extent": [ - "5 p.l., [7]-336 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliographical footnotes, in \"Nota\" p. [259]-305.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Laterza & figli" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1938 - ], - "title": [ - "Poesie." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NNN (Campanella, T. Poesie)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1938" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "41005907 /R" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Scrittori d'Italia" - ], - "contributorLiteral": [ - "Vinciguerra, Mario, 1887-" - ], - "dateStartYear": [ - 1938 - ], - "idOclc": [ - "6633883" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NNN (Campanella, T. Poesie)" - }, - { - "type": "nypl:Bnumber", - "value": "13251450" - }, - { - "type": "nypl:Oclc", - "value": "6633883" - }, - { - "type": "bf:Lccn", - "value": "41005907 /R" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3229111" - } - ], - "updatedAt": 1711387719971, - "publicationStatement": [ - "Bari, G. Laterza & figli, 1938." - ], - "identifier": [ - "urn:shelfmark:NNN (Campanella, T. Poesie)", - "urn:bnum:13251450", - "urn:oclc:6633883", - "urn:lccn:41005907 /R", - "urn:identifier:(WaOLN)nyp3229111" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1938" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Poesie. a cura di Mario Vinciguerra." - ], - "uri": "b13251450", - "lccClassification": [ - "PQ4617 .C23 1938" - ], - "placeOfPublication": [ - "Bari" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 26.541645, - "b13251450" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13251450", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433102731795" - ], - "identifier": [ - "urn:shelfmark:NNN (Campanella, T. Poesie)", - "urn:barcode:33433102731795" - ], - "identifierV2": [ - { - "value": "NNN (Campanella, T. Poesie)", - "type": "bf:ShelfMark" - }, - { - "value": "33433102731795", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NNN (Campanella, T. Poesie)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNN (Campanella, T. Poesie)" - ], - "shelfMark_sort": "aNNN (Campanella, T. Poesie)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16375295" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16110698", - "_score": 26.541645, - "_source": { - "extent": [ - "442 [1] p. : ill., facsims., ports. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 441-[443]).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Izd-vo ︠T︡SK VLKSM \"Moloda︠i︡a gvardi︠i︡a\"" - ], - "language": [ - { - "id": "lang:rus", - "label": "Russian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1959 - ], - "title": [ - "Kampanella" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*QEB (Campanella) (Shtekli, A. Kampanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1959" - ], - "creatorLiteral": [ - "Shtekli, Alʹfred Ėngelʹbertovich." - ], - "idLccn": [ - "2002441230" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Zhiznʹ zamechatelʹnykh l︠i︡udeĭ : seri︠i︡a biografiĭ ; vyp. 11 (277)" - ], - "dateStartYear": [ - 1959 - ], - "donor": [ - "Slavic Recon Project 2005." - ], - "idOclc": [ - "50206264" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QEB (Campanella) (Shtekli, A. Kampanella)" - }, - { - "type": "nypl:Bnumber", - "value": "16110698" - }, - { - "type": "nypl:Oclc", - "value": "50206264" - }, - { - "type": "bf:Lccn", - "value": "2002441230" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R190000049" - } - ], - "uniformTitle": [ - "Zhiznʹ zamechatelʹnykh l︠i︡udeĭ (Moloda︠i︡a gvardi︠i︡a (Firm)) ; 1959, vyp. 11." - ], - "updatedAt": 1711351465593, - "publicationStatement": [ - "Moskva : Izd-vo ︠T︡SK VLKSM \"Moloda︠i︡a gvardi︠i︡a\", 1959." - ], - "identifier": [ - "urn:shelfmark:*QEB (Campanella) (Shtekli, A. Kampanella)", - "urn:bnum:16110698", - "urn:oclc:50206264", - "urn:lccn:2002441230", - "urn:identifier:(WaOLN)R190000049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Kampanella / A. Shtekli." - ], - "uri": "b16110698", - "lccClassification": [ - "B785.C24 S48 1959" - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - 26.541645, - "b16110698" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16110698", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433074320353" - ], - "identifier": [ - "urn:shelfmark:*QEB (Campanella) (Shtekli, A. Kampanella)", - "urn:barcode:33433074320353" - ], - "identifierV2": [ - { - "value": "*QEB (Campanella) (Shtekli, A. Kampanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433074320353", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*QEB (Campanella) (Shtekli, A. Kampanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*QEB (Campanella) (Shtekli, A. Kampanella)" - ], - "shelfMark_sort": "a*QEB (Campanella) (Shtekli, A. Kampanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17201746" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21186670", - "_score": 26.541645, - "_source": { - "extent": [ - "1 folder. " - ], - "note": [ - { - "noteType": "Note", - "label": "Clippings about actor Frank Campanella.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Frank, 1919-2006" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Frank" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-CLP (Campanella, Frank)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "In honor of George Freedley" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-CLP (Campanella, Frank)" - }, - { - "type": "nypl:Bnumber", - "value": "21186670" - } - ], - "updatedAt": 1711659597805, - "genreForm": [ - "Clippings." - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Frank)", - "urn:bnum:21186670" - ], - "numCheckinCardItems": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Frank, 1919-2006." - ], - "titleDisplay": [ - "Campanella, Frank : clippings." - ], - "uri": "b21186670", - "issuance": [ - { - "id": "urn:biblevel:2" - } - ] - }, - "sort": [ - 26.541645, - "b21186670" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21186670", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433119061350" - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Frank)", - "urn:barcode:33433119061350" - ], - "identifierV2": [ - { - "value": "*T-CLP (Campanella, Frank)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119061350", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*T-CLP (Campanella, Frank)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-CLP (Campanella, Frank)" - ], - "shelfMark_sort": "a*T-CLP (Campanella, Frank)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34926848", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-CLP+%28Campanella%2C+Frank%29&Date=++++&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21186670&ItemISxN=i349268484&ItemNumber=33433119061350&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b211866702&Site=LPATH&Title=Campanella%2C+Frank+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21186673", - "_score": 26.541645, - "_source": { - "extent": [ - "1 folder. " - ], - "note": [ - { - "noteType": "Note", - "label": "Clippings about actor Joseph Campanella.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Joseph" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Joseph" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-CLP (Campanella, Joseph)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "In honor of George Freedley" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-CLP (Campanella, Joseph)" - }, - { - "type": "nypl:Bnumber", - "value": "21186673" - } - ], - "updatedAt": 1711656838984, - "genreForm": [ - "Clippings." - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Joseph)", - "urn:bnum:21186673" - ], - "numCheckinCardItems": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Joseph." - ], - "titleDisplay": [ - "Campanella, Joseph : clippings." - ], - "uri": "b21186673", - "issuance": [ - { - "id": "urn:biblevel:2" - } - ] - }, - "sort": [ - 26.541645, - "b21186673" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21186673", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433119061368" - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Joseph)", - "urn:barcode:33433119061368" - ], - "identifierV2": [ - { - "value": "*T-CLP (Campanella, Joseph)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119061368", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*T-CLP (Campanella, Joseph)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-CLP (Campanella, Joseph)" - ], - "shelfMark_sort": "a*T-CLP (Campanella, Joseph)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34926853", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-CLP+%28Campanella%2C+Joseph%29&Date=++++&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21186673&ItemISxN=i349268538&ItemNumber=33433119061368&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b211866738&Site=LPATH&Title=Campanella%2C+Joseph+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21186676", - "_score": 26.541645, - "_source": { - "extent": [ - "1 folder. " - ], - "note": [ - { - "noteType": "Note", - "label": "Clippings about baseball player and television broadcaster Roy Campanella.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1921-1993" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Roy" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-CLP (Campanella, Roy)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "In honor of George Freedley" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-CLP (Campanella, Roy)" - }, - { - "type": "nypl:Bnumber", - "value": "21186676" - } - ], - "updatedAt": 1711659597805, - "genreForm": [ - "Clippings." - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Roy)", - "urn:bnum:21186676" - ], - "numCheckinCardItems": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1921-1993." - ], - "titleDisplay": [ - "Campanella, Roy : clippings." - ], - "uri": "b21186676", - "issuance": [ - { - "id": "urn:biblevel:2" - } - ] - }, - "sort": [ - 26.541645, - "b21186676" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21186676", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433119061392" - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Roy)", - "urn:barcode:33433119061392" - ], - "identifierV2": [ - { - "value": "*T-CLP (Campanella, Roy)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119061392", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*T-CLP (Campanella, Roy)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-CLP (Campanella, Roy)" - ], - "shelfMark_sort": "a*T-CLP (Campanella, Roy)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34926883", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-CLP+%28Campanella%2C+Roy%29&Date=++++&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21186676&ItemISxN=i349268836&ItemNumber=33433119061392&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b211866763&Site=LPATH&Title=Campanella%2C+Roy+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14421837", - "_score": 25.762568, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "7 p. l., 232 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Reissue of the 1st ed., 1654, with a new t.-p. and the addition of Prynne's preface, 3 l., dated from \"Lincolnes Inne, Decemb. 16, 1659.\"", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Sabin", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "History, Modern, 17th cent", - "Spain", - "Spain -- Politics and government", - "Spain -- Politics and government -- 1516-1700", - "Great Britain", - "Great Britain -- Politics and government", - "Great Britain -- Politics and government -- 1603-1714", - "Great Britain -- Foreign relations", - "Great Britain -- Foreign relations -- Spain", - "Spain -- Foreign relations", - "Spain -- Foreign relations -- Great Britain", - "Spain -- Govt., 1516-1808" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed for P. Stephens" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1659 - ], - "dateEndString": [ - "1660" - ], - "title": [ - "Thomas Campanella an Italian friar and second Machiavel. His advice to the king of Spain for attaining the universal monarchy of the world. Particularly concerning England, Scotland and Ireland, how to raise division between king and Parliament, to alter the government from a kingdome to a commonwealth. Thereby embroiling England in civil war to divert the English from disturbing the Spaniard in bringing the Indian treasure into Spain. Also for reducing Holland by procuring war betwixt England, Holland, and other sea-faring countries, affirming as most certain, that if the king of Spain become master of England and the Low countries, he will quickly be sole monarch of all Europe, and the greatest part of the new world." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1659" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "02013727" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Chilmead, Edmund, 1610-1654.", - "Prynne, William, 1600-1669." - ], - "dateStartYear": [ - 1659 - ], - "idOclc": [ - "13234856" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)" - }, - { - "type": "nypl:Bnumber", - "value": "14421837" - }, - { - "type": "nypl:Oclc", - "value": "13234856" - }, - { - "type": "bf:Lccn", - "value": "02013727" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R070000711" - } - ], - "dateEndYear": [ - 1660 - ], - "updatedAt": 1712865676205, - "publicationStatement": [ - "London, Printed for P. Stephens [1659]" - ], - "identifier": [ - "urn:shelfmark:*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)", - "urn:bnum:14421837", - "urn:oclc:13234856", - "urn:lccn:02013727", - "urn:identifier:(WaOLN)R070000711" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1659" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "History, Modern, 17th cent.", - "Spain -- Politics and government -- 1516-1700.", - "Great Britain -- Politics and government -- 1603-1714.", - "Great Britain -- Foreign relations -- Spain.", - "Spain -- Foreign relations -- Great Britain.", - "Spain -- Politics and government.", - "Spain -- Govt., 1516-1808." - ], - "titleDisplay": [ - "Thomas Campanella an Italian friar and second Machiavel. His advice to the king of Spain for attaining the universal monarchy of the world. Particularly concerning England, Scotland and Ireland, how to raise division between king and Parliament, to alter the government from a kingdome to a commonwealth. Thereby embroiling England in civil war to divert the English from disturbing the Spaniard in bringing the Indian treasure into Spain. Also for reducing Holland by procuring war betwixt England, Holland, and other sea-faring countries, affirming as most certain, that if the king of Spain become master of England and the Low countries, he will quickly be sole monarch of all Europe, and the greatest part of the new world. Translated into English by Ed. Chilmead, and published for awakening the English to prevent the approaching ruine of their nation. With an admonitorie preface by William Prynne ..." - ], - "uri": "b14421837", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "A discourse touching the Spanish monarchy." - ], - "dimensions": [ - "18.5 cm." - ] - }, - "sort": [ - 25.762568, - "b14421837" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14421837", - "_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:*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)" - ], - "identifierV2": [ - { - "value": "*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)" - ], - "shelfMark_sort": "a*KC 1659 (Campanella, T. Thomas Campanella an Italian friar and second Machiavel)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17013608", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Campanella%2C+Tommaso%2C+1568-1639.&CallNumber=*KC+1659+%28Campanella%2C+T.+Thomas+Campanella+an+Italian+friar+and+second+Machiavel%29&Date=1659&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14421837&ItemISxN=i170136085&ItemPlace=London&ItemPublisher=Printed+for+P.+Stephens+%5B1659%5D&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b144218379&Site=SASRB&Title=Thomas+Campanella+an+Italian+friar+and+second+Machiavel.+His+advice+to+the+king+of+Spain+for+attaining+the+universal+monarchy+of+the+world.+Particularly+concerning+England%2C+Scotland+and+Ireland%2C+how+to+raise+division+between+king+and+Parliament%2C+to+alter%E2%80%A6&Transaction.CustomFields.Custom651=Spain+Govt.%2C+1516-1808." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13245603", - "_score": 25.249336, - "_source": { - "extent": [ - "3 p. l., iii, [1] p., 1 l., 342 p. fold. facsim." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Poėsies\" and \"Lettres\" translated by Madame Louise Colet; \"La citė du soleil\" by Jules Rosset.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Italian literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lavigne" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1844 - ], - "title": [ - "Oeuvres choisies de Campanella, précédées d'une notice" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NNCC (Campanella, T. Oeuvres choisies)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1844" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Colet, Louise, 1810-1876.", - "Rosset, Jules." - ], - "dateStartYear": [ - 1844 - ], - "idOclc": [ - "23394453" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NNCC (Campanella, T. Oeuvres choisies)" - }, - { - "type": "nypl:Bnumber", - "value": "13245603" - }, - { - "type": "nypl:Oclc", - "value": "23394453" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3223308" - } - ], - "updatedAt": 1710981638724, - "publicationStatement": [ - "Paris, Lavigne, 1844." - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Oeuvres choisies)", - "urn:bnum:13245603", - "urn:oclc:23394453", - "urn:identifier:(WaOLN)nyp3223308" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1844" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Italian literature." - ], - "titleDisplay": [ - "Oeuvres choisies de Campanella, précédées d'une notice, par Madame Louise Colet ..." - ], - "uri": "b13245603", - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18cm." - ] - }, - "sort": [ - 25.249336, - "b13245603" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13245603", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433092299183" - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Oeuvres choisies)", - "urn:barcode:33433092299183" - ], - "identifierV2": [ - { - "value": "NNCC (Campanella, T. Oeuvres choisies)", - "type": "bf:ShelfMark" - }, - { - "value": "33433092299183", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NNCC (Campanella, T. Oeuvres choisies)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNCC (Campanella, T. Oeuvres choisies)" - ], - "shelfMark_sort": "aNNCC (Campanella, T. Oeuvres choisies)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28953713" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13245603", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "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": [ - "33433100797186" - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Oeuvres choisies)", - "urn:barcode:33433100797186" - ], - "identifierV2": [ - { - "value": "NNCC (Campanella, T. Oeuvres choisies)", - "type": "bf:ShelfMark" - }, - { - "value": "33433100797186", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NNCC (Campanella, T. Oeuvres choisies)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNCC (Campanella, T. Oeuvres choisies)" - ], - "shelfMark_sort": "aNNCC (Campanella, T. Oeuvres choisies)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16370850" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b21186679", - "_score": 25.249336, - "_source": { - "extent": [ - "1 folder. " - ], - "note": [ - { - "noteType": "Note", - "label": "Clippings about the filmmaker Roy Campanella, Jr.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Roy, 1948-" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Campanella, Roy, Jr." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-CLP (Campanella, Roy, Jr.)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "donor": [ - "In honor of George Freedley" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-CLP (Campanella, Roy, Jr.)" - }, - { - "type": "nypl:Bnumber", - "value": "21186679" - } - ], - "updatedAt": 1711661288100, - "genreForm": [ - "Clippings." - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Roy, Jr.)", - "urn:bnum:21186679" - ], - "numCheckinCardItems": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Roy, 1948-" - ], - "titleDisplay": [ - "Campanella, Roy, Jr. : clippings." - ], - "uri": "b21186679", - "issuance": [ - { - "id": "urn:biblevel:2" - } - ] - }, - "sort": [ - 25.249336, - "b21186679" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b21186679", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "idBarcode": [ - "33433119061418" - ], - "identifier": [ - "urn:shelfmark:*T-CLP (Campanella, Roy, Jr.)", - "urn:barcode:33433119061418" - ], - "identifierV2": [ - { - "value": "*T-CLP (Campanella, Roy, Jr.)", - "type": "bf:ShelfMark" - }, - { - "value": "33433119061418", - "type": "bf:Barcode" - } - ], - "physicalLocation": [ - "*T-CLP (Campanella, Roy, Jr.)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-CLP (Campanella, Roy, Jr.)" - ], - "shelfMark_sort": "a*T-CLP (Campanella, Roy, Jr.)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34926887", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-CLP+%28Campanella%2C+Roy%2C+Jr.%29&Date=++++&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21186679&ItemISxN=i349268873&ItemNumber=33433119061418&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b211866799&Site=LPATH&Title=Campanella%2C+Roy%2C+Jr.+%3A+clippings." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b15280945", - "_score": 24.541645, - "_source": { - "extent": [ - "127 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "A collection of photographs made by the Fairchild Aerial Surveys, Inc., company from the 1930s through the 1960s.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 126) and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Aerial photography", - "Aerial photography -- United States", - "United States", - "United States -- Aerial photographs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Princeton Architectural Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2001 - ], - "title": [ - "Cities from the sky : an aerial portrait of America" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "MFX+ (Campanella) 01-12139" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2001" - ], - "creatorLiteral": [ - "Campanella, Thomas J." - ], - "idLccn": [ - "2001001733" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Fairchild Aerial Surveys, inc." - ], - "dateStartYear": [ - 2001 - ], - "idOclc": [ - "46590041" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "MFX+ (Campanella) 01-12139" - }, - { - "type": "nypl:Bnumber", - "value": "15280945" - }, - { - "type": "bf:Isbn", - "value": "1568982992" - }, - { - "type": "nypl:Oclc", - "value": "46590041" - }, - { - "type": "bf:Lccn", - "value": "2001001733" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M130000269" - } - ], - "updatedAt": 1711060344970, - "publicationStatement": [ - "New York : Princeton Architectural Press, c2001." - ], - "idIsbn": [ - "1568982992" - ], - "identifier": [ - "urn:shelfmark:MFX+ (Campanella) 01-12139", - "urn:bnum:15280945", - "urn:isbn:1568982992", - "urn:oclc:46590041", - "urn:lccn:2001001733", - "urn:identifier:(WaOLN)M130000269" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2001" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Aerial photography -- United States.", - "United States -- Aerial photographs." - ], - "titleDisplay": [ - "Cities from the sky : an aerial portrait of America / by Thomas J. Campanella ; foreword by Witold Rybczynski." - ], - "uri": "b15280945", - "lccClassification": [ - "TR810 .C27 2001" - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 x 38 cm." - ], - "idIsbn_clean": [ - "1568982992" - ] - }, - "sort": [ - 24.541645, - "b15280945" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b15280945", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433017771977" - ], - "identifier": [ - "urn:shelfmark:MFX+ (Campanella) 01-12139", - "urn:barcode:33433017771977" - ], - "identifierV2": [ - { - "value": "MFX+ (Campanella) 01-12139", - "type": "bf:ShelfMark" - }, - { - "value": "33433017771977", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "physicalLocation": [ - "MFX+ (Campanella) 01-12139" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "MFX+ (Campanella) 01-12139" - ], - "shelfMark_sort": "aMFX+ (Campanella) 01-012139", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11582801" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16484950", - "_score": 24.331442, - "_source": { - "extent": [ - "173 p. illus. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: Akademi︠i︡a Nauk So︠i︡uza SSR.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Izdatelʹstvo Akademii Nauk SSSR" - ], - "language": [ - { - "id": "lang:rus", - "label": "Russian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Gorod soln︠t︡sa. Per. s latinskogo i kommentarii F.A. Petrovskoto; Vstup. statʹ︠i︡a V.P. Volgina." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*QDY (Campanella, T. Gorod, 1947)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Predshestvenniki nauchnogo so︠t︡sializma" - ], - "contributorLiteral": [ - "Akademi︠i︡a nauk SSSR." - ], - "dateStartYear": [ - 1947 - ], - "donor": [ - "Slavic Recon Project." - ], - "idOclc": [ - "16965810" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QDY (Campanella, T. Gorod, 1947)" - }, - { - "type": "nypl:Bnumber", - "value": "16484950" - }, - { - "type": "nypl:Oclc", - "value": "16965810" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)16965810" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M090000386" - } - ], - "updatedAt": 1711473976020, - "publicationStatement": [ - "Moskva : Izdatelʹstvo Akademii Nauk SSSR, 1947." - ], - "identifier": [ - "urn:shelfmark:*QDY (Campanella, T. Gorod, 1947)", - "urn:bnum:16484950", - "urn:oclc:16965810", - "urn:identifier:(OCoLC)16965810", - "urn:identifier:(WaOLN)M090000386" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Gorod soln︠t︡sa. Per. s latinskogo i kommentarii F.A. Petrovskoto; Vstup. statʹ︠i︡a V.P. Volgina." - ], - "uri": "b16484950", - "lccClassification": [ - "HX811 1623 .R9472" - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - 24.331442, - "b16484950" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16484950", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433060905050" - ], - "identifier": [ - "urn:shelfmark:*QDY (Campanella, T. Gorod, 1947)", - "urn:barcode:33433060905050" - ], - "identifierV2": [ - { - "value": "*QDY (Campanella, T. Gorod, 1947)", - "type": "bf:ShelfMark" - }, - { - "value": "33433060905050", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*QDY (Campanella, T. Gorod, 1947)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*QDY (Campanella, T. Gorod, 1947)" - ], - "shelfMark_sort": "a*QDY (Campanella, T. Gorod, 1947)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17283361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16798359", - "_score": 24.331442, - "_source": { - "extent": [ - "1 folder (photographic prints) : b&w ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Publicity photographs of Frank Campanella.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "[Donor]", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Frank" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Frank Campanella" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-Pho B (Campanella, Frank)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-Pho B (Campanella, Frank)" - }, - { - "type": "nypl:Bnumber", - "value": "16798359" - } - ], - "updatedAt": 1711659646795, - "genreForm": [ - "Photographic prints.", - "Publicity photographs." - ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Campanella, Frank)", - "urn:bnum:16798359" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Frank." - ], - "titleDisplay": [ - "Frank Campanella : photographs [graphic]." - ], - "uri": "b16798359", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 x 20 cm. or smaller." - ] - }, - "sort": [ - 24.331442, - "b16798359" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16798359", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:15", - "label": "flat graphic" - } - ], - "catalogItemType_packed": [ - "catalogItemType:15||flat graphic" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Campanella, Frank)" - ], - "identifierV2": [ - { - "value": "*T-Pho B (Campanella, Frank)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*T-Pho B (Campanella, Frank)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-Pho B (Campanella, Frank)" - ], - "shelfMark_sort": "a*T-Pho B (Campanella, Frank)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i38348253", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-Pho+B+%28Campanella%2C+Frank%29&Date=++++&Form=30&Genre=flat+graphic&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16798359&ItemISxN=i383482537&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b167983593&Site=LPATH&Title=Frank+Campanella+%3A+photographs" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b16798372", - "_score": 24.331442, - "_source": { - "extent": [ - "1 folder (photographic prints) : b&w ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Publicity photographs of Joseph Campanella.", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "[Donor]", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Joseph" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - null - ], - "title": [ - "Joseph Campanella" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-Pho B (Campanella, Joseph)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - " " - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - null - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-Pho B (Campanella, Joseph)" - }, - { - "type": "nypl:Bnumber", - "value": "16798372" - } - ], - "updatedAt": 1711656228067, - "genreForm": [ - "Photographic prints.", - "Publicity photographs." - ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Campanella, Joseph)", - "urn:bnum:16798372" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - " " - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Joseph." - ], - "titleDisplay": [ - "Joseph Campanella : photographs [graphic]." - ], - "uri": "b16798372", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 x 20 cm. or smaller." - ] - }, - "sort": [ - 24.331442, - "b16798372" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b16798372", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:15", - "label": "flat graphic" - } - ], - "catalogItemType_packed": [ - "catalogItemType:15||flat graphic" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" - } - ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" - ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Campanella, Joseph)" - ], - "identifierV2": [ - { - "value": "*T-Pho B (Campanella, Joseph)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*T-Pho B (Campanella, Joseph)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*T-Pho B (Campanella, Joseph)" - ], - "shelfMark_sort": "a*T-Pho B (Campanella, Joseph)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i38348254", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-Pho+B+%28Campanella%2C+Joseph%29&Date=++++&Form=30&Genre=flat+graphic&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16798372&ItemISxN=i383482549&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b167983726&Site=LPATH&Title=Joseph+Campanella+%3A+photographs" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12423309", - "_score": 23.688, - "_source": { - "extent": [ - "76 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Documenti inediti riguardanti il P. Campanella, dedicati al VII. Congresso degli scienziati italiani", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tipografia di Porcelli" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1845 - ], - "title": [ - "Documenti inediti circa la voluta ribellione di F. Tommaso Campanella" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1845" - ], - "creatorLiteral": [ - "Capialbi, Vito, 1790-1853." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1845 - ], - "idOclc": [ - "21617787" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)" - }, - { - "type": "nypl:Bnumber", - "value": "12423309" - }, - { - "type": "nypl:Oclc", - "value": "21617787" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2407791" - } - ], - "updatedAt": 1711662891245, - "publicationStatement": [ - "Napoli : Tipografia di Porcelli, 1845" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)", - "urn:bnum:12423309", - "urn:oclc:21617787", - "urn:identifier:(WaOLN)nyp2407791" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1845" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Documenti inediti circa la voluta ribellione di F. Tommaso Campanella / raccolti, ed annotati da Vito Capialbi" - ], - "uri": "b12423309", - "placeOfPublication": [ - "Napoli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm" - ] - }, - "sort": [ - 23.688, - "b12423309" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12423309", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433081514683" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)", - "urn:barcode:33433081514683" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081514683", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)" - ], - "shelfMark_sort": "aAN (Campanella) (Capialbi, V. Documenti inediti circa la voluta ribellione di E.T. Campanella)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16020062" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12423310", - "_score": 23.249336, - "_source": { - "extent": [ - "334 p. facsims." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references. \"Bibliografia degli scritti di Andrea Chiocco\": p. [305]-309. \"Nota bibliografica\": p. [322]", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. C. Sansoni" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1947 - ], - "title": [ - "Richerche Campanelliane." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Campanella) (Firpo, L. Ricerche campanelliane)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1947" - ], - "creatorLiteral": [ - "Firpo, Luigi." - ], - "idLccn": [ - "a 48006873" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Biblioteca storica Sansoni. Nouva ser., 13" - ], - "dateStartYear": [ - 1947 - ], - "idOclc": [ - "3983516" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Firpo, L. Ricerche campanelliane)" - }, - { - "type": "nypl:Bnumber", - "value": "12423310" - }, - { - "type": "nypl:Oclc", - "value": "3983516" - }, - { - "type": "bf:Lccn", - "value": "a 48006873" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2407792" - } - ], - "updatedAt": 1711037733317, - "publicationStatement": [ - "Firenze, G. C. Sansoni [1947]" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Firpo, L. Ricerche campanelliane)", - "urn:bnum:12423310", - "urn:oclc:3983516", - "urn:lccn:a 48006873", - "urn:identifier:(WaOLN)nyp2407792" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Richerche Campanelliane." - ], - "uri": "b12423310", - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 23.249336, - "b12423310" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12423310", - "_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": [ - "33433104031756" - ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Firpo, L. Ricerche campanelliane)", - "urn:barcode:33433104031756" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Firpo, L. Ricerche campanelliane)", - "type": "bf:ShelfMark" - }, - { - "value": "33433104031756", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "AN (Campanella) (Firpo, L. Ricerche campanelliane)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Campanella) (Firpo, L. Ricerche campanelliane)" - ], - "shelfMark_sort": "aAN (Campanella) (Firpo, L. Ricerche campanelliane)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16020063" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13727931", - "_score": 23.249336, - "_source": { - "extent": [ - "603, [1] p., 2 l." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Science", - "Science -- Early works to 1800", - "Philosophy" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Reale accademia d'Italia" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1939 - ], - "title": [ - "Epilogo magno (Fisiologia italiana) Testo italiano inedito, con le varianti dei codici e delle edizioni latine" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "OAP (Campanella, T. Epilogo magno)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1939" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "a 45000889 //r863" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Reale accademia d'Italia. Studi e documenti, 10" - ], - "contributorLiteral": [ - "Ottaviano, Carmelo, 1906-" - ], - "dateStartYear": [ - 1939 - ], - "idOclc": [ - "11727759" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "OAP (Campanella, T. Epilogo magno)" - }, - { - "type": "nypl:Bnumber", - "value": "13727931" - }, - { - "type": "nypl:Oclc", - "value": "11727759" - }, - { - "type": "bf:Lccn", - "value": "a 45000889 //r863" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0059617" - } - ], - "uniformTitle": [ - "Studi e documenti (Reale Accademia d'Italia) ; 10." - ], - "updatedAt": 1711563665929, - "publicationStatement": [ - "Roma, Reale accademia d'Italia, 1939." - ], - "identifier": [ - "urn:shelfmark:OAP (Campanella, T. Epilogo magno)", - "urn:bnum:13727931", - "urn:oclc:11727759", - "urn:lccn:a 45000889 //r863", - "urn:identifier:(WaOLN)nyp0059617" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1939" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Science -- Early works to 1800.", - "Philosophy." - ], - "titleDisplay": [ - "Epilogo magno (Fisiologia italiana) Testo italiano inedito, con le varianti dei codici e delle edizioni latine, a cura di Carmelo Ottaviano." - ], - "uri": "b13727931", - "lccClassification": [ - "Q155 .C125" - ], - "placeOfPublication": [ - "Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - 23.249336, - "b13727931" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13727931", - "_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": [ - "33433067747232" - ], - "identifier": [ - "urn:shelfmark:OAP (Campanella, T. Epilogo magno)", - "urn:barcode:33433067747232" - ], - "identifierV2": [ - { - "value": "OAP (Campanella, T. Epilogo magno)", - "type": "bf:ShelfMark" - }, - { - "value": "33433067747232", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "OAP (Campanella, T. Epilogo magno)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "OAP (Campanella, T. Epilogo magno)" - ], - "shelfMark_sort": "aOAP (Campanella, T. Epilogo magno)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16582632" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12515267", - "_score": 21.71989, - "_source": { - "extent": [ - "224 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [213]-220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "North Atlantic Treaty (1949 April 4)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Impr. Ortega" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1952 - ], - "title": [ - "Western justification of the North Atlantic pact" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "BTZA (Campanella, A. Western justification of the North Atlantic pact)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1952" - ], - "creatorLiteral": [ - "Campanella, A. P." - ], - "idLccn": [ - "74172894 //r92" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1952 - ], - "idOclc": [ - "1340733" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "BTZA (Campanella, A. Western justification of the North Atlantic pact)" - }, - { - "type": "nypl:Bnumber", - "value": "12515267" - }, - { - "type": "nypl:Oclc", - "value": "1340733" - }, - { - "type": "bf:Lccn", - "value": "74172894 //r92" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2498244" - } - ], - "updatedAt": 1711408912025, - "publicationStatement": [ - "Barcelona, Impr. Ortega, 1952." - ], - "identifier": [ - "urn:shelfmark:BTZA (Campanella, A. Western justification of the North Atlantic pact)", - "urn:bnum:12515267", - "urn:oclc:1340733", - "urn:lccn:74172894 //r92", - "urn:identifier:(WaOLN)nyp2498244" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1952" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "North Atlantic Treaty (1949 April 4)" - ], - "titleDisplay": [ - "Western justification of the North Atlantic pact, by A. P. Campanella." - ], - "uri": "b12515267", - "lccClassification": [ - "D845 .C26" - ], - "placeOfPublication": [ - "Barcelona" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 21.71989, - "b12515267" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12515267", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433106182870" - ], - "identifier": [ - "urn:shelfmark:BTZA (Campanella, A. Western justification of the North Atlantic pact)", - "urn:barcode:33433106182870" - ], - "identifierV2": [ - { - "value": "BTZA (Campanella, A. Western justification of the North Atlantic pact)", - "type": "bf:ShelfMark" - }, - { - "value": "33433106182870", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "BTZA (Campanella, A. Western justification of the North Atlantic pact)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "BTZA (Campanella, A. Western justification of the North Atlantic pact)" - ], - "shelfMark_sort": "aBTZA (Campanella, A. Western justification of the North Atlantic pact)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16074192" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13246217", - "_score": 21.71989, - "_source": { - "extent": [ - "iv, 154 p. front., ports." - ], - "note": [ - { - "noteType": "Note", - "label": "Contains Italian translations of Campanella's De Belgio subjugando and Antiveneti.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "\"Annotazione bibliografica\": p. 111-112.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. C. Sansoni" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1934 - ], - "title": [ - "Studi campanelliani, con l'aggiunta del testo inedito del discorso delle Fiandre e degli Antiveneti di T. Campanella. Con 8 ritratti." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NNBC (Campanella) (Mattei, R. de. Studi campanelliani)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1934" - ], - "creatorLiteral": [ - "De Mattei, Rodolfo, 1899-1981." - ], - "idLccn": [ - "ac 36000889" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Biblioteca storica Sansoni. x" - ], - "dateStartYear": [ - 1934 - ], - "idOclc": [ - "3863066" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NNBC (Campanella) (Mattei, R. de. Studi campanelliani)" - }, - { - "type": "nypl:Bnumber", - "value": "13246217" - }, - { - "type": "nypl:Oclc", - "value": "3863066" - }, - { - "type": "bf:Lccn", - "value": "ac 36000889" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3223907" - } - ], - "updatedAt": 1711296738614, - "publicationStatement": [ - "Firenze, G. C. Sansoni [1934]" - ], - "identifier": [ - "urn:shelfmark:NNBC (Campanella) (Mattei, R. de. Studi campanelliani)", - "urn:bnum:13246217", - "urn:oclc:3863066", - "urn:lccn:ac 36000889", - "urn:identifier:(WaOLN)nyp3223907" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1934" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Studi campanelliani, con l'aggiunta del testo inedito del discorso delle Fiandre e degli Antiveneti di T. Campanella. Con 8 ritratti." - ], - "uri": "b13246217", - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - 21.71989, - "b13246217" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13246217", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433101519027" - ], - "identifier": [ - "urn:shelfmark:NNBC (Campanella) (Mattei, R. de. Studi campanelliani)", - "urn:barcode:33433101519027" - ], - "identifierV2": [ - { - "value": "NNBC (Campanella) (Mattei, R. de. Studi campanelliani)", - "type": "bf:ShelfMark" - }, - { - "value": "33433101519027", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NNBC (Campanella) (Mattei, R. de. Studi campanelliani)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NNBC (Campanella) (Mattei, R. de. Studi campanelliani)" - ], - "shelfMark_sort": "aNNBC (Campanella) (Mattei, R. de. Studi campanelliani)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16370984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428716", - "_score": 21.187479, - "_source": { - "extent": [ - "xxxii, 422 [1] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Extant works of S. Pacian, Bishop of Barcelona\": p. [319]-384.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added special t.-p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "S. Cyprian translated by H. Carey, and S. Pacian by C.H. Collyns.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Preface signed: E.B.P.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Baptism", - "Baptism -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. H. Parker" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1844 - ], - "title": [ - "The epistles of S. Cyprian with the Council of Carthage on the baptism of heretics." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZEM (Cyprian. Epistles of S. Cyprian)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1844" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "A library of fathers of the Holy Catholic Church, anterior to the division of the East and West ; v. 17" - ], - "contributorLiteral": [ - "Pacian, Saint, Bishop of Barcelona, active 4th century.", - "Carey, Henry, 1808?-1867.", - "Collyns, Charles Henry, 1820-1885.", - "Pusey, E. B. (Edward Bouverie), 1800-1882.", - "Council of Carthage (256)" - ], - "dateStartYear": [ - 1844 - ], - "idOclc": [ - "4287850" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZEM (Cyprian. Epistles of S. Cyprian)" - }, - { - "type": "nypl:Bnumber", - "value": "13428716" - }, - { - "type": "nypl:Oclc", - "value": "4287850" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0036892" - } - ], - "updatedAt": 1710978873620, - "publicationStatement": [ - "Oxford : J. H. Parker, 1844." - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Epistles of S. Cyprian)", - "urn:bnum:13428716", - "urn:oclc:4287850", - "urn:identifier:(WaOLN)nyp0036892" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1844" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Baptism -- Early works to 1800." - ], - "titleDisplay": [ - "The epistles of S. Cyprian with the Council of Carthage on the baptism of heretics." - ], - "uri": "b13428716", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081640991" - } - ], - "placeOfPublication": [ - "Oxford" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 21.187479, - "b13428716" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13428716", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433098995768" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Epistles of S. Cyprian)", - "urn:barcode:33433098995768" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Epistles of S. Cyprian)", - "type": "bf:ShelfMark" - }, - { - "value": "33433098995768", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZEM (Cyprian. Epistles of S. Cyprian)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Epistles of S. Cyprian)" - ], - "shelfMark_sort": "aZEM (Cyprian. Epistles of S. Cyprian)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28600325" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428716", - "_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: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": [ - "33433081640991" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Epistles of S. Cyprian)", - "urn:barcode:33433081640991" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Epistles of S. Cyprian)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081640991", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZEM (Cyprian. Epistles of S. Cyprian)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Epistles of S. Cyprian)" - ], - "shelfMark_sort": "aZEM (Cyprian. Epistles of S. Cyprian)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16492513" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14288571", - "_score": 20.770424, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "2 pts. in 1 v. (4 p. l., 166 p., 1 l.; 60 p.)" - ], - "note": [ - { - "noteType": "Note", - "label": "Last leaf of pt. 1 blank.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pt. 1 has running title: Discursus von der Spanischen Monarchia. It includes a chapter on America, p. 152-159.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "This German translation of a hitherto unpublished Italian work is attributed to C. Besold and was first published in 1620.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pt. 2 has caption tiitle: Anhang der Spanischen Monarchi Campanellae. Ob zu wünschen, das alle Christliche Herrschafften, einem einigen Ober-Haupt vnderworffen weren? It was probably written by Besold.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Possibly published at Strassburg by the heirs of Lazar Zetner who brought out several of Besold's works.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Sabin", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Frankfurt am Main. Stadtbibliothek: Flugschriftensammlung Gustav Freytag", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Faber du Faur: German Baroque literature", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Firpo: Bibl. degli scritti di Campanella", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "History, Modern", - "History, Modern -- 17th century", - "Spain", - "Spain -- Govt., 1516-1808" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Getruckt jm Jahr" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1623 - ], - "title": [ - "Thomas Campanella, von der Spannischen Monarchy, erst vnnd ander Theyl. Oder Aussführliches Bedencken, welcher massen, von dem König in Hispanien, der gantzen Weltbeherrschung, sowol ins gemein, als auff jedes Königreich vnnd Land besonders, allerhand Anstalt zu machen seyn möchte. Warinnen nicht allein fast aller Herrschafften jetziger Zeit, eygentliche Beschaffenheit entdeckt: sondern zumal de Ratione Status, vnnd den geheimbsten Mitteln, ein Regiment zu erhalten oder ausszubreyten: eygentlich gehandelt wirdt. Nun erstlich ausz dem Jtalianischen ... in vnser teutsche Sprach versetzt, vnd zum zweytenmal fleissig vbersehen, gebessert, auch mit dem andern Theyl vermehret ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KB 1623 (Campanella, T. Thomas Campanella, von der Spannischen Monarchy, erst vnnd ander Theyl)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1623" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Campanella, Tommaso, 1568-1639.", - "Besold, Christoph, 1577-1638.", - "Ford Collection." - ], - "dateStartYear": [ - 1623 - ], - "idOclc": [ - "34925822" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KB 1623 (Campanella, T. Thomas Campanella, von der Spannischen Monarchy, erst vnnd ander Theyl)" - }, - { - "type": "nypl:Bnumber", - "value": "14288571" - }, - { - "type": "nypl:Oclc", - "value": "34925822" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R240000589" - } - ], - "updatedAt": 1710984728020, - "publicationStatement": [ - "[n.p.] Getruckt jm Jahr, 1623." - ], - "identifier": [ - "urn:shelfmark:*KB 1623 (Campanella, T. Thomas Campanella, von der Spannischen Monarchy, erst vnnd ander Theyl)", - "urn:bnum:14288571", - "urn:oclc:34925822", - "urn:identifier:(WaOLN)R240000589" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1623" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "History, Modern -- 17th century.", - "Spain -- Govt., 1516-1808." - ], - "titleDisplay": [ - "Thomas Campanella, von der Spannischen Monarchy, erst vnnd ander Theyl. Oder Aussführliches Bedencken, welcher massen, von dem König in Hispanien, der gantzen Weltbeherrschung, sowol ins gemein, als auff jedes Königreich vnnd Land besonders, allerhand Anstalt zu machen seyn möchte. Warinnen nicht allein fast aller Herrschafften jetziger Zeit, eygentliche Beschaffenheit entdeckt: sondern zumal de Ratione Status, vnnd den geheimbsten Mitteln, ein Regiment zu erhalten oder ausszubreyten: eygentlich gehandelt wirdt. Nun erstlich ausz dem Jtalianischen ... in vnser teutsche Sprach versetzt, vnd zum zweytenmal fleissig vbersehen, gebessert, auch mit dem andern Theyl vermehret ..." - ], - "uri": "b14288571", - "placeOfPublication": [ - "[n.p.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm. (4to.)" - ] - }, - "sort": [ - 20.770424, - "b14288571" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428727", - "_score": 20.644485, - "_source": { - "extent": [ - "xxxii, 318 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Translated by Charles Thornton. Pref. signed: J.H.N.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Theology", - "Theology -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. H. Parker" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1840 - ], - "title": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1840" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "Library of fathers of the Holy Catholic church ; v. 3" - ], - "contributorLiteral": [ - "Thornton, Charles, 1811?-1839.", - "Newman, John Henry, Saint, 1801-1890." - ], - "dateStartYear": [ - 1840 - ], - "idOclc": [ - "12272917" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)" - }, - { - "type": "nypl:Bnumber", - "value": "13428727" - }, - { - "type": "nypl:Oclc", - "value": "12272917" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3406317" - } - ], - "updatedAt": 1710983794637, - "publicationStatement": [ - "Oxford : J. H. Parker, 1840." - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)", - "urn:bnum:13428727", - "urn:oclc:12272917", - "urn:identifier:(WaOLN)nyp3406317" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1840" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Theology -- Early works to 1800." - ], - "titleDisplay": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr / translated, with notes and indices." - ], - "uri": "b13428727", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433068229701" - } - ], - "placeOfPublication": [ - "Oxford" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 20.644485, - "b13428727" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13428727", - "_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" - ], - "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": [ - "33433068229701" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)", - "urn:barcode:33433068229701" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)", - "type": "bf:ShelfMark" - }, - { - "value": "33433068229701", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)" - ], - "shelfMark_sort": "aZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1840)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15178471" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13245605", - "_score": 20.495813, - "_source": { - "extent": [ - "v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A. Mondadori" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1954 - ], - "dateEndString": [ - "9999" - ], - "title": [ - "Tutte le opere di Tommaso Campanella." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "NNCC (Campanella, T. Tutte le opere)" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1954" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "I classici mondadori" - ], - "contributorLiteral": [ - "Firpo, Luigi." - ], - "dateStartYear": [ - 1954 - ], - "idOclc": [ - "1454571" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NNCC (Campanella, T. Tutte le opere)" - }, - { - "type": "nypl:Bnumber", - "value": "13245605" - }, - { - "type": "nypl:Oclc", - "value": "1454571" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1711361017199, - "publicationStatement": [ - "Milano, A. Mondadori, 1954." - ], - "identifier": [ - "urn:shelfmark:NNCC (Campanella, T. Tutte le opere)", - "urn:bnum:13245605", - "urn:oclc:1454571" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Tutte le opere di Tommaso Campanella. A cura di Luigi Firop." - ], - "uri": "b13245605", - "placeOfPublication": [ - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Scritti Letterari." - ], - "dimensions": [ - "20cm." - ] - }, - "sort": [ - 20.495813, - "b13245605" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13245605", - "_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" - ], - "enumerationChronology": [ - "v. 1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433023510260" - ], - "identifier": [ - "urn:shelfmark:K-10 9075 v. 1", - "urn:barcode:33433023510260" - ], - "identifierV2": [ - { - "value": "K-10 9075 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433023510260", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "K-10 9075" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "K-10 9075 v. 1" - ], - "shelfMark_sort": "aK-10 9075 v. 000001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i12294644" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13403718", - "_score": 19.754387, - "_source": { - "extent": [ - "xxix, 348 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Senses and sensation", - "Magic" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "G. Laterza & Figli" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1925 - ], - "title": [ - "Del senso delle cose e della magia; testo inedito italiano con le varianti dei codici e delle due edizioni latine" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "YCB (Campanella, T. Del senso delle cose e della magia)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1925" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "26011842" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Classici della filosofia monderna ... a cura di B. Croce e G. Gentile, XXIV" - ], - "contributorLiteral": [ - "Bruers, Antonio, 1887-" - ], - "dateStartYear": [ - 1925 - ], - "idOclc": [ - "3837180" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "YCB (Campanella, T. Del senso delle cose e della magia)" - }, - { - "type": "nypl:Bnumber", - "value": "13403718" - }, - { - "type": "nypl:Oclc", - "value": "3837180" - }, - { - "type": "bf:Lccn", - "value": "26011842" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3381747" - } - ], - "updatedAt": 1711378630718, - "publicationStatement": [ - "Bari, G. Laterza & Figli, 1925." - ], - "identifier": [ - "urn:shelfmark:YCB (Campanella, T. Del senso delle cose e della magia)", - "urn:bnum:13403718", - "urn:oclc:3837180", - "urn:lccn:26011842", - "urn:identifier:(WaOLN)nyp3381747" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Senses and sensation.", - "Magic." - ], - "titleDisplay": [ - "Del senso delle cose e della magia; testo inedito italiano con le varianti dei codici e delle due edizioni latine, a cura di Antonio Bruers." - ], - "uri": "b13403718", - "lccClassification": [ - "BF233 .C3" - ], - "placeOfPublication": [ - "Bari" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 19.754387, - "b13403718" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13403718", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433088695022" - ], - "identifier": [ - "urn:shelfmark:YCB (Campanella, T. Del senso delle cose e della magia)", - "urn:barcode:33433088695022" - ], - "identifierV2": [ - { - "value": "YCB (Campanella, T. Del senso delle cose e della magia)", - "type": "bf:ShelfMark" - }, - { - "value": "33433088695022", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "YCB (Campanella, T. Del senso delle cose e della magia)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "YCB (Campanella, T. Del senso delle cose e della magia)" - ], - "shelfMark_sort": "aYCB (Campanella, T. Del senso delle cose e della magia)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16475807" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14414528", - "_score": 19.622595, - "_ignored": [ - "title.keyword", - "title.keywordLowercased", - "title.keywordLowercasedStripped" - ], - "_source": { - "extent": [ - "4 p. l., 232 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translated by Edmund Chilmead.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Sabin", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Hazlitt", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "History, Modern, 17th cent", - "Spain", - "Spain -- Politics and government", - "Spain -- Politics and government -- 1621-1665", - "Europe", - "Europe -- Politics and government", - "Europe -- Politics and government -- 1648-1789", - "Spain -- Govt., 1516-1808" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed for Philemon Stephens" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1654 - ], - "title": [ - "A discourse touching the Spanish monarchy. Wherein vve have a political glasse, representing each particular country ... of the world, with wayes of government by which they may be kept in obedience. As also, the causes of the rise and fall of each kingdom and empire." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1654" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "idLccn": [ - "02013726" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Chilmead, Edmund, 1610-1654." - ], - "dateStartYear": [ - 1654 - ], - "idOclc": [ - "5911783" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)" - }, - { - "type": "nypl:Bnumber", - "value": "14414528" - }, - { - "type": "nypl:Oclc", - "value": "5911783" - }, - { - "type": "bf:Lccn", - "value": "02013726" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R290000486" - } - ], - "updatedAt": 1712865660797, - "publicationStatement": [ - "London, Printed for Philemon Stephens, 1654." - ], - "identifier": [ - "urn:shelfmark:*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)", - "urn:bnum:14414528", - "urn:oclc:5911783", - "urn:lccn:02013726", - "urn:identifier:(WaOLN)R290000486" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1654" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "History, Modern, 17th cent.", - "Spain -- Politics and government -- 1621-1665.", - "Europe -- Politics and government -- 1648-1789.", - "Spain -- Govt., 1516-1808." - ], - "titleDisplay": [ - "A discourse touching the Spanish monarchy. Wherein vve have a political glasse, representing each particular country ... of the world, with wayes of government by which they may be kept in obedience. As also, the causes of the rise and fall of each kingdom and empire. VVritten by Tho. Campanella. Newly translated into English, according to the third edition of this book in Latine." - ], - "uri": "b14414528", - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm. (4to.)." - ] - }, - "sort": [ - 19.622595, - "b14414528" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14414528", - "_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:*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)" - ], - "identifierV2": [ - { - "value": "*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)" - ], - "shelfMark_sort": "a*KC 1654 (Campanella, T. Discourse touching the Spanish monarchy)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17010595", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Campanella%2C+Tommaso%2C+1568-1639.&CallNumber=*KC+1654+%28Campanella%2C+T.+Discourse+touching+the+Spanish+monarchy%29&Date=1654&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14414528&ItemISxN=i170105957&ItemPlace=London&ItemPublisher=Printed+for+Philemon+Stephens%2C+1654.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b144145285&Site=SASRB&Title=A+discourse+touching+the+Spanish+monarchy.+Wherein+vve+have+a+political+glasse%2C+representing+each+particular+country+...+of+the+world%2C+with+wayes+of+government+by+which+they+may+be+kept+in+obedience.+As+also%2C+the+causes+of+the+rise+and+fall+of+each+kingd%E2%80%A6&Transaction.CustomFields.Custom651=Spain+Govt.%2C+1516-1808." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428725", - "_score": 18.644485, - "_source": { - "extent": [ - "xxvi, 318 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Translated by Charles Thornton. Pref. signed: J.H.N.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Theology", - "Theology -- Early works to 1800", - "Theology -- History", - "Theology -- History -- Early church, ca. 30-600" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. H. Parker" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1839 - ], - "title": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1839" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "A library of fathers of the Holy Catholic church ; [3]" - ], - "contributorLiteral": [ - "Thornton, Charles, 1811?-1839.", - "Newman, John Henry, Saint, 1801-1890." - ], - "dateStartYear": [ - 1839 - ], - "idOclc": [ - "7124851" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)" - }, - { - "type": "nypl:Bnumber", - "value": "13428725" - }, - { - "type": "nypl:Oclc", - "value": "7124851" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0036894" - } - ], - "updatedAt": 1711566761450, - "publicationStatement": [ - "Oxford : J. H. Parker, 1839." - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)", - "urn:bnum:13428725", - "urn:oclc:7124851", - "urn:identifier:(WaOLN)nyp0036894" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1839" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Theology -- Early works to 1800.", - "Theology -- History -- Early church, ca. 30-600." - ], - "titleDisplay": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr / translated, with notes and indices." - ], - "uri": "b13428725", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433068229727" - } - ], - "placeOfPublication": [ - "Oxford" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 18.644485, - "b13428725" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13428725", - "_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": [ - "33433068229727" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)", - "urn:barcode:33433068229727" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)", - "type": "bf:ShelfMark" - }, - { - "value": "33433068229727", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)" - ], - "shelfMark_sort": "aZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1839)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15178469" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428710", - "_score": 18.354881, - "_source": { - "extent": [ - "2 v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Theology", - "Theology -- History", - "Theology -- History -- Early church, ca. 30-600" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sumptibus et typis Bernh. Tauchnitz" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1838 - ], - "dateEndString": [ - "1839" - ], - "title": [ - "Th. C. Cypriani opera genuina : ad optimorum librorum fidem expressa brevique adnotatione instructa" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZEM (Cyprian. Th. C. Cypriani opera genuina)" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1838" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Bibliotheca patrum ecclesiasticorum Latinorum selecta ; v. 2-3" - ], - "contributorLiteral": [ - "Goldhorn, D. I. H. (David Iohann Henrich)" - ], - "dateStartYear": [ - 1838 - ], - "idOclc": [ - "7189462" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZEM (Cyprian. Th. C. Cypriani opera genuina)" - }, - { - "type": "nypl:Bnumber", - "value": "13428710" - }, - { - "type": "nypl:Oclc", - "value": "7189462" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3406300" - } - ], - "uniformTitle": [ - "Works. 1838." - ], - "dateEndYear": [ - 1839 - ], - "updatedAt": 1710976798024, - "publicationStatement": [ - "Lipsiae : Sumptibus et typis Bernh. Tauchnitz, 1838-1839." - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Th. C. Cypriani opera genuina)", - "urn:bnum:13428710", - "urn:oclc:7189462", - "urn:identifier:(WaOLN)nyp3406300" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1838" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Theology -- History -- Early church, ca. 30-600." - ], - "titleDisplay": [ - "Th. C. Cypriani opera genuina : ad optimorum librorum fidem expressa brevique adnotatione instructa / curante D.I.H. Goldhorn." - ], - "uri": "b13428710", - "placeOfPublication": [ - "Lipsiae" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Works. 1838." - ], - "tableOfContents": [ - "Pars I. Epistolae -- Pars 2. Tractatus." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - 18.354881, - "b13428710" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13428710", - "_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" - ], - "enumerationChronology": [ - "v. 1-2" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433087371153" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Th. C. Cypriani opera genuina) v. 1-2", - "urn:barcode:33433087371153" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Th. C. Cypriani opera genuina) v. 1-2", - "type": "bf:ShelfMark" - }, - { - "value": "33433087371153", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZEM (Cyprian. Th. C. Cypriani opera genuina)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Th. C. Cypriani opera genuina) v. 1-2" - ], - "shelfMark_sort": "aZEM (Cyprian. Th. C. Cypriani opera genuina) v. 000001-2", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 2 - } - ], - "uri": "i16492507" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13428728", - "_score": 18.239601, - "_source": { - "extent": [ - "xxxii, 318 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Translated by Charles Thornton. Pref. signed: J.H.N.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Theology", - "Theology -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. H. Parker" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1846 - ], - "title": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1846)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1846" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "A library of fathers of the Holy Catholic church ; [3]" - ], - "contributorLiteral": [ - "Thornton, Charles, 1811?-1839.", - "Newman, John Henry, Saint, 1801-1890." - ], - "dateStartYear": [ - 1846 - ], - "idOclc": [ - "4561083" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1846)" - }, - { - "type": "nypl:Bnumber", - "value": "13428728" - }, - { - "type": "nypl:Oclc", - "value": "4561083" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3406318" - } - ], - "updatedAt": 1710983794637, - "publicationStatement": [ - "Oxford : J. H. Parker, 1846." - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Cæcilius Cyprian. 1846)", - "urn:bnum:13428728", - "urn:oclc:4561083", - "urn:identifier:(WaOLN)nyp3406318" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1846" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Theology -- Early works to 1800." - ], - "titleDisplay": [ - "The treatises of S. Caecilius Cyprian, Bishop of Carthage, and martyr / translated, with notes and indices." - ], - "uri": "b13428728", - "electronicResources": [ - { - "label": "Full text available via HathiTrust", - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433081641007" - } - ], - "placeOfPublication": [ - "Oxford" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 18.239601, - "b13428728" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13428728", - "_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": [ - "33433081641007" - ], - "identifier": [ - "urn:shelfmark:ZEM (Cyprian. Treatises of S. Ccilius Cyprian. 1846)", - "urn:barcode:33433081641007" - ], - "identifierV2": [ - { - "value": "ZEM (Cyprian. Treatises of S. Ccilius Cyprian. 1846)", - "type": "bf:ShelfMark" - }, - { - "value": "33433081641007", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZEM (Cyprian. Treatises of S. Ccilius Cyprian. 1846)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZEM (Cyprian. Treatises of S. Ccilius Cyprian. 1846)" - ], - "shelfMark_sort": "aZEM (Cyprian. Treatises of S. Ccilius Cyprian. 1846)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16492521" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14581670", - "_score": 17.182709, - "_source": { - "extent": [ - "106 p., 1 l." - ], - "note": [ - { - "noteType": "Note", - "label": "Last leaf blank.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Apud Ioannem à VVaesberge" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1643 - ], - "title": [ - "F. Thomæ Campanellæ Civitas solis poetica. Idea reipublicæ philosophicæ." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "8-*KB 1643 (Campanella, T. F. Thomæ Campanellæ Civitas solis poetica)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1643" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1643 - ], - "idOclc": [ - "43959985" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "8-*KB 1643 (Campanella, T. F. Thomæ Campanellæ Civitas solis poetica)" - }, - { - "type": "nypl:Bnumber", - "value": "14581670" - }, - { - "type": "nypl:Oclc", - "value": "43959985" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R020000209" - } - ], - "updatedAt": 1712866103287, - "publicationStatement": [ - "Vltraiecti, Apud Ioannem à VVaesberge, anno 1643." - ], - "identifier": [ - "urn:shelfmark:8-*KB 1643 (Campanella, T. F. Thomæ Campanellæ Civitas solis poetica)", - "urn:bnum:14581670", - "urn:oclc:43959985", - "urn:identifier:(WaOLN)R020000209" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1643" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "F. Thomæ Campanellæ Civitas solis poetica. Idea reipublicæ philosophicæ." - ], - "uri": "b14581670", - "electronicResources": [ - { - "label": "NYPL Digital Collections", - "url": "https://digitalcollections.nypl.org/collections/42ab9700-c605-012f-6574-58d385a7bc34" - } - ], - "placeOfPublication": [ - "Vltraiecti" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "14 cm. (12mo)" - ] - }, - "sort": [ - 17.182709, - "b14581670" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14581670", - "_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:8-*KB 1643 (Campanella, T. F. Thom Campanell Civitas solis poetica)" - ], - "identifierV2": [ - { - "value": "8-*KB 1643 (Campanella, T. F. Thom Campanell Civitas solis poetica)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "8-*KB 1643 (Campanella, T. F. Thom Campanell Civitas solis poetica)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "8-*KB 1643 (Campanella, T. F. Thom Campanell Civitas solis poetica)" - ], - "shelfMark_sort": "a8-*KB 1643 (Campanella, T. F. Thom Campanell Civitas solis poetica)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17052774", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Campanella%2C+Tommaso%2C+1568-1639.&CallNumber=8-*KB+1643+%28Campanella%2C+T.+F.+Thom+Campanell+Civitas+solis+poetica%29&Date=1643&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14581670&ItemISxN=i170527748&ItemPlace=Vltraiecti&ItemPublisher=Apud+Ioannem+%C3%A0+VVaesberge%2C+anno+1643.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b145816709&Site=SASRB&Title=F.+Thom%C3%A6+Campanell%C3%A6+Civitas+solis+poetica.+Idea+reipublic%C3%A6+philosophic%C3%A6." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13452428", - "_score": 17.072865, - "_source": { - "extent": [ - "xxxv, 50 p. ; 22 cm." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Christian union" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rodgers" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1852 - ], - "title": [ - "Th. C. Cypriani De unitate ecclesiae : ad optimorum librorum fidem expressa, cum variis lectionibus, adnotationibus Fellii, Baluzii, etc., instructa" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1852" - ], - "creatorLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Hyde, M. F.", - "Fellii, John, bp. of Oxford.", - "Baluzii, Etienne." - ], - "dateStartYear": [ - 1852 - ], - "idOclc": [ - "11851586" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)" - }, - { - "type": "nypl:Bnumber", - "value": "13452428" - }, - { - "type": "nypl:Oclc", - "value": "11851586" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3429373" - } - ], - "updatedAt": 1710976805904, - "publicationStatement": [ - "Burlingtoniae, [N.J.] : Rodgers, 1852." - ], - "identifier": [ - "urn:shelfmark:ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)", - "urn:bnum:13452428", - "urn:oclc:11851586", - "urn:identifier:(WaOLN)nyp3429373" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1852" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Christian union." - ], - "titleDisplay": [ - "Th. C. Cypriani De unitate ecclesiae : ad optimorum librorum fidem expressa, cum variis lectionibus, adnotationibus Fellii, Baluzii, etc., instructa / M.F. Hyde." - ], - "uri": "b13452428", - "placeOfPublication": [ - "Burlingtoniae, [N.J.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - 17.072865, - "b13452428" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13452428", - "_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:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433098541828" - ], - "identifier": [ - "urn:shelfmark:ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)", - "urn:barcode:33433098541828" - ], - "identifierV2": [ - { - "value": "ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)", - "type": "bf:ShelfMark" - }, - { - "value": "33433098541828", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)" - ], - "recapCustomerCode": [ - "NA" - ], - "requestable": [ - true - ], - "shelfMark": [ - "ZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)" - ], - "shelfMark_sort": "aZKA (Cyprian. Th. C. Cypriani de unitate ecclesiae)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16505829" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b12432819", - "_score": 16.611122, - "_source": { - "extent": [ - "xxvii, 636 p. ill., 8 maps (2 fold.)" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "\"List of books quoted\": p. [621]-625.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cyprian, Saint, Bishop of Carthage" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Appleton" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1897 - ], - "title": [ - "Cyprian: his life, his times, his work" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1897" - ], - "creatorLiteral": [ - "Benson, Edward White, 1829-1896." - ], - "idLccn": [ - "01017918" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1897 - ], - "idOclc": [ - "1998344" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)" - }, - { - "type": "nypl:Bnumber", - "value": "12432819" - }, - { - "type": "nypl:Oclc", - "value": "1998344" - }, - { - "type": "bf:Lccn", - "value": "01017918" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2417152" - } - ], - "updatedAt": 1711406339681, - "publicationStatement": [ - "New York, Appleton, 1897." - ], - "identifier": [ - "urn:shelfmark:AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)", - "urn:bnum:12432819", - "urn:oclc:1998344", - "urn:lccn:01017918", - "urn:identifier:(WaOLN)nyp2417152" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1897" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cyprian, Saint, Bishop of Carthage." - ], - "titleDisplay": [ - "Cyprian: his life, his times, his work, by Edward White Benson ..." - ], - "uri": "b12432819", - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 16.611122, - "b12432819" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b12432819", - "_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:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433114850294" - ], - "identifier": [ - "urn:shelfmark:AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)", - "urn:barcode:33433114850294" - ], - "identifierV2": [ - { - "value": "AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)", - "type": "bf:ShelfMark" - }, - { - "value": "33433114850294", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "AN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)" - ], - "shelfMark_sort": "aAN (Cyprian) (Benson, E. W. Cyprian: his life, his times, his work)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16025677" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b10278068", - "_score": 16.369244, - "_source": { - "extent": [ - "xiv, 137 p. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 129-130.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ekwensi, Cyprian", - "Ekwensi, Cyprian -- Criticism and interpretation" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Evans Bros." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "title": [ - "Cyprian Ekwensi" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "creatorLiteral": [ - "Emeny̲onu, Ernest, 1939-" - ], - "idLccn": [ - "74190307" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Modern African writers" - ], - "dateStartYear": [ - 1974 - ], - "idOclc": [ - "1322546", - "NYPG754671797-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)" - }, - { - "type": "nypl:Bnumber", - "value": "10278068" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "0237284170 : c£2.00. a0237284189 bpbk." - }, - { - "type": "nypl:Oclc", - "value": "1322546" - }, - { - "type": "nypl:Oclc", - "value": "NYPG754671797-B" - }, - { - "type": "bf:Lccn", - "value": "74190307" - }, - { - "type": "bf:Identifier", - "value": "NN754671797" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0280486" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1322546" - } - ], - "updatedAt": 1711126716061, - "publicationStatement": [ - "London : Evans Bros., 1974." - ], - "identifier": [ - "urn:shelfmark:Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)", - "urn:bnum:10278068", - "urn:isbn:0237284170 : c£2.00. a0237284189 bpbk.", - "urn:oclc:1322546", - "urn:oclc:NYPG754671797-B", - "urn:lccn:74190307", - "urn:identifier:NN754671797", - "urn:identifier:(WaOLN)nyp0280486", - "urn:identifier:(OCoLC)1322546" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ekwensi, Cyprian -- Criticism and interpretation." - ], - "titleDisplay": [ - "Cyprian Ekwensi / Ernest Emeny̲onu." - ], - "uri": "b10278068", - "lccClassification": [ - "PR9387.9.E37 Z63" - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - 16.369244, - "b10278068" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b10278068", - "_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:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433070067776" - ], - "identifier": [ - "urn:shelfmark:Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)", - "urn:barcode:33433070067776" - ], - "identifierV2": [ - { - "value": "Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)", - "type": "bf:ShelfMark" - }, - { - "value": "33433070067776", - "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 823-E (Emeny̲onu, E. Cyprian Ekwensi)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "Sc 823-E (Emeny̲onu, E. Cyprian Ekwensi)" - ], - "shelfMark_sort": "aSc 823-E (Emeny̲onu, E. Cyprian Ekwensi)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14836920" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b13834767", - "_score": 15.822474, - "_source": { - "extent": [ - "198 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Judaism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Case editrice Israel" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1950 - ], - "title": [ - "La vita di Israele." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*PNG (Artom, E. S. Vita di Israele)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1950" - ], - "creatorLiteral": [ - "Artom, Elia Samuele, 1887-1965." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Unione delle Comunità israelitiche italiane." - ], - "dateStartYear": [ - 1950 - ], - "idOclc": [ - "39922899" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*PNG (Artom, E. S. Vita di Israele)" - }, - { - "type": "nypl:Bnumber", - "value": "13834767" - }, - { - "type": "nypl:Oclc", - "value": "39922899" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0163952" - } - ], - "updatedAt": 1711640518985, - "publicationStatement": [ - "Firenze, Case editrice Israel, 5710-1950." - ], - "identifier": [ - "urn:shelfmark:*PNG (Artom, E. S. Vita di Israele)", - "urn:bnum:13834767", - "urn:oclc:39922899", - "urn:identifier:(WaOLN)nyp0163952" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Judaism." - ], - "titleDisplay": [ - "La vita di Israele." - ], - "uri": "b13834767", - "placeOfPublication": [ - "Firenze" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - 15.822474, - "b13834767" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b13834767", - "_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:maf92", - "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" - ], - "idBarcode": [ - "33433076940828" - ], - "identifier": [ - "urn:shelfmark:*PNG (Artom, E. S. Vita di Israele)", - "urn:barcode:33433076940828" - ], - "identifierV2": [ - { - "value": "*PNG (Artom, E. S. Vita di Israele)", - "type": "bf:ShelfMark" - }, - { - "value": "33433076940828", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XH" - ], - "physicalLocation": [ - "*PNG (Artom, E. S. Vita di Israele)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*PNG (Artom, E. S. Vita di Israele)" - ], - "shelfMark_sort": "a*PNG (Artom, E. S. Vita di Israele)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16847129" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-06-07", - "_id": "b14283724", - "_score": 15.813048, - "_source": { - "extent": [ - "58 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Engraved t.-p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signatures: A-G⁴H²(H₂ blank? and wanting)", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Galilei, Galileo, 1564-1642", - "Astronomy", - "Astronomy -- Early works to 1800", - "Magic", - "Knowledge" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "impensis G. Tampachii, typis E. Kempfferi" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1622 - ], - "title": [ - "F. Thomæ Campanellæ ... Apologia pro Galileo ..." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*KB 1620 (Campanella, T. F. Thomæ Campanellæ De sensv rervm et magia)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1622" - ], - "creatorLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Adami, Tobias, 1581-1643." - ], - "dateStartYear": [ - 1622 - ], - "idOclc": [ - "2600319" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KB 1620 (Campanella, T. F. Thomæ Campanellæ De sensv rervm et magia)" - }, - { - "type": "nypl:Bnumber", - "value": "14283724" - }, - { - "type": "nypl:Oclc", - "value": "2600319" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R190000620" - } - ], - "updatedAt": 1712865385183, - "publicationStatement": [ - "Francofvrti, impensis G. Tampachii, typis E. Kempfferi, 1622." - ], - "identifier": [ - "urn:shelfmark:*KB 1620 (Campanella, T. F. Thomæ Campanellæ De sensv rervm et magia)", - "urn:bnum:14283724", - "urn:oclc:2600319", - "urn:identifier:(WaOLN)R190000620" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1622" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Galilei, Galileo, 1564-1642.", - "Astronomy -- Early works to 1800.", - "Magic.", - "Knowledge." - ], - "titleDisplay": [ - "F. Thomæ Campanellæ ... Apologia pro Galileo ... Vbi disqviritvr, vtrvm ratio philosopahndi [!], qvam Galilevs celebrat, faueat sacris scripturis, an aduersetur." - ], - "uri": "b14283724", - "placeOfPublication": [ - "Francofvrti" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Apologia pro Galileo." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - 15.813048, - "b14283724" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b14283724", - "_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:*KB 1620 (Campanella, T. F. Thom Campanell De sensv rervm et magia)" - ], - "identifierV2": [ - { - "value": "*KB 1620 (Campanella, T. F. Thom Campanell De sensv rervm et magia)", - "type": "bf:ShelfMark" - } - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "physicalLocation": [ - "*KB 1620 (Campanella, T. F. Thom Campanell De sensv rervm et magia)" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*KB 1620 (Campanella, T. F. Thom Campanell De sensv rervm et magia)" - ], - "shelfMark_sort": "a*KB 1620 (Campanella, T. F. Thom Campanell De sensv rervm et magia)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16973794", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Campanella%2C+Tommaso%2C+1568-1639.&CallNumber=*KB+1620+%28Campanella%2C+T.+F.+Thom+Campanell+De+sensv+rervm+et+magia%29&Date=1622&Form=30&Genre=book+non-circ&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14283724&ItemISxN=i169737949&ItemPlace=Francofvrti&ItemPublisher=impensis+G.+Tampachii%2C+typis+E.+Kempfferi%2C+1622.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b142837246&Site=SASRB&Title=F.+Thom%C3%A6+Campanell%C3%A6+...+Apologia+pro+Galileo+..." - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-e83d3f30d3783e3e0616556e21343dd3.json b/test/fixtures/query-e83d3f30d3783e3e0616556e21343dd3.json deleted file mode 100644 index 39085328..00000000 --- a/test/fixtures/query-e83d3f30d3783e3e0616556e21343dd3.json +++ /dev/null @@ -1,971 +0,0 @@ -{ - "body": { - "took": 28, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_score": 26.280298, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1711656889146, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:isbn:ISBN -- 020 $z", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:issn:ISSN -- 022", - "urn:identifier:Report number. -- 027", - "urn:identifier:Publisher no. -- 028 02 ", - "urn:identifier:Standard number (old RLIN, etc.) -- 035", - "urn:identifier:Sudoc no. -- 086", - "urn:identifier:GPO Item number. -- 074" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "201" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "зглавие руссий" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "electronicResources": [ - { - "label": "856 40", - "url": "http://blogs.nypl.org/rcramer/" - }, - { - "label": "Yizkor Book (NYPL resource) 856 41", - "url": "http://yizkor.nypl.org/index.php?id=2936" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ] - }, - "sort": [ - 26.280298, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "v.1" - ], - "enumerationChronology_sort": [ - " 1-" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "idBarcode": [ - "3333333333" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - false - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "uri": "i37857771" - }, - "sort": [ - " 1-" - ] - }, - { - "_index": "resources-2024-06-07", - "_id": "b22144813", - "_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" - ], - "enumerationChronology": [ - "nothing" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "idBarcode": [ - "44455533322211" - ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "value": "44455533322211", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "requestable": [ - true - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-a865068f0cd5cab7af8e4b0dfdfbb0b7.json b/test/fixtures/query-ea0b2bc9676d3f9ead597d32958f113b.json similarity index 94% rename from test/fixtures/query-a865068f0cd5cab7af8e4b0dfdfbb0b7.json rename to test/fixtures/query-ea0b2bc9676d3f9ead597d32958f113b.json index 29c0c39a..f3fc8db9 100644 --- a/test/fixtures/query-a865068f0cd5cab7af8e4b0dfdfbb0b7.json +++ b/test/fixtures/query-ea0b2bc9676d3f9ead597d32958f113b.json @@ -1,6 +1,6 @@ { "body": { - "took": 96, + "took": 92, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json b/test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json deleted file mode 100644 index 8adae35a..00000000 --- a/test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "body": { - "took": 104, - "timed_out": false, - "_shards": { - "total": 2, - "successful": 2, - "skipped": 0, - "failed": 0 - }, - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-61017f70567d3d2c79ce0f64d1e9d219.json b/test/fixtures/query-fe4df54360f6493e55692495b7991911.json similarity index 99% rename from test/fixtures/query-61017f70567d3d2c79ce0f64d1e9d219.json rename to test/fixtures/query-fe4df54360f6493e55692495b7991911.json index 36459ec8..e7d24c8a 100644 --- a/test/fixtures/query-61017f70567d3d2c79ce0f64d1e9d219.json +++ b/test/fixtures/query-fe4df54360f6493e55692495b7991911.json @@ -1,6 +1,6 @@ { "body": { - "took": 98, + "took": 91, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json b/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json deleted file mode 100644 index 03776794..00000000 --- a/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json +++ /dev/null @@ -1,287 +0,0 @@ -[ - { - "itemBarcode": "33433006564110", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006564128", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433007704541", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433007704533", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666345", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006558369", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006563666", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562098", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562148", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006561728", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006563682", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006561496", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433066615869", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433007589413", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433007589405", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062059369", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433006666956", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666972", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006667632", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666766", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006667046", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006668051", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666857", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666931", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666949", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433061770016", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433104239961", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433011065715", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666659", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666642", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666634", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433065857470", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433006558385", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006558419", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006558401", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006558393", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433003299900", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562015", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666261", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006561900", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433007880747", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006561918", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562072", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666873", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666865", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666881", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666899", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666907", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666980", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006667186", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666485", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006563625", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006666311", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006668069", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006561793", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562023", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006562106", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-0a7edb8146ecacf9a00e14bbabafcef3.json b/test/fixtures/scsb-by-barcode-0a7edb8146ecacf9a00e14bbabafcef3.json deleted file mode 100644 index 9da52fc6..00000000 --- a/test/fixtures/scsb-by-barcode-0a7edb8146ecacf9a00e14bbabafcef3.json +++ /dev/null @@ -1,487 +0,0 @@ -[ - { - "itemBarcode": "33433076530082", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433076543143", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433116522354", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099607917", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099608063", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099608188", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433115147914", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433105255586", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433074083142", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433015935228", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080536703", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433066849898", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433083743579", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433083248157", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433129973537", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433128637521", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433129967299", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433074089354", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433084525975", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433084525850", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433084525744", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433136664426", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433133822951", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121740777", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433082744172", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433088868009", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433112707983", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433090571609", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433122302064", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433121037372", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121037380", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121037398", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433105583011", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433133819312", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433072300001", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076528771", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433103931089", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433103931071", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433103931063", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433105334035", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433082660626", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433084879190", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080536943", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433079061556", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433102440405", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433105255560", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433079255406", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433079632331", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121631182", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433117118939", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433117118947", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433082661210", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433092906878", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433084938970", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119846511", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119846776", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433116067418", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062903889", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062903871", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062903863", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433122302130", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433018223473", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433032248373", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121714392", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121648418", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119514770", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062901107", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062901099", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062901081", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433069827420", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433069836363", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110614108", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433129948604", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130235942", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433076530389", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433129967240", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130242054", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433133816045", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433129967018", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433129938522", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433133815476", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433127812190", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433127812208", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433127812216", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433078286055", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433078286048", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433078286030", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433068763394", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062420140", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433062420132", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433062420124", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433132340229", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433133824742", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433133790323", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121749372", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121734580", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121672228", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-15743dd33c45297fb77d2a2df7c6d0df.json b/test/fixtures/scsb-by-barcode-342d9736334f98262e652c2ce03a40a9.json similarity index 87% rename from test/fixtures/scsb-by-barcode-15743dd33c45297fb77d2a2df7c6d0df.json rename to test/fixtures/scsb-by-barcode-342d9736334f98262e652c2ce03a40a9.json index 32ac78fa..82206b2e 100644 --- a/test/fixtures/scsb-by-barcode-15743dd33c45297fb77d2a2df7c6d0df.json +++ b/test/fixtures/scsb-by-barcode-342d9736334f98262e652c2ce03a40a9.json @@ -148,25 +148,5 @@ "itemBarcode": "MRS0098701", "itemAvailabilityStatus": "Available", "errorMessage": null - }, - { - "itemBarcode": "33433137385237", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119383762", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433079269134", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "MR00349976", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-427c2ff19014ab013abd7224286a51f2.json b/test/fixtures/scsb-by-barcode-427c2ff19014ab013abd7224286a51f2.json deleted file mode 100644 index 97ce3b44..00000000 --- a/test/fixtures/scsb-by-barcode-427c2ff19014ab013abd7224286a51f2.json +++ /dev/null @@ -1,247 +0,0 @@ -[ - { - "itemBarcode": "33433104031624", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433019761133", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433110673104", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433061246330", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433110792367", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433019761158", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433104031749", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433087534115", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433087534099", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019761141", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433110682295", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433104031715", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433087534107", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433077464786", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433079167270", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119061384", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33333219831399", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433081514691", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102471178", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433075848816", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433075848808", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433100305451", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102731795", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433074320353", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119061350", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119061368", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119061392", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433092299183", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433100797186", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119061418", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433017771977", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433060905050", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081514683", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433104031756", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433067747232", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433106182870", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433101519027", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433098995768", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433081640991", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433068229701", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433023510260", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433088695022", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433068229727", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433087371153", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433081641007", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433098541828", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433114850294", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433070067776", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433076940828", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-80db0a1c485064e1900a4a94c98639bd.json b/test/fixtures/scsb-by-barcode-80db0a1c485064e1900a4a94c98639bd.json deleted file mode 100644 index f81bd7c2..00000000 --- a/test/fixtures/scsb-by-barcode-80db0a1c485064e1900a4a94c98639bd.json +++ /dev/null @@ -1,322 +0,0 @@ -[ - { - "itemBarcode": "33433006598316", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597698", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598282", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598472", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598423", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597557", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597797", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598100", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598159", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597581", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597649", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598118", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598050", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433008907382", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433008907374", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080384773", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080384765", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080384757", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433109065791", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433109065783", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433109065775", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433006598415", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433031345741", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598126", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598191", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598548", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598340", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597607", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597730", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597789", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598092", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598084", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597904", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433101132383", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433006597532", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597599", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597938", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597987", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598175", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598217", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598258", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598266", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598571", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597524", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597912", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006598142", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433006597839", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076827744", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433076827736", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433076827728", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433061442244", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433083535520", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067521314", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067521322", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067521306", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433089163921", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433089163939", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433089163913", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433086395617", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433086395609", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067567903", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433030819555", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433030818151", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433061611111", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-b6609dc9c3b05c2c98a4b63ed49c543e.json b/test/fixtures/scsb-by-barcode-b6609dc9c3b05c2c98a4b63ed49c543e.json deleted file mode 100644 index 98e1912d..00000000 --- a/test/fixtures/scsb-by-barcode-b6609dc9c3b05c2c98a4b63ed49c543e.json +++ /dev/null @@ -1,172 +0,0 @@ -[ - { - "itemBarcode": "MR61509485", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433040606604", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433047232982", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433066644109", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433066644091", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433086370503", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433110534520", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433110534512", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433116627567", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "HXURI9", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "32044042656827", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "CU63297698", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "HN9W6Y", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433077473407", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "HXN3HY", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433063602100", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433064016748", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433124442363", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433015996212", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433015996220", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433125489173", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433077390452", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "MR75567024", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "CU61479420", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "HXS4Y6", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "HXFDCB", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "CU71452699", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "MRS0146692", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433137385237", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119383762", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433079269134", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "MRS0093670", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "MRS0098701", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "MR00349976", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-b7457851c10a37b8bef0f150e8ecc174.json b/test/fixtures/scsb-by-barcode-b7457851c10a37b8bef0f150e8ecc174.json deleted file mode 100644 index 6d1353f5..00000000 --- a/test/fixtures/scsb-by-barcode-b7457851c10a37b8bef0f150e8ecc174.json +++ /dev/null @@ -1,302 +0,0 @@ -[ - { - "itemBarcode": "33433099509238", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433089017630", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433080032174", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080032166", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102011909", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099461737", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433114308988", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433086791955", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433081819249", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102385576", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433106407806", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433100850308", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081785937", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081785911", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081785929", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433095338145", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433077538639", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433101113094", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433132410352", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102093253", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102093261", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099461711", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081820247", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081820239", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433089017648", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433081921201", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433102011917", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081918256", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081917514", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433100843105", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080456274", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080456282", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081824892", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433103696807", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433093128290", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099462768", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081824900", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081819892", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085297467", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433088454164", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433105073294", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433097940310", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433083343370", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433111095463", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433097940161", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433100808082", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433093154825", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433115101077", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433086427063", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433086427071", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433115104972", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081785945", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099462875", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433103397810", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433103397802", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433103396473", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081040655", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080441482", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433104821057", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099461786", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/requestability_resolver.test.js b/test/requestability_resolver.test.js index 0a348373..ccd50855 100644 --- a/test/requestability_resolver.test.js +++ b/test/requestability_resolver.test.js @@ -3,6 +3,7 @@ const elasticSearchResponse = require('./fixtures/elastic_search_response.js') const specRequestableElasticSearchResponse = require('./fixtures/specRequestable-es-response') const eddElasticSearchResponse = require('./fixtures/edd_elastic_search_response') const noBarcodeResponse = require('./fixtures/no_barcode_es_response') +const noRecapResponse = require('./fixtures/no_recap_response') describe('RequestabilityResolver', () => { describe('fixItemRequestability', function () { @@ -203,4 +204,22 @@ describe('RequestabilityResolver', () => { expect(nonEddItem.eddRequestable).to.equal(false) }) }) + + describe('Missing recapCustomerCode', function () { + const response = noRecapResponse.fakeElasticSearchResponseNyplItem() + const resolved = RequestabilityResolver.fixItemRequestability(response) + it('marks edd and physical requestability correctly', function () { + const items = resolved.hits.hits[0]._source.items + const firstItem = items.find((item) => { + return item.uri === 'i102836649' + }) + const secondItem = items.find((item) => { + return item.uri === 'i102836659' + }) + expect(firstItem.physRequestable).to.equal(true) + expect(firstItem.eddRequestable).to.equal(true) + expect(secondItem.physRequestable).to.equal(false) + expect(secondItem.eddRequestable).to.equal(false) + }) + }) })