diff --git a/config/qa.env b/config/qa.env index b26ff765..b69e400f 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,7 +1,7 @@ # Greg built self-hosted production domain: ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHgwdgYJKoZIhvcNAQcGoGkwZwIBADBiBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDIYpOz/BbRlJZUul7gIBEIA1idumQ6fdf/j5/pzF4t96MGGH/eV1gD4WCyLUnScgNYqtRNK0ajRO6XVroswsrJtgCwUerDM= -# resources-2024-06-07: -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDGCD4H/9mg45Xe52jgIBEIAv+c8zw6vCnaLRRNvM0d9bsh97ZB7pwjn8Zim93cYTc0oKGs9G52G3HsJsGT855N8= +# resources-2024-06-13: +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHp+Hkdg9AqFe18QggIBEIAvZqSBQgs8v/wpkOVl5q54mQtuvBZpnXYDGc+zxiUHLZLKsqiCs58dGFnZvekDWXs= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= diff --git a/lib/availability_resolver.js b/lib/availability_resolver.js index 8f2b7eb7..edede7bc 100644 --- a/lib/availability_resolver.js +++ b/lib/availability_resolver.js @@ -94,7 +94,9 @@ class AvailabilityResolver { logger.debug('_fixItemStatusAggregation: Skipping because no SCSB statuses provided') return Promise.resolve() } - const bnum = resp.hits.hits[0]._id + const bnum = resp.hits.hits[0]?._id + if (!bnum) return + const { nyplSource } = NyplSourceMapper.instance().splitIdentifier(bnum) // Get total number of items: diff --git a/lib/es-client.js b/lib/es-client.js index 09c239cd..9775a6dc 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -19,7 +19,7 @@ clientWrapper.esClient = function () { port, auth: { username, password } } - logger.debug(`Connecting to ES at ${host}:${port} ${username && password ? 'with creds' : 'w/out creds'}`) + logger.debug(`Connecting to ES at ${host}:${port}/${process.env.RESOURCES_INDEX} ${username && password ? 'with creds' : 'w/out creds'}`) this._esClient = new elasticsearch.Client(options) } return this._esClient diff --git a/lib/resources.js b/lib/resources.js index 9be426d5..23ea0be9 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -635,7 +635,7 @@ module.exports = function (app, _private = null) { script: { script: { inline: 'doc[\'items.idBarcode\'].value == null || ' + - 'params.unavailableRecapBarcodes.contains(doc[\'items.idBarcode\'].values[0])', + 'params.unavailableRecapBarcodes.contains(doc[\'items.idBarcode\'][0])', lang: 'painless', params: { unavailableRecapBarcodes } } @@ -1042,7 +1042,7 @@ const buildElasticQueryForKeywords = function (params) { query_string: { fields: fieldMap._root, query: escapeQuery(params.q), - default_operator: 'AND' + default_operator: 'OR' } }) @@ -1341,7 +1341,7 @@ const buildElasticQuery = function (params) { match_phrase: { 'contributorLiteral.folded': { query: querySansQuotes, - boost: 100 + boost: 25 } } }, @@ -1352,6 +1352,14 @@ const buildElasticQuery = function (params) { boost: 100 } } + }, + { + match_phrase: { + creatorModifiedName: { + query: querySansQuotes, + boost: 1000 + } + } } ]) } diff --git a/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json b/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json index 85052498..b0f47965 100644 --- a/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json +++ b/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json @@ -1,6 +1,6 @@ { "body": { - "took": 7, + "took": 28, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json b/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json index bac5f03e..2dfab6a3 100644 --- a/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json +++ b/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json @@ -1,6 +1,6 @@ { "body": { - "took": 18, + "took": 9, "timed_out": false, "_shards": { "total": 2, @@ -532,31 +532,31 @@ "hits": [] } }, - "allItems": { + "items": { "hits": { "total": { - "value": 4, + "value": 1, "relation": "eq" }, - "max_score": 0, + "max_score": null, "hits": [ { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 0 + "offset": 3 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -569,67 +569,58 @@ ], "dateRange": [ { - "gte": "1933", - "lte": "1933" + "gte": "1860", + "lte": "1860" } ], "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "Jahrg. 1860" ], "enumerationChronology_sort": [ - " -1933" + " -1860" ], "formatLiteral": [ "Text" ], "holdingLocation": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" } ], "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], "idBarcode": [ - "33433088646033" + "33433097964930" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", "type": "bf:ShelfMark" }, { - "value": "33433088646033", + "value": "33433097964930", "type": "bf:Barcode" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "m2CustomerCode": [ + "XA" ], "physicalLocation": [ "*DF+ (Morgenblatt für gebildete Leser)" ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", @@ -642,15 +633,29 @@ "type": [ "bf:Item" ], - "uri": "i28309666" - } - }, + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 1 + "offset": 0 }, "_score": 0, "_source": { @@ -674,15 +679,15 @@ ], "dateRange": [ { - "gte": "1855", - "lte": "1855" + "gte": "1933", + "lte": "1933" } ], "enumerationChronology": [ - "Jahrg. 49 (1855)" + "Jahrg. Mar.-May 1933" ], "enumerationChronology_sort": [ - " -1855" + " -1933" ], "formatLiteral": [ "Text" @@ -697,19 +702,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433096425198" + "33433088646033" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", "type": "bf:ShelfMark" }, { - "value": "33433096425198", + "value": "33433088646033", "type": "bf:Barcode" } ], @@ -732,9 +737,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", @@ -747,7 +752,7 @@ "type": [ "bf:Item" ], - "uri": "i28309648" + "uri": "i28309666" } }, { @@ -755,7 +760,7 @@ "_id": "b14937001", "_nested": { "field": "items", - "offset": 2 + "offset": 1 }, "_score": 0, "_source": { @@ -779,15 +784,15 @@ ], "dateRange": [ { - "gte": "1861", - "lte": "1861" + "gte": "1855", + "lte": "1855" } ], "enumerationChronology": [ - "Jahrg. 1861" + "Jahrg. 49 (1855)" ], "enumerationChronology_sort": [ - " -1861" + " -1855" ], "formatLiteral": [ "Text" @@ -802,19 +807,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433088646041" + "33433096425198" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "type": "bf:ShelfMark" }, { - "value": "33433088646041", + "value": "33433096425198", "type": "bf:Barcode" } ], @@ -837,9 +842,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", @@ -852,37 +857,26 @@ "type": [ "bf:Item" ], - "uri": "i28309668" + "uri": "i28309648" } - } - ] - } - }, - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ + }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 3 + "offset": 2 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -895,58 +889,67 @@ ], "dateRange": [ { - "gte": "1860", - "lte": "1860" + "gte": "1861", + "lte": "1861" } ], "enumerationChronology": [ - "Jahrg. 1860" + "Jahrg. 1861" ], "enumerationChronology_sort": [ - " -1860" + " -1861" ], "formatLiteral": [ "Text" ], "holdingLocation": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "loc:rc2ma", + "label": "Offsite" } ], "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433097964930" + "33433088646041" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", "type": "bf:ShelfMark" }, { - "value": "33433097964930", + "value": "33433088646041", "type": "bf:Barcode" } ], - "m2CustomerCode": [ - "XA" + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "physicalLocation": [ "*DF+ (Morgenblatt für gebildete Leser)" ], + "recapCustomerCode": [ + "NA" + ], "requestable": [ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", @@ -959,11 +962,8 @@ "type": [ "bf:Item" ], - "uri": "i28543800" - }, - "sort": [ - " -1860" - ] + "uri": "i28309668" + } } ] } diff --git a/test/fixtures/query-0600618a472f03915c357c47f7252b21.json b/test/fixtures/query-0600618a472f03915c357c47f7252b21.json index 6d6bc7c9..98707429 100644 --- a/test/fixtures/query-0600618a472f03915c357c47f7252b21.json +++ b/test/fixtures/query-0600618a472f03915c357c47f7252b21.json @@ -1,6 +1,6 @@ { "body": { - "took": 12, + "took": 17, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json b/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json index 8604733c..3541fbcb 100644 --- a/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json +++ b/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json @@ -1,6 +1,6 @@ { "body": { - "took": 8, + "took": 17, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json b/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json index af255a89..945874da 100644 --- a/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json +++ b/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json @@ -1,6 +1,6 @@ { "body": { - "took": 17, + "took": 33, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-1291d3150cfa5b7b4777105c88219d4f.json b/test/fixtures/query-1291d3150cfa5b7b4777105c88219d4f.json index 50a6a358..ab6cb167 100644 --- a/test/fixtures/query-1291d3150cfa5b7b4777105c88219d4f.json +++ b/test/fixtures/query-1291d3150cfa5b7b4777105c88219d4f.json @@ -1,6 +1,6 @@ { "body": { - "took": 1175, + "took": 1188, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-15fa70482fe448841a81e6a1c8a80cbe.json b/test/fixtures/query-15fa70482fe448841a81e6a1c8a80cbe.json index 85e664a0..74d1f17b 100644 --- a/test/fixtures/query-15fa70482fe448841a81e6a1c8a80cbe.json +++ b/test/fixtures/query-15fa70482fe448841a81e6a1c8a80cbe.json @@ -1,6 +1,6 @@ { "body": { - "took": 1664, + "took": 2601, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-22ab5905b807f982e076a2f83f3a1078.json b/test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json similarity index 98% rename from test/fixtures/query-22ab5905b807f982e076a2f83f3a1078.json rename to test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json index 3a9aa1d1..2123aecf 100644 --- a/test/fixtures/query-22ab5905b807f982e076a2f83f3a1078.json +++ b/test/fixtures/query-17471f4778bfb0459e13a8b48f082954.json @@ -1,21 +1,24 @@ { "body": { - "took": 577, + "took": 19, "timed_out": false, "_shards": { - "total": 3, - "successful": 3, + "total": 2, + "successful": 2, + "skipped": 0, "failed": 0 }, "hits": { - "total": 1, + "total": { + "value": 1, + "relation": "eq" + }, "max_score": null, "hits": [ { - "_index": "resources-2018-04-09", - "_type": "resource", + "_index": "resources-2024-06-07", "_id": "b22144813", - "_score": 33.585762, + "_score": 26.280298, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -733,23 +736,31 @@ ] }, "sort": [ - 33.585762, + 26.280298, "b22144813" ], "inner_hits": { "electronicResources": { "hits": { - "total": 0, + "total": { + "value": 0, + "relation": "eq" + }, "max_score": null, "hits": [] } }, "items": { "hits": { - "total": 2, + "total": { + "value": 2, + "relation": "eq" + }, "max_score": null, "hits": [ { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 0 @@ -853,6 +864,8 @@ ] }, { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 1 diff --git a/test/fixtures/query-1bb7577c8309187f1cfcf45d988b839d.json b/test/fixtures/query-1bb7577c8309187f1cfcf45d988b839d.json index d8aff138..8c2ca45b 100644 --- a/test/fixtures/query-1bb7577c8309187f1cfcf45d988b839d.json +++ b/test/fixtures/query-1bb7577c8309187f1cfcf45d988b839d.json @@ -1,6 +1,6 @@ { "body": { - "took": 1504, + "took": 4866, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-1c7a2f15ba085bec0d5eb27e0dafc3bc.json b/test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json similarity index 98% rename from test/fixtures/query-1c7a2f15ba085bec0d5eb27e0dafc3bc.json rename to test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json index a1081e7e..79244c6f 100644 --- a/test/fixtures/query-1c7a2f15ba085bec0d5eb27e0dafc3bc.json +++ b/test/fixtures/query-20d5dd55718a7c7ce4b2eb1615f979ca.json @@ -1,21 +1,24 @@ { "body": { - "took": 617, + "took": 240, "timed_out": false, "_shards": { - "total": 3, - "successful": 3, + "total": 2, + "successful": 2, + "skipped": 0, "failed": 0 }, "hits": { - "total": 1, + "total": { + "value": 1, + "relation": "eq" + }, "max_score": null, "hits": [ { - "_index": "resources-2018-04-09", - "_type": "resource", + "_index": "resources-2024-06-07", "_id": "b22144813", - "_score": 17.58589, + "_score": 809.9933, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -733,23 +736,31 @@ ] }, "sort": [ - 17.58589, + 809.9933, "b22144813" ], "inner_hits": { "electronicResources": { "hits": { - "total": 0, + "total": { + "value": 0, + "relation": "eq" + }, "max_score": null, "hits": [] } }, "items": { "hits": { - "total": 2, + "total": { + "value": 2, + "relation": "eq" + }, "max_score": null, "hits": [ { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 0 @@ -853,6 +864,8 @@ ] }, { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 1 diff --git a/test/fixtures/query-23849ca1d228813ed137753f599e05d9.json b/test/fixtures/query-23849ca1d228813ed137753f599e05d9.json deleted file mode 100644 index 66ff8c5e..00000000 --- a/test/fixtures/query-23849ca1d228813ed137753f599e05d9.json +++ /dev/null @@ -1,519 +0,0 @@ -{ - "body": { - "took": 196, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "pb1717", - "_score": 31.070076, - "_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.070076, - "pb1717" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "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-2018-04-09", - "_type": "resource", - "_id": "pb9917173506421", - "_score": 29.835552, - "_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": [ - 29.835552, - "pb9917173506421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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 - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json b/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json index 4fc56176..1b5a48c0 100644 --- a/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json +++ b/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json @@ -1,6 +1,6 @@ { "body": { - "took": 8, + "took": 33, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json b/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json new file mode 100644 index 00000000..a1fb078a --- /dev/null +++ b/test/fixtures/query-26b90d049a2c129e08569a07540af0fa.json @@ -0,0 +1,4558 @@ +{ + "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-2a58c682e2d8b9a91433a9e79f7f45ce.json b/test/fixtures/query-2a58c682e2d8b9a91433a9e79f7f45ce.json deleted file mode 100644 index a4718c0f..00000000 --- a/test/fixtures/query-2a58c682e2d8b9a91433a9e79f7f45ce.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "body": { - "took": 536, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b12709113", - "_score": 858.27045, - "_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": [ - 858.27045, - "b12709113" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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 - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json b/test/fixtures/query-47dd9aa830efc6f22110a50fe5ae5795.json similarity index 94% rename from test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json rename to test/fixtures/query-47dd9aa830efc6f22110a50fe5ae5795.json index a121684b..53b9f98e 100644 --- a/test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json +++ b/test/fixtures/query-47dd9aa830efc6f22110a50fe5ae5795.json @@ -1,10 +1,10 @@ { "body": { - "took": 32, + "took": 89, "timed_out": false, "_shards": { - "total": 1, - "successful": 1, + "total": 2, + "successful": 2, "skipped": 0, "failed": 0 }, @@ -13,12 +13,12 @@ "value": 1, "relation": "eq" }, - "max_score": 16.395695, + "max_score": 15.702286, "hits": [ { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", - "_score": 16.395695, + "_score": 15.702286, "_source": { "extent": [ "volumes : illustrations ;" @@ -1388,7 +1388,7 @@ "max_score": 0, "hits": [ { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1496,7 +1496,7 @@ } }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1604,7 +1604,7 @@ } }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1717,13 +1717,13 @@ "items": { "hits": { "total": { - "value": 9, + "value": 10, "relation": "eq" }, "max_score": null, "hits": [ { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1802,7 +1802,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1881,7 +1881,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -1960,7 +1960,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2039,7 +2039,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2118,7 +2118,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2197,7 +2197,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2276,7 +2276,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2355,7 +2355,7 @@ ] }, { - "_index": "resources-2024-06-05", + "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", @@ -2432,6 +2432,120 @@ "sort": [ " 97-2021-12-20" ] + }, + { + "_index": "resources-2024-06-07", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102084" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327829" + }, + "sort": [ + " 90-2014" + ] } ] } diff --git a/test/fixtures/query-eb29e24e8aca64f740c681a4cf9819c3.json b/test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json similarity index 99% rename from test/fixtures/query-eb29e24e8aca64f740c681a4cf9819c3.json rename to test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json index 3ea83c8f..0777529a 100644 --- a/test/fixtures/query-eb29e24e8aca64f740c681a4cf9819c3.json +++ b/test/fixtures/query-4869ff5455a5773f40116e9599ed83a2.json @@ -1,6 +1,6 @@ { "body": { - "took": 2529, + "took": 2198, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-498f1c3524a8cb8223f37c58a50209e2.json b/test/fixtures/query-498f1c3524a8cb8223f37c58a50209e2.json index a01b0323..548f30c3 100644 --- a/test/fixtures/query-498f1c3524a8cb8223f37c58a50209e2.json +++ b/test/fixtures/query-498f1c3524a8cb8223f37c58a50209e2.json @@ -1,6 +1,6 @@ { "body": { - "took": 2612, + "took": 3208, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-4d4c0c496695b3527502785b7dc99cba.json b/test/fixtures/query-4d4c0c496695b3527502785b7dc99cba.json index 6b60eaa0..038648fb 100644 --- a/test/fixtures/query-4d4c0c496695b3527502785b7dc99cba.json +++ b/test/fixtures/query-4d4c0c496695b3527502785b7dc99cba.json @@ -1,6 +1,6 @@ { "body": { - "took": 804, + "took": 798, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-3dec71921670299556506bfc7f2408c0.json b/test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json similarity index 98% rename from test/fixtures/query-3dec71921670299556506bfc7f2408c0.json rename to test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json index 17250ed8..cc65aa5a 100644 --- a/test/fixtures/query-3dec71921670299556506bfc7f2408c0.json +++ b/test/fixtures/query-4e8beded3d8e9ea55a82f465680918ce.json @@ -1,21 +1,24 @@ { "body": { - "took": 612, + "took": 73, "timed_out": false, "_shards": { - "total": 3, - "successful": 3, + "total": 2, + "successful": 2, + "skipped": 0, "failed": 0 }, "hits": { - "total": 1, + "total": { + "value": 1, + "relation": "eq" + }, "max_score": null, "hits": [ { - "_index": "resources-2018-04-09", - "_type": "resource", + "_index": "resources-2024-06-07", "_id": "b22144813", - "_score": 18.586823, + "_score": 27.280298, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -733,23 +736,31 @@ ] }, "sort": [ - 18.586823, + 27.280298, "b22144813" ], "inner_hits": { "electronicResources": { "hits": { - "total": 0, + "total": { + "value": 0, + "relation": "eq" + }, "max_score": null, "hits": [] } }, "items": { "hits": { - "total": 2, + "total": { + "value": 2, + "relation": "eq" + }, "max_score": null, "hits": [ { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 0 @@ -853,6 +864,8 @@ ] }, { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 1 diff --git a/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json b/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json new file mode 100644 index 00000000..df4981da --- /dev/null +++ b/test/fixtures/query-547939bc9ed24205f55ea15f80ec997d.json @@ -0,0 +1,971 @@ +{ + "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-5f8bbe520199022d66e509963906d92c.json b/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json index d4db5232..4dedd409 100644 --- a/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json +++ b/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json @@ -1,6 +1,6 @@ { "body": { - "took": 37, + "took": 62, "timed_out": false, "_shards": { "total": 2, @@ -1379,13 +1379,13 @@ "hits": [] } }, - "allItems": { + "items": { "hits": { "total": { - "value": 824, + "value": 575, "relation": "eq" }, - "max_score": 0, + "max_score": null, "hits": [ { "_index": "resources-2024-06-07", @@ -1394,7 +1394,7 @@ "field": "items", "offset": 0 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1493,7 +1493,10 @@ } ], "uri": "i40904678" - } + }, + "sort": [ + " 97-2021" + ] }, { "_index": "resources-2024-06-07", @@ -1502,7 +1505,7 @@ "field": "items", "offset": 1 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1601,7 +1604,10 @@ } ], "uri": "i40904674" - } + }, + "sort": [ + " 97-2021" + ] }, { "_index": "resources-2024-06-07", @@ -1610,7 +1616,7 @@ "field": "items", "offset": 2 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1709,25 +1715,17 @@ } ], "uri": "i40904679" - } - } - ] - } - }, - "items": { - "hits": { - "total": { - "value": 575, - "relation": "eq" - }, - "max_score": null, - "hits": [ + }, + "sort": [ + " 97-2021" + ] + }, { "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", - "offset": 0 + "offset": 3 }, "_score": null, "_source": { @@ -1751,15 +1749,15 @@ ], "dateRange": [ { - "gte": "2021", + "gte": "2020", "lte": "2021" } ], "enumerationChronology": [ - "v. 97 (May 10-July 26, 2021)" + "v. 96 (Nov 2020-Feb 8, 2021)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -1774,19 +1772,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780354" + "33433136742404" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", - "urn:barcode:33433136780354" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433136780354", + "value": "33433136742404", "type": "bf:Barcode" } ], @@ -1806,9 +1804,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", "status": [ { "id": "status:a", @@ -1823,14 +1821,14 @@ ], "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ], - "uri": "i40904678" + "uri": "i40269792" }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -1838,7 +1836,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 1 + "offset": 4 }, "_score": null, "_source": { @@ -1862,15 +1860,15 @@ ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2020", + "lte": "2020" } ], "enumerationChronology": [ - "v. 97 (Feb 15-May 3, 2021)" + "v. 96 (May-July 2020)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -1885,19 +1883,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780347" + "33433136742420" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", - "urn:barcode:33433136780347" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136780347", + "value": "33433136742420", "type": "bf:Barcode" } ], @@ -1917,9 +1915,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + "*DA+ (New Yorker) v. 96 (May-July 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", "status": [ { "id": "status:a", @@ -1934,14 +1932,14 @@ ], "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ], - "uri": "i40904674" + "uri": "i40269798" }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -1949,7 +1947,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 2 + "offset": 5 }, "_score": null, "_source": { @@ -1973,15 +1971,15 @@ ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2020", + "lte": "2020" } ], "enumerationChronology": [ - "v. 97 (Aug. 2-Oct 25, 2021)" + "v. 96 (Feb 17-April 2020)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -1996,19 +1994,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780362" + "33433136742438" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", - "urn:barcode:33433136780362" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136780362", + "value": "33433136742438", "type": "bf:Barcode" } ], @@ -2028,9 +2026,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", "status": [ { "id": "status:a", @@ -2045,14 +2043,14 @@ ], "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ], - "uri": "i40904679" + "uri": "i40269804" }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -2060,7 +2058,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 3 + "offset": 6 }, "_score": null, "_source": { @@ -2085,11 +2083,11 @@ "dateRange": [ { "gte": "2020", - "lte": "2021" + "lte": "2020" } ], "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" + "v. 96 (Aug-Oct 2020)" ], "enumerationChronology_sort": [ " 96-2020" @@ -2107,19 +2105,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742404" + "33433136742412" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "urn:barcode:33433136742404" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136742404", + "value": "33433136742412", "type": "bf:Barcode" } ], @@ -2139,9 +2137,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", "status": [ { "id": "status:a", @@ -2160,7 +2158,7 @@ "lte": 96 } ], - "uri": "i40269792" + "uri": "i40269794" }, "sort": [ " 96-2020" @@ -2171,18 +2169,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 4 + "offset": 7 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2195,15 +2193,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (May-July 2020)" + "v. 95 (Oct-Nov. 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2218,19 +2216,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742420" + "33433130033321" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", - "urn:barcode:33433136742420" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742420", + "value": "33433130033321", "type": "bf:Barcode" } ], @@ -2250,9 +2248,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" + "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", "status": [ { "id": "status:a", @@ -2267,14 +2265,14 @@ ], "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ], - "uri": "i40269798" + "uri": "i40232403" }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2282,18 +2280,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 5 + "offset": 8 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2306,15 +2304,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" + "v. 95 (May-July 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2329,19 +2327,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742438" + "33433130033305" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "urn:barcode:33433136742438" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742438", + "value": "33433130033305", "type": "bf:Barcode" } ], @@ -2361,9 +2359,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + "*DA+ (New Yorker) v. 95 (May-July 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", "status": [ { "id": "status:a", @@ -2378,14 +2376,14 @@ ], "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ], - "uri": "i40269804" + "uri": "i40232398" }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2393,18 +2391,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 6 + "offset": 9 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2417,15 +2415,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (Aug-Oct 2020)" + "v. 95 (Feb 18-April 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2440,19 +2438,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742412" + "33433130033297" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", - "urn:barcode:33433136742412" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742412", + "value": "33433130033297", "type": "bf:Barcode" } ], @@ -2472,9 +2470,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", "status": [ { "id": "status:a", @@ -2489,14 +2487,14 @@ ], "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ], - "uri": "i40269794" + "uri": "i40232353" }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2504,7 +2502,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 7 + "offset": 10 }, "_score": null, "_source": { @@ -2529,11 +2527,11 @@ "dateRange": [ { "gte": "2019", - "lte": "2019" + "lte": "2020" } ], "enumerationChronology": [ - "v. 95 (Oct-Nov. 2019)" + "v. 95 (Dec. 2019-Feb. 10, 2020)" ], "enumerationChronology_sort": [ " 95-2019" @@ -2551,19 +2549,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033321" + "33433130033339" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", - "urn:barcode:33433130033321" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", "type": "bf:ShelfMark" }, { - "value": "33433130033321", + "value": "33433130033339", "type": "bf:Barcode" } ], @@ -2583,9 +2581,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", "status": [ { "id": "status:a", @@ -2604,7 +2602,7 @@ "lte": 95 } ], - "uri": "i40232403" + "uri": "i40232406" }, "sort": [ " 95-2019" @@ -2615,7 +2613,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 8 + "offset": 11 }, "_score": null, "_source": { @@ -2644,7 +2642,7 @@ } ], "enumerationChronology": [ - "v. 95 (May-July 2019)" + "v. 95 (Aug.-Sept. 2019)" ], "enumerationChronology_sort": [ " 95-2019" @@ -2662,19 +2660,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033305" + "33433130033313" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", - "urn:barcode:33433130033305" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", "type": "bf:ShelfMark" }, { - "value": "33433130033305", + "value": "33433130033313", "type": "bf:Barcode" } ], @@ -2694,9 +2692,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (May-July 2019)" + "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", "status": [ { "id": "status:a", @@ -2715,7 +2713,7 @@ "lte": 95 } ], - "uri": "i40232398" + "uri": "i40232401" }, "sort": [ " 95-2019" @@ -2726,7 +2724,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 9 + "offset": 23 }, "_score": null, "_source": { @@ -2750,15 +2748,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2019" + "gte": "2016", + "lte": "2016" } ], "enumerationChronology": [ - "v. 95 (Feb 18-April 2019)" + "v. 92 (July-Sept. 2016)" ], "enumerationChronology_sort": [ - " 95-2019" + " 92-2016" ], "formatLiteral": [ "Text" @@ -2773,19 +2771,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033297" + "33433119872095" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", - "urn:barcode:33433130033297" + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", "type": "bf:ShelfMark" }, { - "value": "33433130033297", + "value": "33433119872095", "type": "bf:Barcode" } ], @@ -2805,9 +2803,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", "status": [ { "id": "status:a", @@ -2822,14 +2820,14 @@ ], "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 92, + "lte": 92 } ], - "uri": "i40232353" + "uri": "i36060542" }, "sort": [ - " 95-2019" + " 92-2016" ] }, { @@ -2837,7 +2835,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 10 + "offset": 26 }, "_score": null, "_source": { @@ -2861,15 +2859,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2020" + "gte": "2015", + "lte": "2015" } ], "enumerationChronology": [ - "v. 95 (Dec. 2019-Feb. 10, 2020)" + "v. 91 (Sept.-Oct. 2015)" ], "enumerationChronology_sort": [ - " 95-2019" + " 91-2015" ], "formatLiteral": [ "Text" @@ -2884,19 +2882,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033339" + "33433119872087" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", - "urn:barcode:33433130033339" + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", "type": "bf:ShelfMark" }, { - "value": "33433130033339", + "value": "33433119872087", "type": "bf:Barcode" } ], @@ -2916,9 +2914,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", "status": [ { "id": "status:a", @@ -2933,14 +2931,14 @@ ], "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 91, + "lte": 91 } ], - "uri": "i40232406" + "uri": "i36060538" }, "sort": [ - " 95-2019" + " 91-2015" ] }, { @@ -2948,7 +2946,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 11 + "offset": 43 }, "_score": null, "_source": { @@ -2972,15 +2970,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2019" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 95 (Aug.-Sept. 2019)" + "v. 87 (Oct-Nov 2011)" ], "enumerationChronology_sort": [ - " 95-2019" + " 87-2011" ], "formatLiteral": [ "Text" @@ -2995,19 +2993,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033313" + "33433099610952" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", - "urn:barcode:33433130033313" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", "type": "bf:ShelfMark" }, { - "value": "33433130033313", + "value": "33433099610952", "type": "bf:Barcode" } ], @@ -3027,9 +3025,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", "status": [ { "id": "status:a", @@ -3044,14 +3042,14 @@ ], "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 87, + "lte": 87 } ], - "uri": "i40232401" + "uri": "i28878991" }, "sort": [ - " 95-2019" + " 87-2011" ] }, { @@ -3059,7 +3057,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 23 + "offset": 44 }, "_score": null, "_source": { @@ -3083,15 +3081,15 @@ ], "dateRange": [ { - "gte": "2016", - "lte": "2016" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 92 (July-Sept. 2016)" + "v. 87 (June-July 2011)" ], "enumerationChronology_sort": [ - " 92-2016" + " 87-2011" ], "formatLiteral": [ "Text" @@ -3106,19 +3104,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433119872095" + "33433099611083" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", - "urn:barcode:33433119872095" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", "type": "bf:ShelfMark" }, { - "value": "33433119872095", + "value": "33433099611083", "type": "bf:Barcode" } ], @@ -3138,9 +3136,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + "*DA+ (New Yorker) v. 87 (June-July 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", "status": [ { "id": "status:a", @@ -3155,14 +3153,14 @@ ], "volumeRange": [ { - "gte": 92, - "lte": 92 + "gte": 87, + "lte": 87 } ], - "uri": "i36060542" + "uri": "i28878983" }, "sort": [ - " 92-2016" + " 87-2011" ] }, { @@ -3170,7 +3168,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 26 + "offset": 45 }, "_score": null, "_source": { @@ -3194,15 +3192,15 @@ ], "dateRange": [ { - "gte": "2015", - "lte": "2015" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 91 (Sept.-Oct. 2015)" + "v. 87 (Feb. 14-Mar. 28, 2011)" ], "enumerationChronology_sort": [ - " 91-2015" + " 87-2011" ], "formatLiteral": [ "Text" @@ -3217,19 +3215,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433119872087" + "33433099611109" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", - "urn:barcode:33433119872087" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", "type": "bf:ShelfMark" }, { - "value": "33433119872087", + "value": "33433099611109", "type": "bf:Barcode" } ], @@ -3249,9 +3247,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", "status": [ { "id": "status:a", @@ -3266,14 +3264,14 @@ ], "volumeRange": [ { - "gte": 91, - "lte": 91 + "gte": 87, + "lte": 87 } ], - "uri": "i36060538" + "uri": "i28878974" }, "sort": [ - " 91-2015" + " 87-2011" ] }, { @@ -3281,7 +3279,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 43 + "offset": 46 }, "_score": null, "_source": { @@ -3306,11 +3304,11 @@ "dateRange": [ { "gte": "2011", - "lte": "2011" + "lte": "2012" } ], "enumerationChronology": [ - "v. 87 (Oct-Nov 2011)" + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3328,19 +3326,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099610952" + "33433099610945" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", - "urn:barcode:33433099610952" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", "type": "bf:ShelfMark" }, { - "value": "33433099610952", + "value": "33433099610945", "type": "bf:Barcode" } ], @@ -3360,9 +3358,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", "status": [ { "id": "status:a", @@ -3381,7 +3379,7 @@ "lte": 87 } ], - "uri": "i28878991" + "uri": "i28879000" }, "sort": [ " 87-2011" @@ -3392,7 +3390,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 44 + "offset": 47 }, "_score": null, "_source": { @@ -3421,7 +3419,7 @@ } ], "enumerationChronology": [ - "v. 87 (June-July 2011)" + "v. 87 (Aug-Sept 2011)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3439,19 +3437,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611083" + "33433099611075" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", - "urn:barcode:33433099611083" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099611083", + "value": "33433099611075", "type": "bf:Barcode" } ], @@ -3471,9 +3469,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (June-July 2011)" + "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", "status": [ { "id": "status:a", @@ -3492,7 +3490,7 @@ "lte": 87 } ], - "uri": "i28878983" + "uri": "i28878989" }, "sort": [ " 87-2011" @@ -3503,7 +3501,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 45 + "offset": 48 }, "_score": null, "_source": { @@ -3532,7 +3530,7 @@ } ], "enumerationChronology": [ - "v. 87 (Feb. 14-Mar. 28, 2011)" + "v. 87 (Apr-May 2011)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3550,19 +3548,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611109" + "33433099611091" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", - "urn:barcode:33433099611109" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099611109", + "value": "33433099611091", "type": "bf:Barcode" } ], @@ -3582,9 +3580,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", "status": [ { "id": "status:a", @@ -3603,7 +3601,7 @@ "lte": 87 } ], - "uri": "i28878974" + "uri": "i28878981" }, "sort": [ " 87-2011" @@ -3614,7 +3612,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 46 + "offset": 49 }, "_score": null, "_source": { @@ -3638,15 +3636,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2012" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + "v. 86 inc. (May-July 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -3661,19 +3659,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099610945" + "33433099612925" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", - "urn:barcode:33433099610945" + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099610945", + "value": "33433099612925", "type": "bf:Barcode" } ], @@ -3693,9 +3691,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", "status": [ { "id": "status:a", @@ -3710,14 +3708,14 @@ ], "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ], - "uri": "i28879000" + "uri": "i28974701" }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -3725,7 +3723,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 47 + "offset": 50 }, "_score": null, "_source": { @@ -3749,15 +3747,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2011" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Aug-Sept 2011)" + "v. 86 (Oct-Nov 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -3772,19 +3770,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611075" + "33433099611125" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", - "urn:barcode:33433099611075" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611075", + "value": "33433099611125", "type": "bf:Barcode" } ], @@ -3804,9 +3802,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", "status": [ { "id": "status:a", @@ -3821,14 +3819,14 @@ ], "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ], - "uri": "i28878989" + "uri": "i28878958" }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -3836,7 +3834,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 48 + "offset": 51 }, "_score": null, "_source": { @@ -3860,15 +3858,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2011" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Apr-May 2011)" + "v. 86 (Feb. 15-Apr. 26, 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -3883,19 +3881,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611091" + "33433099611141" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", - "urn:barcode:33433099611091" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611091", + "value": "33433099611141", "type": "bf:Barcode" } ], @@ -3915,9 +3913,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", "status": [ { "id": "status:a", @@ -3932,14 +3930,14 @@ ], "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ], - "uri": "i28878981" + "uri": "i28878948" }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -3947,7 +3945,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 49 + "offset": 52 }, "_score": null, "_source": { @@ -3972,11 +3970,11 @@ "dateRange": [ { "gte": "2010", - "lte": "2010" + "lte": "2011" } ], "enumerationChronology": [ - "v. 86 inc. (May-July 2010)" + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" ], "enumerationChronology_sort": [ " 86-2010" @@ -3994,19 +3992,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099612925" + "33433099611117" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", - "urn:barcode:33433099612925" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099612925", + "value": "33433099611117", "type": "bf:Barcode" } ], @@ -4026,9 +4024,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", "status": [ { "id": "status:a", @@ -4047,7 +4045,7 @@ "lte": 86 } ], - "uri": "i28974701" + "uri": "i28878970" }, "sort": [ " 86-2010" @@ -4058,7 +4056,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 50 + "offset": 53 }, "_score": null, "_source": { @@ -4087,7 +4085,7 @@ } ], "enumerationChronology": [ - "v. 86 (Oct-Nov 2010)" + "v. 86 (Aug-Sept 2010)" ], "enumerationChronology_sort": [ " 86-2010" @@ -4105,19 +4103,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611125" + "33433099611133" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", - "urn:barcode:33433099611125" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611125", + "value": "33433099611133", "type": "bf:Barcode" } ], @@ -4137,9 +4135,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", "status": [ { "id": "status:a", @@ -4158,7 +4156,7 @@ "lte": 86 } ], - "uri": "i28878958" + "uri": "i28878953" }, "sort": [ " 86-2010" @@ -4169,7 +4167,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 51 + "offset": 54 }, "_score": null, "_source": { @@ -4193,15 +4191,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2010" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Feb. 15-Apr. 26, 2010)" + "v. 85 (Oct-Nov 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4216,19 +4214,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611141" + "33433099611166" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", - "urn:barcode:33433099611141" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611141", + "value": "33433099611166", "type": "bf:Barcode" } ], @@ -4248,9 +4246,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", "status": [ { "id": "status:a", @@ -4265,14 +4263,14 @@ ], "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ], - "uri": "i28878948" + "uri": "i28878932" }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4280,7 +4278,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 52 + "offset": 55 }, "_score": null, "_source": { @@ -4304,15 +4302,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2011" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + "v. 85 (May-June 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4327,19 +4325,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611117" + "33433099611182" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", - "urn:barcode:33433099611117" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611117", + "value": "33433099611182", "type": "bf:Barcode" } ], @@ -4359,9 +4357,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + "*DA+ (New Yorker) v. 85 (May-June 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", "status": [ { "id": "status:a", @@ -4376,14 +4374,14 @@ ], "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ], - "uri": "i28878970" + "uri": "i28878920" }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4391,7 +4389,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 53 + "offset": 56 }, "_score": null, "_source": { @@ -4415,15 +4413,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2010" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Aug-Sept 2010)" + "v. 85 (Feb. 9-Apr. 27, 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4438,19 +4436,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611133" + "33433099611190" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", - "urn:barcode:33433099611133" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611133", + "value": "33433099611190", "type": "bf:Barcode" } ], @@ -4470,9 +4468,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", "status": [ { "id": "status:a", @@ -4487,14 +4485,14 @@ ], "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ], - "uri": "i28878953" + "uri": "i28878911" }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4502,7 +4500,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 54 + "offset": 57 }, "_score": null, "_source": { @@ -4531,7 +4529,7 @@ } ], "enumerationChronology": [ - "v. 85 (Oct-Nov 2009)" + "v. 85 (Aug. 10-Sept. 28, 2009)" ], "enumerationChronology_sort": [ " 85-2009" @@ -4549,19 +4547,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611166" + "33433099611174" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", - "urn:barcode:33433099611166" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611166", + "value": "33433099611174", "type": "bf:Barcode" } ], @@ -4581,9 +4579,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", "status": [ { "id": "status:a", @@ -4602,7 +4600,7 @@ "lte": 85 } ], - "uri": "i28878932" + "uri": "i28878925" }, "sort": [ " 85-2009" @@ -4613,7 +4611,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 55 + "offset": 58 }, "_score": null, "_source": { @@ -4637,15 +4635,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (May-June 2009)" + "v. 84 (Oct-Nov 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -4660,19 +4658,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611182" + "33433085063992" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", - "urn:barcode:33433099611182" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611182", + "value": "33433085063992", "type": "bf:Barcode" } ], @@ -4692,9 +4690,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (May-June 2009)" + "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", "status": [ { "id": "status:a", @@ -4709,14 +4707,14 @@ ], "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ], - "uri": "i28878920" + "uri": "i25589223" }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -4724,7 +4722,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 56 + "offset": 59 }, "_score": null, "_source": { @@ -4748,15 +4746,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (Feb. 9-Apr. 27, 2009)" + "v. 84 (June-July 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -4771,19 +4769,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611190" + "33433085064008" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", - "urn:barcode:33433099611190" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611190", + "value": "33433085064008", "type": "bf:Barcode" } ], @@ -4803,9 +4801,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + "*DA+ (New Yorker) v. 84 (June-July 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", "status": [ { "id": "status:a", @@ -4820,14 +4818,14 @@ ], "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ], - "uri": "i28878911" + "uri": "i25589214" }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -4835,7 +4833,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 57 + "offset": 60 }, "_score": null, "_source": { @@ -4859,15 +4857,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (Aug. 10-Sept. 28, 2009)" + "v. 84 (Feb. 11-Mar. 31 , 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -4882,19 +4880,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611174" + "33433085063950" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", - "urn:barcode:33433099611174" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611174", + "value": "33433085063950", "type": "bf:Barcode" } ], @@ -4914,9 +4912,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", "status": [ { "id": "status:a", @@ -4931,14 +4929,14 @@ ], "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ], - "uri": "i28878925" + "uri": "i25589272" }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -4946,7 +4944,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 58 + "offset": 61 }, "_score": null, "_source": { @@ -4971,11 +4969,11 @@ "dateRange": [ { "gte": "2008", - "lte": "2008" + "lte": "2009" } ], "enumerationChronology": [ - "v. 84 (Oct-Nov 2008)" + "v. 84 (Dec 1, 2008-Feb 2, 2009)" ], "enumerationChronology_sort": [ " 84-2008" @@ -4993,19 +4991,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063992" + "33433085063976" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", - "urn:barcode:33433085063992" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433085063992", + "value": "33433085063976", "type": "bf:Barcode" } ], @@ -5025,9 +5023,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", "status": [ { "id": "status:a", @@ -5046,7 +5044,7 @@ "lte": 84 } ], - "uri": "i25589223" + "uri": "i25589242" }, "sort": [ " 84-2008" @@ -5057,7 +5055,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 59 + "offset": 62 }, "_score": null, "_source": { @@ -5086,7 +5084,7 @@ } ], "enumerationChronology": [ - "v. 84 (June-July 2008)" + "v. 84 (Aug-Sept 2008 & Suppl.)" ], "enumerationChronology_sort": [ " 84-2008" @@ -5104,19 +5102,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064008" + "33433085064172" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", - "urn:barcode:33433085064008" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085064008", + "value": "33433085064172", "type": "bf:Barcode" } ], @@ -5136,9 +5134,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (June-July 2008)" + "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", "status": [ { "id": "status:a", @@ -5157,7 +5155,7 @@ "lte": 84 } ], - "uri": "i25589214" + "uri": "i25589287" }, "sort": [ " 84-2008" @@ -5168,7 +5166,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 60 + "offset": 63 }, "_score": null, "_source": { @@ -5197,7 +5195,7 @@ } ], "enumerationChronology": [ - "v. 84 (Feb. 11-Mar. 31 , 2008)" + "v. 84 (Apr-May 2008)" ], "enumerationChronology_sort": [ " 84-2008" @@ -5215,19 +5213,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063950" + "33433085064214" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", - "urn:barcode:33433085063950" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", "type": "bf:ShelfMark" }, { - "value": "33433085063950", + "value": "33433085064214", "type": "bf:Barcode" } ], @@ -5247,9 +5245,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + "*DA+ (New Yorker) v. 84 (Apr-May 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", "status": [ { "id": "status:a", @@ -5268,7 +5266,7 @@ "lte": 84 } ], - "uri": "i25589272" + "uri": "i25589205" }, "sort": [ " 84-2008" @@ -5279,7 +5277,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 61 + "offset": 64 }, "_score": null, "_source": { @@ -5303,15 +5301,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2009" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Dec 1, 2008-Feb 2, 2009)" + "v. 83 (Oct-Nov 2007 & Suppl.)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5326,19 +5324,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063976" + "33433085063984" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", - "urn:barcode:33433085063976" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085063976", + "value": "33433085063984", "type": "bf:Barcode" } ], @@ -5358,9 +5356,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", "status": [ { "id": "status:a", @@ -5375,14 +5373,14 @@ ], "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ], - "uri": "i25589242" + "uri": "i25589229" }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5390,7 +5388,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 62 + "offset": 65 }, "_score": null, "_source": { @@ -5414,15 +5412,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2008" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Aug-Sept 2008 & Suppl.)" + "v. 83 (June 25-July 30, 2007)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5437,19 +5435,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064172" + "33433085063943" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", - "urn:barcode:33433085064172" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064172", + "value": "33433085063943", "type": "bf:Barcode" } ], @@ -5469,9 +5467,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", "status": [ { "id": "status:a", @@ -5486,14 +5484,14 @@ ], "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ], - "uri": "i25589287" + "uri": "i25589274" }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5501,7 +5499,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 63 + "offset": 66 }, "_score": null, "_source": { @@ -5525,15 +5523,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2008" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Apr-May 2008)" + "v. 83 (Feb. 19-Mar. 26, 2007)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5548,19 +5546,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064214" + "33433085064180" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", - "urn:barcode:33433085064214" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064214", + "value": "33433085064180", "type": "bf:Barcode" } ], @@ -5580,9 +5578,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", "status": [ { "id": "status:a", @@ -5597,14 +5595,14 @@ ], "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ], - "uri": "i25589205" + "uri": "i25589278" }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5612,7 +5610,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 64 + "offset": 67 }, "_score": null, "_source": { @@ -5637,11 +5635,11 @@ "dateRange": [ { "gte": "2007", - "lte": "2007" + "lte": "2008" } ], "enumerationChronology": [ - "v. 83 (Oct-Nov 2007 & Suppl.)" + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" ], "enumerationChronology_sort": [ " 83-2007" @@ -5659,19 +5657,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063984" + "33433085064206" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", - "urn:barcode:33433085063984" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", "type": "bf:ShelfMark" }, { - "value": "33433085063984", + "value": "33433085064206", "type": "bf:Barcode" } ], @@ -5691,9 +5689,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", "status": [ { "id": "status:a", @@ -5712,7 +5710,7 @@ "lte": 83 } ], - "uri": "i25589229" + "uri": "i25589263" }, "sort": [ " 83-2007" @@ -5723,7 +5721,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 65 + "offset": 68 }, "_score": null, "_source": { @@ -5752,7 +5750,7 @@ } ], "enumerationChronology": [ - "v. 83 (June 25-July 30, 2007)" + "v. 83 (Aug-Sept 2007 & Suppl.)" ], "enumerationChronology_sort": [ " 83-2007" @@ -5770,19 +5768,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063943" + "33433085063968" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", - "urn:barcode:33433085063943" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085063943", + "value": "33433085063968", "type": "bf:Barcode" } ], @@ -5802,9 +5800,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", "status": [ { "id": "status:a", @@ -5823,7 +5821,7 @@ "lte": 83 } ], - "uri": "i25589274" + "uri": "i25589251" }, "sort": [ " 83-2007" @@ -5834,7 +5832,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 66 + "offset": 69 }, "_score": null, "_source": { @@ -5863,7 +5861,7 @@ } ], "enumerationChronology": [ - "v. 83 (Feb. 19-Mar. 26, 2007)" + "v. 83 (Apr. 2-May 21, 2007)" ], "enumerationChronology_sort": [ " 83-2007" @@ -5881,19 +5879,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064180" + "33433085064198" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", - "urn:barcode:33433085064180" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064180", + "value": "33433085064198", "type": "bf:Barcode" } ], @@ -5913,9 +5911,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", "status": [ { "id": "status:a", @@ -5934,7 +5932,7 @@ "lte": 83 } ], - "uri": "i25589278" + "uri": "i25589269" }, "sort": [ " 83-2007" @@ -5945,7 +5943,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 67 + "offset": 70 }, "_score": null, "_source": { @@ -5969,15 +5967,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2008" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + "v. 82 (Oct.-Nov. 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -5992,19 +5990,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064206" + "33433084240575" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", - "urn:barcode:33433085064206" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085064206", + "value": "33433084240575", "type": "bf:Barcode" } ], @@ -6024,9 +6022,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", "status": [ { "id": "status:a", @@ -6041,14 +6039,14 @@ ], "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ], - "uri": "i25589263" + "uri": "i17474922" }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6056,7 +6054,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 68 + "offset": 71 }, "_score": null, "_source": { @@ -6080,15 +6078,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2007" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Aug-Sept 2007 & Suppl.)" + "v. 82 (May-June 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -6103,19 +6101,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063968" + "33433084240559" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", - "urn:barcode:33433085063968" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085063968", + "value": "33433084240559", "type": "bf:Barcode" } ], @@ -6135,9 +6133,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + "*DA+ (New Yorker) v. 82 (May-June 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", "status": [ { "id": "status:a", @@ -6152,14 +6150,14 @@ ], "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ], - "uri": "i25589251" + "uri": "i17474920" }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6167,7 +6165,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 69 + "offset": 72 }, "_score": null, "_source": { @@ -6191,15 +6189,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2007" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Apr. 2-May 21, 2007)" + "v. 82 (July-Sept. & Suppl. 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -6214,19 +6212,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064198" + "33433084240567" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", - "urn:barcode:33433085064198" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085064198", + "value": "33433084240567", "type": "bf:Barcode" } ], @@ -6246,9 +6244,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", "status": [ { "id": "status:a", @@ -6263,14 +6261,14 @@ ], "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ], - "uri": "i25589269" + "uri": "i17474921" }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6278,7 +6276,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 70 + "offset": 73 }, "_score": null, "_source": { @@ -6307,7 +6305,7 @@ } ], "enumerationChronology": [ - "v. 82 (Oct.-Nov. 2006)" + "v. 82 (Feb. 13-Apr. 24, 2006)" ], "enumerationChronology_sort": [ " 82-2006" @@ -6325,19 +6323,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240575" + "33433084240542" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", - "urn:barcode:33433084240575" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", "type": "bf:ShelfMark" }, { - "value": "33433084240575", + "value": "33433084240542", "type": "bf:Barcode" } ], @@ -6357,9 +6355,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", "status": [ { "id": "status:a", @@ -6378,7 +6376,7 @@ "lte": 82 } ], - "uri": "i17474922" + "uri": "i17474919" }, "sort": [ " 82-2006" @@ -6389,7 +6387,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 71 + "offset": 74 }, "_score": null, "_source": { @@ -6414,11 +6412,11 @@ "dateRange": [ { "gte": "2006", - "lte": "2006" + "lte": "2007" } ], "enumerationChronology": [ - "v. 82 (May-June 2006)" + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" ], "enumerationChronology_sort": [ " 82-2006" @@ -6436,19 +6434,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240559" + "33433084240583" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", - "urn:barcode:33433084240559" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433084240559", + "value": "33433084240583", "type": "bf:Barcode" } ], @@ -6468,9 +6466,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (May-June 2006)" + "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", "status": [ { "id": "status:a", @@ -6489,7 +6487,7 @@ "lte": 82 } ], - "uri": "i17474920" + "uri": "i17474923" }, "sort": [ " 82-2006" @@ -6500,7 +6498,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 72 + "offset": 75 }, "_score": null, "_source": { @@ -6524,15 +6522,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2006" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (July-Sept. & Suppl. 2006)" + "v. 81 (Oct.-Nov. 2005)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6547,19 +6545,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240567" + "33433084240526" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", - "urn:barcode:33433084240567" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240567", + "value": "33433084240526", "type": "bf:Barcode" } ], @@ -6579,9 +6577,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", "status": [ { "id": "status:a", @@ -6596,14 +6594,14 @@ ], "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ], - "uri": "i17474921" + "uri": "i17474917" }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -6611,7 +6609,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 73 + "offset": 76 }, "_score": null, "_source": { @@ -6635,15 +6633,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2006" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (Feb. 13-Apr. 24, 2006)" + "v. 81 (June 27-Sept.26,2005;Suppl.)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6658,19 +6656,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240542" + "33433084240518" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", - "urn:barcode:33433084240542" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433084240542", + "value": "33433084240518", "type": "bf:Barcode" } ], @@ -6690,9 +6688,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", "status": [ { "id": "status:a", @@ -6707,14 +6705,14 @@ ], "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ], - "uri": "i17474919" + "uri": "i17474916" }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -6722,7 +6720,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 74 + "offset": 77 }, "_score": null, "_source": { @@ -6746,15 +6744,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2007" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + "v. 81 (Feb. 14-Mar. 28, 2005)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6769,19 +6767,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240583" + "33433084240492" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", - "urn:barcode:33433084240583" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240583", + "value": "33433084240492", "type": "bf:Barcode" } ], @@ -6801,9 +6799,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", "status": [ { "id": "status:a", @@ -6818,14 +6816,14 @@ ], "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ], - "uri": "i17474923" + "uri": "i17474914" }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -6833,7 +6831,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 75 + "offset": 78 }, "_score": null, "_source": { @@ -6858,11 +6856,11 @@ "dateRange": [ { "gte": "2005", - "lte": "2005" + "lte": "2006" } ], "enumerationChronology": [ - "v. 81 (Oct.-Nov. 2005)" + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" ], "enumerationChronology_sort": [ " 81-2005" @@ -6880,19 +6878,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240526" + "33433084240534" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", - "urn:barcode:33433084240526" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", "type": "bf:ShelfMark" }, { - "value": "33433084240526", + "value": "33433084240534", "type": "bf:Barcode" } ], @@ -6912,9 +6910,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", "status": [ { "id": "status:a", @@ -6933,7 +6931,7 @@ "lte": 81 } ], - "uri": "i17474917" + "uri": "i17474918" }, "sort": [ " 81-2005" @@ -6944,7 +6942,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 76 + "offset": 79 }, "_score": null, "_source": { @@ -6973,7 +6971,7 @@ } ], "enumerationChronology": [ - "v. 81 (June 27-Sept.26,2005;Suppl.)" + "v. 81 (Apr.-May 2005)" ], "enumerationChronology_sort": [ " 81-2005" @@ -6991,19 +6989,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240518" + "33433084240500" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", - "urn:barcode:33433084240518" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240518", + "value": "33433084240500", "type": "bf:Barcode" } ], @@ -7023,9 +7021,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", "status": [ { "id": "status:a", @@ -7044,7 +7042,7 @@ "lte": 81 } ], - "uri": "i17474916" + "uri": "i17474915" }, "sort": [ " 81-2005" @@ -7055,7 +7053,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 77 + "offset": 80 }, "_score": null, "_source": { @@ -7079,15 +7077,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2005" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Feb. 14-Mar. 28, 2005)" + "v. 80 (Oct.-Nov. 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7102,19 +7100,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240492" + "33433084240476" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", - "urn:barcode:33433084240492" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240492", + "value": "33433084240476", "type": "bf:Barcode" } ], @@ -7134,9 +7132,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", "status": [ { "id": "status:a", @@ -7151,14 +7149,14 @@ ], "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ], - "uri": "i17474914" + "uri": "i17474912" }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7166,7 +7164,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 78 + "offset": 81 }, "_score": null, "_source": { @@ -7190,15 +7188,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2006" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + "v. 80 (May-June 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7213,19 +7211,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240534" + "33433084240468" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", - "urn:barcode:33433084240534" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240534", + "value": "33433084240468", "type": "bf:Barcode" } ], @@ -7245,9 +7243,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + "*DA+ (New Yorker) v. 80 (May-June 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", "status": [ { "id": "status:a", @@ -7262,14 +7260,14 @@ ], "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ], - "uri": "i17474918" + "uri": "i17474911" }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7277,7 +7275,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 79 + "offset": 82 }, "_score": null, "_source": { @@ -7301,15 +7299,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2005" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Apr.-May 2005)" + "v. 80 (July-Sept 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7324,19 +7322,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240500" + "33433078508037" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", - "urn:barcode:33433084240500" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240500", + "value": "33433078508037", "type": "bf:Barcode" } ], @@ -7356,9 +7354,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + "*DA+ (New Yorker) v. 80 (July-Sept 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", "status": [ { "id": "status:a", @@ -7373,14 +7371,14 @@ ], "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ], - "uri": "i17474915" + "uri": "i17474399" }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7388,7 +7386,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 80 + "offset": 83 }, "_score": null, "_source": { @@ -7417,7 +7415,7 @@ } ], "enumerationChronology": [ - "v. 80 (Oct.-Nov. 2004)" + "v. 80 (Feb. 16- Apr. 26 2004)" ], "enumerationChronology_sort": [ " 80-2004" @@ -7435,19 +7433,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240476" + "33433080028222" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", - "urn:barcode:33433084240476" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240476", + "value": "33433080028222", "type": "bf:Barcode" } ], @@ -7467,9 +7465,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", "status": [ { "id": "status:a", @@ -7488,7 +7486,7 @@ "lte": 80 } ], - "uri": "i17474912" + "uri": "i17474447" }, "sort": [ " 80-2004" @@ -7499,7 +7497,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 81 + "offset": 84 }, "_score": null, "_source": { @@ -7524,11 +7522,11 @@ "dateRange": [ { "gte": "2004", - "lte": "2004" + "lte": "2005" } ], "enumerationChronology": [ - "v. 80 (May-June 2004)" + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" ], "enumerationChronology_sort": [ " 80-2004" @@ -7546,19 +7544,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240468" + "33433084240484" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", - "urn:barcode:33433084240468" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240468", + "value": "33433084240484", "type": "bf:Barcode" } ], @@ -7578,9 +7576,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (May-June 2004)" + "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", "status": [ { "id": "status:a", @@ -7599,7 +7597,7 @@ "lte": 80 } ], - "uri": "i17474911" + "uri": "i17474913" }, "sort": [ " 80-2004" @@ -7610,7 +7608,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 82 + "offset": 85 }, "_score": null, "_source": { @@ -7634,15 +7632,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2004" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (July-Sept 2004)" + "v. 79 (Oct.-Nov. 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -7657,19 +7655,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078508037" + "33433084240443" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", - "urn:barcode:33433078508037" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", "type": "bf:ShelfMark" }, { - "value": "33433078508037", + "value": "33433084240443", "type": "bf:Barcode" } ], @@ -7689,9 +7687,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", "status": [ { "id": "status:a", @@ -7706,14 +7704,14 @@ ], "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ], - "uri": "i17474399" + "uri": "i17474909" }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -7721,7 +7719,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 83 + "offset": 86 }, "_score": null, "_source": { @@ -7745,15 +7743,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2004" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (Feb. 16- Apr. 26 2004)" + "v. 79 (June-July 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -7768,19 +7766,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080028222" + "33433084240427" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", - "urn:barcode:33433080028222" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", "type": "bf:ShelfMark" }, { - "value": "33433080028222", + "value": "33433084240427", "type": "bf:Barcode" } ], @@ -7800,9 +7798,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + "*DA+ (New Yorker) v. 79 (June-July 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", "status": [ { "id": "status:a", @@ -7817,14 +7815,14 @@ ], "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ], - "uri": "i17474447" + "uri": "i17474907" }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -7832,7 +7830,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 84 + "offset": 87 }, "_score": null, "_source": { @@ -7856,15 +7854,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2005" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + "v. 79 (Feb. 17-Mar. 31, 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -7879,19 +7877,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240484" + "33433084240401" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", - "urn:barcode:33433084240484" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240484", + "value": "33433084240401", "type": "bf:Barcode" } ], @@ -7911,9 +7909,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", "status": [ { "id": "status:a", @@ -7928,14 +7926,14 @@ ], "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ], - "uri": "i17474913" + "uri": "i17474905" }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -7943,7 +7941,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 85 + "offset": 88 }, "_score": null, "_source": { @@ -7968,11 +7966,11 @@ "dateRange": [ { "gte": "2003", - "lte": "2003" + "lte": "2004" } ], "enumerationChronology": [ - "v. 79 (Oct.-Nov. 2003)" + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" ], "enumerationChronology_sort": [ " 79-2003" @@ -7990,19 +7988,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240443" + "33433084240450" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", - "urn:barcode:33433084240443" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240443", + "value": "33433084240450", "type": "bf:Barcode" } ], @@ -8022,9 +8020,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", "status": [ { "id": "status:a", @@ -8043,7 +8041,7 @@ "lte": 79 } ], - "uri": "i17474909" + "uri": "i17474910" }, "sort": [ " 79-2003" @@ -8054,7 +8052,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 86 + "offset": 89 }, "_score": null, "_source": { @@ -8083,7 +8081,7 @@ } ], "enumerationChronology": [ - "v. 79 (June-July 2003)" + "v. 79 (Aug-Sept. 2003)" ], "enumerationChronology_sort": [ " 79-2003" @@ -8101,19 +8099,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240427" + "33433084240435" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", - "urn:barcode:33433084240427" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240427", + "value": "33433084240435", "type": "bf:Barcode" } ], @@ -8133,9 +8131,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (June-July 2003)" + "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", "status": [ { "id": "status:a", @@ -8154,7 +8152,7 @@ "lte": 79 } ], - "uri": "i17474907" + "uri": "i17474908" }, "sort": [ " 79-2003" @@ -8165,7 +8163,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 87 + "offset": 90 }, "_score": null, "_source": { @@ -8194,7 +8192,7 @@ } ], "enumerationChronology": [ - "v. 79 (Feb. 17-Mar. 31, 2003)" + "v. 79 (Apr.-May 2003)" ], "enumerationChronology_sort": [ " 79-2003" @@ -8212,19 +8210,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240401" + "33433084240419" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", - "urn:barcode:33433084240401" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240401", + "value": "33433084240419", "type": "bf:Barcode" } ], @@ -8244,9 +8242,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", "status": [ { "id": "status:a", @@ -8265,7 +8263,7 @@ "lte": 79 } ], - "uri": "i17474905" + "uri": "i17474906" }, "sort": [ " 79-2003" @@ -8276,7 +8274,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 88 + "offset": 91 }, "_score": null, "_source": { @@ -8300,15 +8298,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2004" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + "v. 78 (Oct.-Nov. 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8323,19 +8321,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240450" + "33433084240385" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", - "urn:barcode:33433084240450" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240450", + "value": "33433084240385", "type": "bf:Barcode" } ], @@ -8355,9 +8353,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", "status": [ { "id": "status:a", @@ -8372,14 +8370,14 @@ ], "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ], - "uri": "i17474910" + "uri": "i17474903" }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8387,7 +8385,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 89 + "offset": 92 }, "_score": null, "_source": { @@ -8411,15 +8409,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2003" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Aug-Sept. 2003)" + "v. 78 (June-July 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8434,19 +8432,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240435" + "33433084240369" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", - "urn:barcode:33433084240435" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240435", + "value": "33433084240369", "type": "bf:Barcode" } ], @@ -8466,9 +8464,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + "*DA+ (New Yorker) v. 78 (June-July 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", "status": [ { "id": "status:a", @@ -8483,14 +8481,14 @@ ], "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ], - "uri": "i17474908" + "uri": "i17474901" }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8498,7 +8496,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 90 + "offset": 93 }, "_score": null, "_source": { @@ -8522,15 +8520,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2003" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Apr.-May 2003)" + "v. 78 (Feb. 18-Mar. 25, 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8545,19 +8543,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240419" + "33433084240344" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", - "urn:barcode:33433084240419" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240419", + "value": "33433084240344", "type": "bf:Barcode" } ], @@ -8577,9 +8575,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", "status": [ { "id": "status:a", @@ -8594,14 +8592,14 @@ ], "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ], - "uri": "i17474906" + "uri": "i17474899" }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8609,7 +8607,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 91 + "offset": 94 }, "_score": null, "_source": { @@ -8634,11 +8632,11 @@ "dateRange": [ { "gte": "2002", - "lte": "2002" + "lte": "2003" } ], "enumerationChronology": [ - "v. 78 (Oct.-Nov. 2002)" + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" ], "enumerationChronology_sort": [ " 78-2002" @@ -8656,19 +8654,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240385" + "33433084240393" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", - "urn:barcode:33433084240385" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240385", + "value": "33433084240393", "type": "bf:Barcode" } ], @@ -8688,9 +8686,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", "status": [ { "id": "status:a", @@ -8709,7 +8707,7 @@ "lte": 78 } ], - "uri": "i17474903" + "uri": "i17474904" }, "sort": [ " 78-2002" @@ -8720,7 +8718,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 92 + "offset": 95 }, "_score": null, "_source": { @@ -8749,7 +8747,7 @@ } ], "enumerationChronology": [ - "v. 78 (June-July 2002)" + "v. 78 (Aug.-Sept. 2002)" ], "enumerationChronology_sort": [ " 78-2002" @@ -8767,19 +8765,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240369" + "33433084240377" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", - "urn:barcode:33433084240369" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240369", + "value": "33433084240377", "type": "bf:Barcode" } ], @@ -8799,9 +8797,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (June-July 2002)" + "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", "status": [ { "id": "status:a", @@ -8820,7 +8818,7 @@ "lte": 78 } ], - "uri": "i17474901" + "uri": "i17474902" }, "sort": [ " 78-2002" @@ -8831,7 +8829,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 93 + "offset": 96 }, "_score": null, "_source": { @@ -8860,7 +8858,7 @@ } ], "enumerationChronology": [ - "v. 78 (Feb. 18-Mar. 25, 2002)" + "v. 78 (Apr.-May 2002)" ], "enumerationChronology_sort": [ " 78-2002" @@ -8878,19 +8876,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240344" + "33433084240351" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", - "urn:barcode:33433084240344" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240344", + "value": "33433084240351", "type": "bf:Barcode" } ], @@ -8910,9 +8908,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", "status": [ { "id": "status:a", @@ -8931,7 +8929,7 @@ "lte": 78 } ], - "uri": "i17474899" + "uri": "i17474900" }, "sort": [ " 78-2002" @@ -8942,7 +8940,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 94 + "offset": 97 }, "_score": null, "_source": { @@ -8966,15 +8964,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2003" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + "v. 77 (Oct. -Nov. 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -8989,19 +8987,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240393" + "33433084240328" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", - "urn:barcode:33433084240393" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240393", + "value": "33433084240328", "type": "bf:Barcode" } ], @@ -9021,9 +9019,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", "status": [ { "id": "status:a", @@ -9038,14 +9036,14 @@ ], "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ], - "uri": "i17474904" + "uri": "i17474897" }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9053,7 +9051,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 95 + "offset": 98 }, "_score": null, "_source": { @@ -9077,15 +9075,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2002" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Aug.-Sept. 2002)" + "v. 77 (May-July 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -9100,19 +9098,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240377" + "33433079991612" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", - "urn:barcode:33433084240377" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240377", + "value": "33433079991612", "type": "bf:Barcode" } ], @@ -9132,9 +9130,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + "*DA+ (New Yorker) v. 77 (May-July 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", "status": [ { "id": "status:a", @@ -9149,14 +9147,14 @@ ], "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ], - "uri": "i17474902" + "uri": "i17474446" }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9164,7 +9162,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 96 + "offset": 99 }, "_score": null, "_source": { @@ -9188,15 +9186,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2002" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Apr.-May 2002)" + "v. 77 (Feb. 19-Apr. 30, 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -9211,19 +9209,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240351" + "33433084240302" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", - "urn:barcode:33433084240351" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240351", + "value": "33433084240302", "type": "bf:Barcode" } ], @@ -9243,9 +9241,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", "status": [ { "id": "status:a", @@ -9260,14 +9258,14 @@ ], "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ], - "uri": "i17474900" + "uri": "i17474895" }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9275,7 +9273,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 97 + "offset": 100 }, "_score": null, "_source": { @@ -9300,11 +9298,11 @@ "dateRange": [ { "gte": "2001", - "lte": "2001" + "lte": "2002" } ], "enumerationChronology": [ - "v. 77 (Oct. -Nov. 2001)" + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" ], "enumerationChronology_sort": [ " 77-2001" @@ -9322,19 +9320,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240328" + "33433084240336" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", - "urn:barcode:33433084240328" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240328", + "value": "33433084240336", "type": "bf:Barcode" } ], @@ -9354,9 +9352,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" + "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", "status": [ { "id": "status:a", @@ -9375,7 +9373,7 @@ "lte": 77 } ], - "uri": "i17474897" + "uri": "i17474898" }, "sort": [ " 77-2001" @@ -9386,7 +9384,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 98 + "offset": 101 }, "_score": null, "_source": { @@ -9415,7 +9413,7 @@ } ], "enumerationChronology": [ - "v. 77 (May-July 2001)" + "v. 77 (Aug. 6-Sept. 17, 2001)" ], "enumerationChronology_sort": [ " 77-2001" @@ -9433,19 +9431,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433079991612" + "33433084240310" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", - "urn:barcode:33433079991612" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433079991612", + "value": "33433084240310", "type": "bf:Barcode" } ], @@ -9465,9 +9463,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (May-July 2001)" + "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", "status": [ { "id": "status:a", @@ -9486,7 +9484,7 @@ "lte": 77 } ], - "uri": "i17474446" + "uri": "i17474896" }, "sort": [ " 77-2001" @@ -9497,7 +9495,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 99 + "offset": 102 }, "_score": null, "_source": { @@ -9521,15 +9519,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2001" + "gte": "2000", + "lte": "2000" } ], "enumerationChronology": [ - "v. 77 (Feb. 19-Apr. 30, 2001)" + "v. 76 (Sept.-Oct. 2000)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9544,19 +9542,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240302" + "33433084240286" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", - "urn:barcode:33433084240302" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240302", + "value": "33433084240286", "type": "bf:Barcode" } ], @@ -9576,9 +9574,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", "status": [ { "id": "status:a", @@ -9593,14 +9591,14 @@ ], "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ], - "uri": "i17474895" + "uri": "i17474893" }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -9608,7 +9606,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 100 + "offset": 103 }, "_score": null, "_source": { @@ -9632,15 +9630,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2002" + "gte": "2000", + "lte": "2001" } ], "enumerationChronology": [ - "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9655,19 +9653,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240336" + "33433084240294" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", - "urn:barcode:33433084240336" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240336", + "value": "33433084240294", "type": "bf:Barcode" } ], @@ -9687,9 +9685,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", "status": [ { "id": "status:a", @@ -9704,14 +9702,14 @@ ], "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ], - "uri": "i17474898" + "uri": "i17474894" }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -9719,7 +9717,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 101 + "offset": 104 }, "_score": null, "_source": { @@ -9743,15 +9741,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2001" + "gte": "2000", + "lte": "2000" } ], "enumerationChronology": [ - "v. 77 (Aug. 6-Sept. 17, 2001)" + "v. 76 (July-Aug. 2000)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9766,19 +9764,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240310" + "33433078639105" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", - "urn:barcode:33433084240310" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240310", + "value": "33433078639105", "type": "bf:Barcode" } ], @@ -9798,9 +9796,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", "status": [ { "id": "status:a", @@ -9815,14 +9813,14 @@ ], "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ], - "uri": "i17474896" + "uri": "i17474402" }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -9830,7 +9828,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 102 + "offset": 105 }, "_score": null, "_source": { @@ -9859,7 +9857,7 @@ } ], "enumerationChronology": [ - "v. 76 (Sept.-Oct. 2000)" + "v. 76 (Feb. 21 - Apr. 17, 2000)" ], "enumerationChronology_sort": [ " 76-2000" @@ -9877,19 +9875,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240286" + "33433084240278" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", - "urn:barcode:33433084240286" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240286", + "value": "33433084240278", "type": "bf:Barcode" } ], @@ -9909,9 +9907,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" + "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", "status": [ { "id": "status:a", @@ -9930,7 +9928,7 @@ "lte": 76 } ], - "uri": "i17474893" + "uri": "i40028166" }, "sort": [ " 76-2000" @@ -9941,7 +9939,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 103 + "offset": 106 }, "_score": null, "_source": { @@ -9966,11 +9964,11 @@ "dateRange": [ { "gte": "2000", - "lte": "2001" + "lte": "2000" } ], "enumerationChronology": [ - "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" ], "enumerationChronology_sort": [ " 76-2000" @@ -9988,19 +9986,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240294" + "33433080426707" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", - "urn:barcode:33433084240294" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "urn:barcode:33433080426707" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", "type": "bf:ShelfMark" }, { - "value": "33433084240294", + "value": "33433080426707", "type": "bf:Barcode" } ], @@ -10020,9 +10018,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", "status": [ { "id": "status:a", @@ -10041,7 +10039,7 @@ "lte": 76 } ], - "uri": "i17474894" + "uri": "i17474434" }, "sort": [ " 76-2000" @@ -10052,7 +10050,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 104 + "offset": 107 }, "_score": null, "_source": { @@ -10076,15 +10074,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (July-Aug. 2000)" + "v. 75(Feb.22-May 3, 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10099,19 +10097,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078639105" + "33433084240211" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", - "urn:barcode:33433078639105" + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433078639105", + "value": "33433084240211", "type": "bf:Barcode" } ], @@ -10131,9 +10129,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" + "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", "status": [ { "id": "status:a", @@ -10148,14 +10146,14 @@ ], "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ], - "uri": "i17474402" + "uri": "i17474887" }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10163,7 +10161,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 105 + "offset": 108 }, "_score": null, "_source": { @@ -10187,15 +10185,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (Feb. 21 - Apr. 17, 2000)" + "v. 75 (Sept.-Oct. 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10210,19 +10208,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240278" + "33433084240245" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", - "urn:barcode:33433084240278" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240278", + "value": "33433084240245", "type": "bf:Barcode" } ], @@ -10242,9 +10240,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" + "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", "status": [ { "id": "status:a", @@ -10259,14 +10257,14 @@ ], "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ], - "uri": "i40028166" + "uri": "i17474890" }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10274,7 +10272,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 106 + "offset": 109 }, "_score": null, "_source": { @@ -10298,15 +10296,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + "v. 75 (Nov. 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10321,19 +10319,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080426707" + "33433084240252" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", - "urn:barcode:33433080426707" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433080426707", + "value": "33433084240252", "type": "bf:Barcode" } ], @@ -10353,9 +10351,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + "*DA+ (New Yorker) v. 75 (Nov. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", "status": [ { "id": "status:a", @@ -10370,14 +10368,14 @@ ], "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ], - "uri": "i17474434" + "uri": "i17474891" }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10385,7 +10383,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 107 + "offset": 110 }, "_score": null, "_source": { @@ -10414,7 +10412,7 @@ } ], "enumerationChronology": [ - "v. 75(Feb.22-May 3, 1999)" + "v. 75 (May 10-June 28, 1999)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10432,19 +10430,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240211" + "33433084240229" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", - "urn:barcode:33433084240211" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240211", + "value": "33433084240229", "type": "bf:Barcode" } ], @@ -10464,9 +10462,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" + "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", "status": [ { "id": "status:a", @@ -10485,7 +10483,7 @@ "lte": 75 } ], - "uri": "i17474887" + "uri": "i17474888" }, "sort": [ " 75-1999" @@ -10496,7 +10494,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 108 + "offset": 111 }, "_score": null, "_source": { @@ -10525,7 +10523,7 @@ } ], "enumerationChronology": [ - "v. 75 (Sept.-Oct. 1999)" + "v. 75 (July-Aug. 1999)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10543,19 +10541,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240245" + "33433084240237" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", - "urn:barcode:33433084240245" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240245", + "value": "33433084240237", "type": "bf:Barcode" } ], @@ -10575,9 +10573,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" + "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", "status": [ { "id": "status:a", @@ -10596,7 +10594,7 @@ "lte": 75 } ], - "uri": "i17474890" + "uri": "i17474889" }, "sort": [ " 75-1999" @@ -10607,7 +10605,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 109 + "offset": 112 }, "_score": null, "_source": { @@ -10632,11 +10630,11 @@ "dateRange": [ { "gte": "1999", - "lte": "1999" + "lte": "2000" } ], "enumerationChronology": [ - "v. 75 (Nov. 1999)" + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10654,19 +10652,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240252" + "33433084240260" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", - "urn:barcode:33433084240252" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", + "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240252", + "value": "33433084240260", "type": "bf:Barcode" } ], @@ -10686,9 +10684,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Nov. 1999)" + "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", "status": [ { "id": "status:a", @@ -10707,7 +10705,7 @@ "lte": 75 } ], - "uri": "i17474891" + "uri": "i17474892" }, "sort": [ " 75-1999" @@ -10718,7 +10716,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 110 + "offset": 113 }, "_score": null, "_source": { @@ -10742,15 +10740,15 @@ ], "dateRange": [ { - "gte": "1999", - "lte": "1999" + "gte": "1998", + "lte": "1998" } ], "enumerationChronology": [ - "v. 75 (May 10-June 28, 1999)" + "v. 74 (Sept. 7-Nov. 2, 1998)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -10765,19 +10763,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240229" + "33433084240203" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", - "urn:barcode:33433084240229" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", "type": "bf:ShelfMark" }, { - "value": "33433084240229", + "value": "33433084240203", "type": "bf:Barcode" } ], @@ -10797,9 +10795,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" + "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", "status": [ { "id": "status:a", @@ -10814,14 +10812,14 @@ ], "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ], - "uri": "i17474888" + "uri": "i17474886" }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -10829,7 +10827,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 111 + "offset": 114 }, "_score": null, "_source": { @@ -10853,15 +10851,15 @@ ], "dateRange": [ { - "gte": "1999", + "gte": "1998", "lte": "1999" } ], "enumerationChronology": [ - "v. 75 (July-Aug. 1999)" + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -10876,19 +10874,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240237" + "33433078660671" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", - "urn:barcode:33433084240237" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240237", + "value": "33433078660671", "type": "bf:Barcode" } ], @@ -10908,9 +10906,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" + "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", "status": [ { "id": "status:a", @@ -10925,14 +10923,14 @@ ], "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ], - "uri": "i17474889" + "uri": "i17474403" }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -10940,7 +10938,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 112 + "offset": 115 }, "_score": null, "_source": { @@ -10964,15 +10962,15 @@ ], "dateRange": [ { - "gte": "1999", - "lte": "2000" + "gte": "1998", + "lte": "1998" } ], "enumerationChronology": [ - "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + "v. 74 (June- Aug. 1998)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -10987,19 +10985,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240260" + "33433084240195" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", - "urn:barcode:33433084240260" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", "type": "bf:ShelfMark" }, { - "value": "33433084240260", + "value": "33433084240195", "type": "bf:Barcode" } ], @@ -11019,9 +11017,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", "status": [ { "id": "status:a", @@ -11036,14 +11034,14 @@ ], "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ], - "uri": "i17474892" + "uri": "i17474885" }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -11051,7 +11049,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 113 + "offset": 116 }, "_score": null, "_source": { @@ -11073,17 +11071,11 @@ "catalogItemType_packed": [ "catalogItemType:3||serial" ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], "enumerationChronology": [ - "v. 74 (Sept. 7-Nov. 2, 1998)" + "v. 74" ], "enumerationChronology_sort": [ - " 74-1998" + " 74-" ], "formatLiteral": [ "Text" @@ -11098,19 +11090,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240203" + "33433080030616" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", - "urn:barcode:33433084240203" + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "value": "*DA+ (New Yorker) v. 74", "type": "bf:ShelfMark" }, { - "value": "33433084240203", + "value": "33433080030616", "type": "bf:Barcode" } ], @@ -11130,9 +11122,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" + "*DA+ (New Yorker) v. 74" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", "status": [ { "id": "status:a", @@ -11151,10 +11143,10 @@ "lte": 74 } ], - "uri": "i17474886" + "uri": "i17474453" }, "sort": [ - " 74-1998" + " 74-" ] }, { @@ -11162,7 +11154,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 114 + "offset": 117 }, "_score": null, "_source": { @@ -11186,15 +11178,15 @@ ], "dateRange": [ { - "gte": "1998", - "lte": "1999" + "gte": "1997", + "lte": "1998" } ], "enumerationChronology": [ - "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" ], "enumerationChronology_sort": [ - " 74-1998" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11209,19 +11201,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078660671" + "33433078530031" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", - "urn:barcode:33433078660671" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", "type": "bf:ShelfMark" }, { - "value": "33433078660671", + "value": "33433078530031", "type": "bf:Barcode" } ], @@ -11241,9 +11233,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", "status": [ { "id": "status:a", @@ -11258,14 +11250,14 @@ ], "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ], - "uri": "i17474403" + "uri": "i17142393" }, "sort": [ - " 74-1998" + " 73-1997" ] }, { @@ -11273,7 +11265,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 115 + "offset": 118 }, "_score": null, "_source": { @@ -11297,15 +11289,15 @@ ], "dateRange": [ { - "gte": "1998", - "lte": "1998" + "gte": "1997", + "lte": "1997" } ], "enumerationChronology": [ - "v. 74 (June- Aug. 1998)" + "v. 73 (May 12-July 28, 1997)" ], "enumerationChronology_sort": [ - " 74-1998" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11320,19 +11312,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240195" + "33433081121117" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", - "urn:barcode:33433084240195" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", "type": "bf:ShelfMark" }, { - "value": "33433084240195", + "value": "33433081121117", "type": "bf:Barcode" } ], @@ -11352,9 +11344,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" + "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", "status": [ { "id": "status:a", @@ -11369,14 +11361,14 @@ ], "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ], - "uri": "i17474885" + "uri": "i16700889" }, "sort": [ - " 74-1998" + " 73-1997" ] }, { @@ -11384,7 +11376,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 116 + "offset": 119 }, "_score": null, "_source": { @@ -11406,11 +11398,17 @@ "catalogItemType_packed": [ "catalogItemType:3||serial" ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], "enumerationChronology": [ - "v. 74" + "v. 73 (Feb 17-May 5 1997)" ], "enumerationChronology_sort": [ - " 74-" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11425,19 +11423,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080030616" + "33433078658105" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74", - "urn:barcode:33433080030616" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74", + "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", "type": "bf:ShelfMark" }, { - "value": "33433080030616", + "value": "33433078658105", "type": "bf:Barcode" } ], @@ -11457,9 +11455,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74" + "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", "status": [ { "id": "status:a", @@ -11474,14 +11472,14 @@ ], "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ], - "uri": "i17474453" + "uri": "i17474429" }, "sort": [ - " 74-" + " 73-1997" ] }, { @@ -11489,7 +11487,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 117 + "offset": 120 }, "_score": null, "_source": { @@ -11514,11 +11512,11 @@ "dateRange": [ { "gte": "1997", - "lte": "1998" + "lte": "1997" } ], "enumerationChronology": [ - "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + "v. 73 (Aug-Oct 1997)" ], "enumerationChronology_sort": [ " 73-1997" @@ -11536,19 +11534,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078530031" + "33433078658113" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", - "urn:barcode:33433078530031" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", "type": "bf:ShelfMark" }, { - "value": "33433078530031", + "value": "33433078658113", "type": "bf:Barcode" } ], @@ -11568,9 +11566,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", "status": [ { "id": "status:a", @@ -11589,7 +11587,7 @@ "lte": 73 } ], - "uri": "i17142393" + "uri": "i17474430" }, "sort": [ " 73-1997" @@ -11600,7 +11598,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 118 + "offset": 121 }, "_score": null, "_source": { @@ -11624,15 +11622,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (May 12-July 28, 1997)" + "v. 72 (Oct 7-Nov 25 1996)" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -11647,19 +11645,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433081121117" + "33433078658089" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", - "urn:barcode:33433081121117" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", "type": "bf:ShelfMark" }, { - "value": "33433081121117", + "value": "33433078658089", "type": "bf:Barcode" } ], @@ -11679,9 +11677,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" + "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", "status": [ { "id": "status:a", @@ -11696,14 +11694,14 @@ ], "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ], - "uri": "i16700889" + "uri": "i17474427" }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -11711,7 +11709,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 119 + "offset": 122 }, "_score": null, "_source": { @@ -11735,15 +11733,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (Feb 17-May 5 1997)" + "v. 72 (July 8-Sept 30 1996 (inc))" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -11758,19 +11756,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658105" + "33433078658071" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", - "urn:barcode:33433078658105" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", "type": "bf:ShelfMark" }, { - "value": "33433078658105", + "value": "33433078658071", "type": "bf:Barcode" } ], @@ -11790,9 +11788,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" + "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", "status": [ { "id": "status:a", @@ -11807,14 +11805,14 @@ ], "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ], - "uri": "i17474429" + "uri": "i17474426" }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -11822,7 +11820,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 120 + "offset": 123 }, "_score": null, "_source": { @@ -11846,15 +11844,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (Aug-Oct 1997)" + "v. 72 (Feb 19-Apr 22 1996)" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -11869,19 +11867,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658113" + "33433078626128" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", - "urn:barcode:33433078658113" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", "type": "bf:ShelfMark" }, { - "value": "33433078658113", + "value": "33433078626128", "type": "bf:Barcode" } ], @@ -11901,9 +11899,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" + "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", "status": [ { "id": "status:a", @@ -11918,14 +11916,14 @@ ], "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ], - "uri": "i17474430" + "uri": "i17474400" }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -11933,7 +11931,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 121 + "offset": 124 }, "_score": null, "_source": { @@ -11958,11 +11956,11 @@ "dateRange": [ { "gte": "1996", - "lte": "1996" + "lte": "1997" } ], "enumerationChronology": [ - "v. 72 (Oct 7-Nov 25 1996)" + "v. 72 (Dec 2 1996-Feb 10 1997)" ], "enumerationChronology_sort": [ " 72-1996" @@ -11980,19 +11978,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658089" + "33433078658097" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", - "urn:barcode:33433078658089" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", "type": "bf:ShelfMark" }, { - "value": "33433078658089", + "value": "33433078658097", "type": "bf:Barcode" } ], @@ -12012,9 +12010,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" + "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", "status": [ { "id": "status:a", @@ -12033,7 +12031,7 @@ "lte": 72 } ], - "uri": "i17474427" + "uri": "i17474428" }, "sort": [ " 72-1996" @@ -12044,7 +12042,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 122 + "offset": 125 }, "_score": null, "_source": { @@ -12073,7 +12071,7 @@ } ], "enumerationChronology": [ - "v. 72 (July 8-Sept 30 1996 (inc))" + "v. 72 (Apr 29-July 1 1996)" ], "enumerationChronology_sort": [ " 72-1996" @@ -12091,19 +12089,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658071" + "33433078658063" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", - "urn:barcode:33433078658071" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", "type": "bf:ShelfMark" }, { - "value": "33433078658071", + "value": "33433078658063", "type": "bf:Barcode" } ], @@ -12123,9 +12121,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" + "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", "status": [ { "id": "status:a", @@ -12144,7 +12142,7 @@ "lte": 72 } ], - "uri": "i17474426" + "uri": "i17474425" }, "sort": [ " 72-1996" @@ -12155,7 +12153,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 123 + "offset": 126 }, "_score": null, "_source": { @@ -12179,15 +12177,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1996" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Feb 19-Apr 22 1996)" + "v. 71 (Oct-Nov 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12202,19 +12200,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078626128" + "33433078658048" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", - "urn:barcode:33433078626128" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "urn:barcode:33433078658048" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078626128", + "value": "33433078658048", "type": "bf:Barcode" } ], @@ -12234,9 +12232,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" + "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", "status": [ { "id": "status:a", @@ -12251,14 +12249,14 @@ ], "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ], - "uri": "i17474400" + "uri": "i17474423" }, "sort": [ - " 72-1996" + " 71-1995" ] }, { @@ -12266,7 +12264,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 124 + "offset": 127 }, "_score": null, "_source": { @@ -12290,15 +12288,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1997" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Dec 2 1996-Feb 10 1997)" + "v. 71 (June-July 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12313,19 +12311,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658097" + "33433078658022" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", - "urn:barcode:33433078658097" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", + "urn:barcode:33433078658022" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078658097", + "value": "33433078658022", "type": "bf:Barcode" } ], @@ -12345,9 +12343,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" + "*DA+ (New Yorker) v. 71 (June-July 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", "status": [ { "id": "status:a", @@ -12362,14 +12360,14 @@ ], "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ], - "uri": "i17474428" + "uri": "i17474421" }, "sort": [ - " 72-1996" + " 71-1995" ] }, { @@ -12377,7 +12375,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 125 + "offset": 128 }, "_score": null, "_source": { @@ -12401,15 +12399,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1996" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Apr 29-July 1 1996)" + "v. 71 (Feb. 20-Mar. 27, 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12424,19 +12422,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658063" + "33433084240179" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", - "urn:barcode:33433078658063" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "urn:barcode:33433084240179" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078658063", + "value": "33433084240179", "type": "bf:Barcode" } ], @@ -12456,9 +12454,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" + "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", "status": [ { "id": "status:a", @@ -12473,33 +12471,44 @@ ], "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ], - "uri": "i17474425" + "uri": "i17474883" }, "sort": [ - " 72-1996" + " 71-1995" ] - }, + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 824, + "relation": "eq" + }, + "max_score": 0, + "hits": [ { "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", - "offset": 126 + "offset": 0 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12512,15 +12521,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (Oct-Nov 1995)" + "v. 97 (May 10-July 26, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12535,19 +12544,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658048" + "33433136780354" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", - "urn:barcode:33433078658048" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433078658048", + "value": "33433136780354", "type": "bf:Barcode" } ], @@ -12567,9 +12576,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", "status": [ { "id": "status:a", @@ -12584,33 +12593,30 @@ ], "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ], - "uri": "i17474423" - }, - "sort": [ - " 71-1995" - ] + "uri": "i40904678" + } }, { "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", - "offset": 127 + "offset": 1 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12623,15 +12629,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (June-July 1995)" + "v. 97 (Feb 15-May 3, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12646,19 +12652,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658022" + "33433136780347" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", - "urn:barcode:33433078658022" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433078658022", + "value": "33433136780347", "type": "bf:Barcode" } ], @@ -12678,9 +12684,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (June-July 1995)" + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", "status": [ { "id": "status:a", @@ -12695,33 +12701,30 @@ ], "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ], - "uri": "i17474421" - }, - "sort": [ - " 71-1995" - ] + "uri": "i40904674" + } }, { "_index": "resources-2024-06-07", "_id": "b10833141", "_nested": { "field": "items", - "offset": 128 + "offset": 2 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12734,15 +12737,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (Feb. 20-Mar. 27, 1995)" + "v. 97 (Aug. 2-Oct 25, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12757,19 +12760,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240179" + "33433136780362" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", - "urn:barcode:33433084240179" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433084240179", + "value": "33433136780362", "type": "bf:Barcode" } ], @@ -12789,9 +12792,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", "status": [ { "id": "status:a", @@ -12806,15 +12809,12 @@ ], "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ], - "uri": "i17474883" - }, - "sort": [ - " 71-1995" - ] + "uri": "i40904679" + } } ] } diff --git a/test/fixtures/query-5fc4aa2692ee254b3789cb4abcc1ec40.json b/test/fixtures/query-5fc4aa2692ee254b3789cb4abcc1ec40.json index 8148470a..872f0660 100644 --- a/test/fixtures/query-5fc4aa2692ee254b3789cb4abcc1ec40.json +++ b/test/fixtures/query-5fc4aa2692ee254b3789cb4abcc1ec40.json @@ -1,6 +1,6 @@ { "body": { - "took": 252, + "took": 277, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json b/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json new file mode 100644 index 00000000..fe1bdf56 --- /dev/null +++ b/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json @@ -0,0 +1,39 @@ +{ + "body": { + "took": 7, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 4, + "nonrecap_statuses": { + "doc_count": 2, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 2 + } + ] + } + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json b/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json index fb7f456a..65f3ee8e 100644 --- a/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json +++ b/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json @@ -1,6 +1,6 @@ { "body": { - "took": 12, + "took": 23, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json b/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json index f5cf45ab..2e0c24b2 100644 --- a/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json +++ b/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json @@ -1,6 +1,6 @@ { "body": { - "took": 43, + "took": 64, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-714d151f51e0ab49039161a3e4aedf8d.json b/test/fixtures/query-714d151f51e0ab49039161a3e4aedf8d.json deleted file mode 100644 index e50ca01f..00000000 --- a/test/fixtures/query-714d151f51e0ab49039161a3e4aedf8d.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 382, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 32.66396, - "_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": [ - 32.66396, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-7317ebe654dd7a589f29dcd1b090ebde.json b/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json index 20f4de7c..ded978ef 100644 --- a/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json +++ b/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json @@ -1,6 +1,6 @@ { "body": { - "took": 36, + "took": 16, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-77495a1fa1f017210734f0ed30142e42.json b/test/fixtures/query-77495a1fa1f017210734f0ed30142e42.json deleted file mode 100644 index e7ad7671..00000000 --- a/test/fixtures/query-77495a1fa1f017210734f0ed30142e42.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 503, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.58589, - "_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": [ - 17.58589, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-778b80c7334a3483277a964a39433c92.json b/test/fixtures/query-778b80c7334a3483277a964a39433c92.json new file mode 100644 index 00000000..5ce07669 --- /dev/null +++ b/test/fixtures/query-778b80c7334a3483277a964a39433c92.json @@ -0,0 +1,27086 @@ +{ + "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-78203567e820c5b101a2cfd66a93e62b.json b/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json index 9cfaca77..2e7bc7d0 100644 --- a/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json +++ b/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json @@ -1,6 +1,6 @@ { "body": { - "took": 76, + "took": 105, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-7d5bef6e71642835d7405ca5e38fde29.json b/test/fixtures/query-7d5bef6e71642835d7405ca5e38fde29.json deleted file mode 100644 index 601028f3..00000000 --- a/test/fixtures/query-7d5bef6e71642835d7405ca5e38fde29.json +++ /dev/null @@ -1,2995 +0,0 @@ -{ - "body": { - "took": 657, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b11826883", - "_score": 765.99866, - "_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" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Furniture history : the journal of the Furniture History Society." - ], - "shelfMark": [ - "JQL 08-18" - ], - "numItemVolumesParsed": [ - 70 - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "66053650 //r89" - ], - "idIssn": [ - "0016-3058" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Furniture History Society (London, England)" - ], - "dateStartYear": [ - 1965 - ], - "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" - } - ], - "idOclc": [ - "1570335" - ], - "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]" - ], - "titleAlt": [ - "Furnit. hist.", - "Furniture history" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 765.99866, - "b11826883" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 70, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "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" - ] - }, - { - "_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" - ] - }, - { - "_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-2018-04-09", - "_type": "resource", - "_id": "b21506221", - "_score": 18.554728, - "_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": [ - 18.554728, - "b21506221" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-2018-04-09", - "_type": "resource", - "_id": "b16775643", - "_score": 16.264187, - "_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": [ - 16.264187, - "b16775643" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 10, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "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" - ] - }, - { - "_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" - ] - }, - { - "_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-2018-04-09", - "_type": "resource", - "_id": "b11560439", - "_score": 15.684884, - "_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" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bulletin van het Rijksmuseum." - ], - "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" - ], - "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" - } - ], - "idOclc": [ - "4272788" - ], - "dateEndYear": [ - 2008 - ], - "updatedAt": 1718196667044, - "publicationStatement": [ - "Amsterdam : Rijks-Museum, -©2008." - ], - "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" - ], - "genreForm": [ - "Catalogs.", - "Periodicals.", - "Art." - ], - "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" - ], - "titleAlt": [ - "Bull. Rÿksmus.", - "Bulletin van het Rÿksmuseum" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm" - ] - }, - "sort": [ - 15.684884, - "b11560439" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 28, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "dateRange": [ - { - "gte": "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" - ] - }, - { - "_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" - ] - }, - { - "_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-2018-04-09", - "_type": "resource", - "_id": "b12525718", - "_score": 15.428153, - "_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" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bollettino dei Musei comunali di Roma" - ], - "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 - ], - "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" - } - ], - "idOclc": [ - "2785323" - ], - "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]" - ], - "titleAlt": [ - "Boll. Mus. comunali Roma", - "Bollettino dei Musei comunali di Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - 15.428153, - "b12525718" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 45, - "max_score": null, - "hits": [ - { - "_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" - ] - }, - { - "_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" - ] - }, - { - "_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" - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-7f2c8ca739313779c455093a82b09e11.json b/test/fixtures/query-7f2c8ca739313779c455093a82b09e11.json index 77daf264..9a1915a4 100644 --- a/test/fixtures/query-7f2c8ca739313779c455093a82b09e11.json +++ b/test/fixtures/query-7f2c8ca739313779c455093a82b09e11.json @@ -1,6 +1,6 @@ { "body": { - "took": 1953, + "took": 2381, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-81268d98a591ed0e1cc30eb119f79072.json b/test/fixtures/query-81268d98a591ed0e1cc30eb119f79072.json deleted file mode 100644 index 5ee7667b..00000000 --- a/test/fixtures/query-81268d98a591ed0e1cc30eb119f79072.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 493, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.58589, - "_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": [ - 17.58589, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-cbc74f5eb1cb74e19c950f0048eb25f2.json b/test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json similarity index 99% rename from test/fixtures/query-cbc74f5eb1cb74e19c950f0048eb25f2.json rename to test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json index e5c4267b..b8035c17 100644 --- a/test/fixtures/query-cbc74f5eb1cb74e19c950f0048eb25f2.json +++ b/test/fixtures/query-821520a63d8d6b7f8b9a55a8a43744c8.json @@ -1,6 +1,6 @@ { "body": { - "took": 1782, + "took": 661, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-844a4e28490811b6331c646a4fb6ca95.json b/test/fixtures/query-844a4e28490811b6331c646a4fb6ca95.json deleted file mode 100644 index 765599d9..00000000 --- a/test/fixtures/query-844a4e28490811b6331c646a4fb6ca95.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 1753, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 776.99646, - "_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": [ - 776.99646, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-84acf41118ccc2510fafb67456030a54.json b/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json new file mode 100644 index 00000000..e9955e96 --- /dev/null +++ b/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json @@ -0,0 +1,59 @@ +{ + "body": { + "took": 2, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 824, + "nonrecap_statuses": { + "doc_count": 692, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 635 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 9 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:t||In transit", + "doc_count": 1 + } + ] + } + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-8537ea753999fdf0165766b8c2f102e7.json b/test/fixtures/query-8537ea753999fdf0165766b8c2f102e7.json deleted file mode 100644 index fc310ae3..00000000 --- a/test/fixtures/query-8537ea753999fdf0165766b8c2f102e7.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "body": { - "took": 663, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b13627363", - "_score": 130.0303, - "_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": [ - 130.0303, - "b13627363" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "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 - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-85f068281bf72b39c3debd3978323b12.json b/test/fixtures/query-85f068281bf72b39c3debd3978323b12.json deleted file mode 100644 index e9e09325..00000000 --- a/test/fixtures/query-85f068281bf72b39c3debd3978323b12.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 277, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.58589, - "_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": [ - 17.58589, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-8620b6e2c494fb19cd0860a8ae96e870.json b/test/fixtures/query-8620b6e2c494fb19cd0860a8ae96e870.json deleted file mode 100644 index e4832cec..00000000 --- a/test/fixtures/query-8620b6e2c494fb19cd0860a8ae96e870.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 766, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.586868, - "_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": [ - 17.586868, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-8629997f50513a08337906aa8bf66d1e.json b/test/fixtures/query-8629997f50513a08337906aa8bf66d1e.json new file mode 100644 index 00000000..1f75daf6 --- /dev/null +++ b/test/fixtures/query-8629997f50513a08337906aa8bf66d1e.json @@ -0,0 +1,14217 @@ +{ + "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-94fd0e360cf8cd9a00e1eb4274942a72.json b/test/fixtures/query-94fd0e360cf8cd9a00e1eb4274942a72.json deleted file mode 100644 index 645e72ee..00000000 --- a/test/fixtures/query-94fd0e360cf8cd9a00e1eb4274942a72.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "took": 5, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 0, - "max_score": null, - "hits": [] - }, - "aggregations": { - "item_location": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - }, - "item_format": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - }, - "item_status": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - } - } -} \ No newline at end of file diff --git a/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json b/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json index de0103e5..4896a561 100644 --- a/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json +++ b/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json @@ -1,6 +1,6 @@ { "body": { - "took": 10, + "took": 113, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-8e73bbc6037148add9c9e985da8b31aa.json b/test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json similarity index 99% rename from test/fixtures/query-8e73bbc6037148add9c9e985da8b31aa.json rename to test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json index a846782b..ab838543 100644 --- a/test/fixtures/query-8e73bbc6037148add9c9e985da8b31aa.json +++ b/test/fixtures/query-9c0e6bd0a9d425527840c99358e7c5ce.json @@ -1,6 +1,6 @@ { "body": { - "took": 397, + "took": 400, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json b/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json new file mode 100644 index 00000000..4f402e63 --- /dev/null +++ b/test/fixtures/query-9c1c9e41bdeca21081cb27edff787e7c.json @@ -0,0 +1,971 @@ +{ + "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-9e6862cbcbe39a3aad216d368a28ea8e.json b/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json index a5b85ac6..9bbb9d71 100644 --- a/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json +++ b/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json @@ -1,6 +1,6 @@ { "body": { - "took": 60, + "took": 54, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json b/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json new file mode 100644 index 00000000..fae0bbb9 --- /dev/null +++ b/test/fixtures/query-9f91cccaea6dc38dcc03e5e9ddb9c180.json @@ -0,0 +1,971 @@ +{ + "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-a07ba95b204b383fe0b3e24fd16136e0.json b/test/fixtures/query-a07ba95b204b383fe0b3e24fd16136e0.json index 07be890d..b761a483 100644 --- a/test/fixtures/query-a07ba95b204b383fe0b3e24fd16136e0.json +++ b/test/fixtures/query-a07ba95b204b383fe0b3e24fd16136e0.json @@ -1,6 +1,6 @@ { "body": { - "took": 1483, + "took": 1796, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-0f12f3b38dded4c803cbfd03cb894c79.json b/test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json similarity index 98% rename from test/fixtures/query-0f12f3b38dded4c803cbfd03cb894c79.json rename to test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json index 40f6811d..16cbd117 100644 --- a/test/fixtures/query-0f12f3b38dded4c803cbfd03cb894c79.json +++ b/test/fixtures/query-a08816274dcad7aa683bfa6625df0a4d.json @@ -1,21 +1,24 @@ { "body": { - "took": 306, + "took": 36, "timed_out": false, "_shards": { - "total": 3, - "successful": 3, + "total": 2, + "successful": 2, + "skipped": 0, "failed": 0 }, "hits": { - "total": 1, + "total": { + "value": 1, + "relation": "eq" + }, "max_score": null, "hits": [ { - "_index": "resources-2018-04-09", - "_type": "resource", + "_index": "resources-2024-06-07", "_id": "b22144813", - "_score": 17.845865, + "_score": 50.89173, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -733,23 +736,31 @@ ] }, "sort": [ - 17.845865, + 50.89173, "b22144813" ], "inner_hits": { "electronicResources": { "hits": { - "total": 0, + "total": { + "value": 0, + "relation": "eq" + }, "max_score": null, "hits": [] } }, "items": { "hits": { - "total": 2, + "total": { + "value": 2, + "relation": "eq" + }, "max_score": null, "hits": [ { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 0 @@ -853,6 +864,8 @@ ] }, { + "_index": "resources-2024-06-07", + "_id": "b22144813", "_nested": { "field": "items", "offset": 1 diff --git a/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json b/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json new file mode 100644 index 00000000..cd0d1937 --- /dev/null +++ b/test/fixtures/query-a6c48d13148cbcd4225f207ee4216626.json @@ -0,0 +1,971 @@ +{ + "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 new file mode 100644 index 00000000..09541ab2 --- /dev/null +++ b/test/fixtures/query-a72e542d2f67fe27ab2474d59735944c.json @@ -0,0 +1,971 @@ +{ + "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-a744712a30c8bcda83ef121d25017ba7.json b/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json index 1d372b4b..28fc6729 100644 --- a/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json +++ b/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json @@ -1,6 +1,6 @@ { "body": { - "took": 8, + "took": 15, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-a9cf17955dd8814b1e06a8137cbf29ae.json b/test/fixtures/query-a9cf17955dd8814b1e06a8137cbf29ae.json deleted file mode 100644 index c8fc1dba..00000000 --- a/test/fixtures/query-a9cf17955dd8814b1e06a8137cbf29ae.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 253, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.586868, - "_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": [ - 17.586868, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-b04cbd5523c046fae7728006b1ce8cc3.json b/test/fixtures/query-b04cbd5523c046fae7728006b1ce8cc3.json index 5a4d2c9b..75543d5c 100644 --- a/test/fixtures/query-b04cbd5523c046fae7728006b1ce8cc3.json +++ b/test/fixtures/query-b04cbd5523c046fae7728006b1ce8cc3.json @@ -1,6 +1,6 @@ { "body": { - "took": 406, + "took": 437, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json b/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json new file mode 100644 index 00000000..540c74a0 --- /dev/null +++ b/test/fixtures/query-b182c98fdc780672bb1aafd504043df9.json @@ -0,0 +1,971 @@ +{ + "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-b42be6cd6e74c6eb45bd02fb0b86e80e.json b/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json index 20875f44..918f7d78 100644 --- a/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json +++ b/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json @@ -1,6 +1,6 @@ { "body": { - "took": 23, + "took": 24, "timed_out": false, "_shards": { "total": 2, @@ -532,13 +532,13 @@ "hits": [] } }, - "allItems": { + "items": { "hits": { "total": { "value": 4, "relation": "eq" }, - "max_score": 0, + "max_score": null, "hits": [ { "_index": "resources-2024-06-07", @@ -547,7 +547,7 @@ "field": "items", "offset": 0 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -643,16 +643,19 @@ "bf:Item" ], "uri": "i28309666" - } + }, + "sort": [ + " -1933" + ] }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 1 + "offset": 2 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -674,15 +677,15 @@ ], "dateRange": [ { - "gte": "1855", - "lte": "1855" + "gte": "1861", + "lte": "1861" } ], "enumerationChronology": [ - "Jahrg. 49 (1855)" + "Jahrg. 1861" ], "enumerationChronology_sort": [ - " -1855" + " -1861" ], "formatLiteral": [ "Text" @@ -697,19 +700,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433096425198" + "33433088646041" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", "type": "bf:ShelfMark" }, { - "value": "33433096425198", + "value": "33433088646041", "type": "bf:Barcode" } ], @@ -732,9 +735,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", @@ -747,26 +750,29 @@ "type": [ "bf:Item" ], - "uri": "i28309648" - } + "uri": "i28309668" + }, + "sort": [ + " -1861" + ] }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 2 + "offset": 3 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -779,67 +785,58 @@ ], "dateRange": [ { - "gte": "1861", - "lte": "1861" + "gte": "1860", + "lte": "1860" } ], "enumerationChronology": [ - "Jahrg. 1861" + "Jahrg. 1860" ], "enumerationChronology_sort": [ - " -1861" + " -1860" ], "formatLiteral": [ "Text" ], "holdingLocation": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" } ], "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], "idBarcode": [ - "33433088646041" + "33433097964930" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", "type": "bf:ShelfMark" }, { - "value": "33433088646041", + "value": "33433097964930", "type": "bf:Barcode" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "m2CustomerCode": [ + "XA" ], "physicalLocation": [ "*DF+ (Morgenblatt für gebildete Leser)" ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", @@ -852,26 +849,18 @@ "type": [ "bf:Item" ], - "uri": "i28309668" - } - } - ] - } - }, - "items": { - "hits": { - "total": { - "value": 4, - "relation": "eq" - }, - "max_score": null, - "hits": [ + "uri": "i28543800" + }, + "sort": [ + " -1860" + ] + }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 0 + "offset": 1 }, "_score": null, "_source": { @@ -895,15 +884,15 @@ ], "dateRange": [ { - "gte": "1933", - "lte": "1933" + "gte": "1855", + "lte": "1855" } ], "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "Jahrg. 49 (1855)" ], "enumerationChronology_sort": [ - " -1933" + " -1855" ], "formatLiteral": [ "Text" @@ -918,19 +907,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433088646033" + "33433096425198" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "type": "bf:ShelfMark" }, { - "value": "33433088646033", + "value": "33433096425198", "type": "bf:Barcode" } ], @@ -953,9 +942,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", @@ -968,20 +957,31 @@ "type": [ "bf:Item" ], - "uri": "i28309666" + "uri": "i28309648" }, "sort": [ - " -1933" + " -1855" ] - }, + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 4, + "relation": "eq" + }, + "max_score": 0, + "hits": [ { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 2 + "offset": 0 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { @@ -1003,15 +1003,15 @@ ], "dateRange": [ { - "gte": "1861", - "lte": "1861" + "gte": "1933", + "lte": "1933" } ], "enumerationChronology": [ - "Jahrg. 1861" + "Jahrg. Mar.-May 1933" ], "enumerationChronology_sort": [ - " -1861" + " -1933" ], "formatLiteral": [ "Text" @@ -1026,19 +1026,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433088646041" + "33433088646033" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", "type": "bf:ShelfMark" }, { - "value": "33433088646041", + "value": "33433088646033", "type": "bf:Barcode" } ], @@ -1061,9 +1061,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", @@ -1076,29 +1076,26 @@ "type": [ "bf:Item" ], - "uri": "i28309668" - }, - "sort": [ - " -1861" - ] + "uri": "i28309666" + } }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 3 + "offset": 1 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -1111,58 +1108,67 @@ ], "dateRange": [ { - "gte": "1860", - "lte": "1860" + "gte": "1855", + "lte": "1855" } ], "enumerationChronology": [ - "Jahrg. 1860" + "Jahrg. 49 (1855)" ], "enumerationChronology_sort": [ - " -1860" + " -1855" ], "formatLiteral": [ "Text" ], "holdingLocation": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "loc:rc2ma", + "label": "Offsite" } ], "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433097964930" + "33433096425198" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "type": "bf:ShelfMark" }, { - "value": "33433097964930", + "value": "33433096425198", "type": "bf:Barcode" } ], - "m2CustomerCode": [ - "XA" + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "physicalLocation": [ "*DF+ (Morgenblatt für gebildete Leser)" ], + "recapCustomerCode": [ + "NA" + ], "requestable": [ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", @@ -1175,20 +1181,17 @@ "type": [ "bf:Item" ], - "uri": "i28543800" - }, - "sort": [ - " -1860" - ] + "uri": "i28309648" + } }, { "_index": "resources-2024-06-07", "_id": "b14937001", "_nested": { "field": "items", - "offset": 1 + "offset": 2 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { @@ -1210,15 +1213,15 @@ ], "dateRange": [ { - "gte": "1855", - "lte": "1855" + "gte": "1861", + "lte": "1861" } ], "enumerationChronology": [ - "Jahrg. 49 (1855)" + "Jahrg. 1861" ], "enumerationChronology_sort": [ - " -1855" + " -1861" ], "formatLiteral": [ "Text" @@ -1233,19 +1236,19 @@ "loc:rc2ma||Offsite" ], "idBarcode": [ - "33433096425198" + "33433088646041" ], "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" ], "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", "type": "bf:ShelfMark" }, { - "value": "33433096425198", + "value": "33433088646041", "type": "bf:Barcode" } ], @@ -1268,9 +1271,9 @@ true ], "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", @@ -1283,11 +1286,8 @@ "type": [ "bf:Item" ], - "uri": "i28309648" - }, - "sort": [ - " -1855" - ] + "uri": "i28309668" + } } ] } diff --git a/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json b/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json index 754145c2..98d0afbc 100644 --- a/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json +++ b/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json @@ -1,6 +1,6 @@ { "body": { - "took": 23, + "took": 14, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b7efd2b0badc48e4c7115696904a0ada.json b/test/fixtures/query-b7efd2b0badc48e4c7115696904a0ada.json index 9a0aaff5..3fd0a24f 100644 --- a/test/fixtures/query-b7efd2b0badc48e4c7115696904a0ada.json +++ b/test/fixtures/query-b7efd2b0badc48e4c7115696904a0ada.json @@ -1,6 +1,6 @@ { "body": { - "took": 3702, + "took": 2854, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json b/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json new file mode 100644 index 00000000..0c6e608b --- /dev/null +++ b/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json @@ -0,0 +1,39 @@ +{ + "body": { + "took": 2, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 4, + "nonrecap_statuses": { + "doc_count": 1, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json b/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json new file mode 100644 index 00000000..134c6f7d --- /dev/null +++ b/test/fixtures/query-b94d3331c624a804b4b60c5805f0497a.json @@ -0,0 +1,14899 @@ +{ + "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-b9b3c757844ce91a563804198c6d432a.json b/test/fixtures/query-b9b3c757844ce91a563804198c6d432a.json deleted file mode 100644 index 77046c09..00000000 --- a/test/fixtures/query-b9b3c757844ce91a563804198c6d432a.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "body": { - "took": 844, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b12423567", - "_score": 869.0165, - "_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": [ - 869.0165, - "b12423567" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage: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 - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json b/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json new file mode 100644 index 00000000..d56cbbf3 --- /dev/null +++ b/test/fixtures/query-b9ef0515ab0b79b4aaba3cba38ab849f.json @@ -0,0 +1,15390 @@ +{ + "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-bbd734b5fcbe1bc6e44e39213ef3292f.json b/test/fixtures/query-bbd734b5fcbe1bc6e44e39213ef3292f.json deleted file mode 100644 index 3a735868..00000000 --- a/test/fixtures/query-bbd734b5fcbe1bc6e44e39213ef3292f.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 260, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 18.586823, - "_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.586823, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-bc4f4f8e4e3a1348da83546b2b0806ec.json b/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json index 4e2c2b6b..cd1253e1 100644 --- a/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json +++ b/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json @@ -1,6 +1,6 @@ { "body": { - "took": 7, + "took": 37, "timed_out": false, "_shards": { "total": 2, @@ -248,22 +248,22 @@ "hits": [] } }, - "items": { + "allItems": { "hits": { "total": { - "value": 1, + "value": 2, "relation": "eq" }, - "max_score": null, + "max_score": 0, "hits": [ { "_index": "resources-2024-06-07", "_id": "b13966759", "_nested": { "field": "items", - "offset": 1 + "offset": 0 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { @@ -288,20 +288,28 @@ ], "holdingLocation": [ { - "id": "loc:maf82", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" + "id": "loc:maff3", + "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" } ], "holdingLocation_packed": [ - "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" + ], + "idBarcode": [ + "33433084745110" ], "identifier": [ - "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "urn:barcode:33433084745110" ], "identifierV2": [ { - "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)", "type": "bf:ShelfMark" + }, + { + "value": "33433084745110", + "type": "bf:Barcode" } ], "owner": [ @@ -314,50 +322,36 @@ "orgs:1103||Dorot Jewish Division" ], "physicalLocation": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" ], "requestable": [ - true + false ], "shelfMark": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" ], - "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "shelfMark_sort": "aDesk-JWS (Yizkor books. Reprint. Khorostkov)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:o", + "label": "Use in library" } ], "status_packed": [ - "status:a||Available" + "status:o||Use in library" ], "type": [ "bf:Item" ], - "uri": "i16894049" - }, - "sort": [ - null - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": 0, - "hits": [ + "uri": "i25791623" + } + }, { "_index": "resources-2024-06-07", "_id": "b13966759", "_nested": { "field": "items", - "offset": 0 + "offset": 1 }, "_score": 0, "_source": { @@ -384,28 +378,20 @@ ], "holdingLocation": [ { - "id": "loc:maff3", - "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" } ], "holdingLocation_packed": [ - "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" - ], - "idBarcode": [ - "33433084745110" + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" ], "identifier": [ - "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", - "urn:barcode:33433084745110" + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" ], "identifierV2": [ { - "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", "type": "bf:ShelfMark" - }, - { - "value": "33433084745110", - "type": "bf:Barcode" } ], "owner": [ @@ -418,30 +404,41 @@ "orgs:1103||Dorot Jewish Division" ], "physicalLocation": [ - "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" ], "requestable": [ - false + true ], "shelfMark": [ - "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" ], - "shelfMark_sort": "aDesk-JWS (Yizkor books. Reprint. Khorostkov)", + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", "status": [ { - "id": "status:o", - "label": "Use in library" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:o||Use in library" + "status:a||Available" ], "type": [ "bf:Item" ], - "uri": "i25791623" + "uri": "i16894049" } - }, + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ { "_index": "resources-2024-06-07", "_id": "b13966759", @@ -449,7 +446,7 @@ "field": "items", "offset": 1 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -522,7 +519,10 @@ "bf:Item" ], "uri": "i16894049" - } + }, + "sort": [ + null + ] } ] } diff --git a/test/fixtures/query-bb2102f46ddced857fc9c680a08dcd33.json b/test/fixtures/query-bd510336b2eda3456f80765424931e26.json similarity index 94% rename from test/fixtures/query-bb2102f46ddced857fc9c680a08dcd33.json rename to test/fixtures/query-bd510336b2eda3456f80765424931e26.json index 2a271b9c..63b19433 100644 --- a/test/fixtures/query-bb2102f46ddced857fc9c680a08dcd33.json +++ b/test/fixtures/query-bd510336b2eda3456f80765424931e26.json @@ -1,6 +1,6 @@ { "body": { - "took": 112, + "took": 225, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json b/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json index 86fe3920..697ebe12 100644 --- a/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json +++ b/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json @@ -1,6 +1,6 @@ { "body": { - "took": 7, + "took": 19, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-c097a528cf702e8f3ec1916f2a9d36da.json b/test/fixtures/query-c097a528cf702e8f3ec1916f2a9d36da.json deleted file mode 100644 index 4ee8a17f..00000000 --- a/test/fixtures/query-c097a528cf702e8f3ec1916f2a9d36da.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "body": { - "took": 891, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b13565153", - "_score": 841.1684, - "_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": [ - 841.1684, - "b13565153" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc: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 - ] - } - ] - } - } - } - } - ] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json b/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json new file mode 100644 index 00000000..110db869 --- /dev/null +++ b/test/fixtures/query-d1938ccb827aedacc44af8c94f78c728.json @@ -0,0 +1,971 @@ +{ + "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 new file mode 100644 index 00000000..9f0796b4 --- /dev/null +++ b/test/fixtures/query-d1d9a1906aa571ad66409b88bf04dbfa.json @@ -0,0 +1,971 @@ +{ + "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-d30b11438fadbf33762e80d55a2991da.json b/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json new file mode 100644 index 00000000..1dddd3cf --- /dev/null +++ b/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json @@ -0,0 +1,39 @@ +{ + "body": { + "took": 2, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 128, + "nonrecap_statuses": { + "doc_count": 1, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:co||Loaned", + "doc_count": 1 + } + ] + } + } + } + } + }, + "statusCode": 200 +} \ No newline at end of file diff --git a/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json b/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json index 4e0759cf..e3eb440a 100644 --- a/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json +++ b/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json @@ -1,6 +1,6 @@ { "body": { - "took": 36, + "took": 81, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-da9945efa5765dbfedd52412b5488a74.json b/test/fixtures/query-da9945efa5765dbfedd52412b5488a74.json index 3921027e..6ab10827 100644 --- a/test/fixtures/query-da9945efa5765dbfedd52412b5488a74.json +++ b/test/fixtures/query-da9945efa5765dbfedd52412b5488a74.json @@ -1,6 +1,6 @@ { "body": { - "took": 2635, + "took": 3240, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json b/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json index 26329012..9be2f341 100644 --- a/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json +++ b/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json @@ -1,6 +1,6 @@ { "body": { - "took": 11, + "took": 14, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json b/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json new file mode 100644 index 00000000..96332751 --- /dev/null +++ b/test/fixtures/query-e80f9b3d61c5b04c1f53179f2f6b071d.json @@ -0,0 +1,14005 @@ +{ + "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 new file mode 100644 index 00000000..39085328 --- /dev/null +++ b/test/fixtures/query-e83d3f30d3783e3e0616556e21343dd3.json @@ -0,0 +1,971 @@ +{ + "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-ec2a0c7d1307a088fc5ab05076da0bcd.json b/test/fixtures/query-ec2a0c7d1307a088fc5ab05076da0bcd.json deleted file mode 100644 index 37f862fa..00000000 --- a/test/fixtures/query-ec2a0c7d1307a088fc5ab05076da0bcd.json +++ /dev/null @@ -1,958 +0,0 @@ -{ - "body": { - "took": 473, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 17.586823, - "_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": [ - 17.586823, - "b22144813" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType: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-" - ] - }, - { - "_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-ef3be74b9fe0ef7a5c0c8f4f8741729b.json b/test/fixtures/query-ef3be74b9fe0ef7a5c0c8f4f8741729b.json index 4426e672..d9942c3f 100644 --- a/test/fixtures/query-ef3be74b9fe0ef7a5c0c8f4f8741729b.json +++ b/test/fixtures/query-ef3be74b9fe0ef7a5c0c8f4f8741729b.json @@ -1,6 +1,6 @@ { "body": { - "took": 297, + "took": 467, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-df73d00a2eb89bb804c7f517d74e7e53.json b/test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json similarity index 94% rename from test/fixtures/query-df73d00a2eb89bb804c7f517d74e7e53.json rename to test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json index a1638ee3..8adae35a 100644 --- a/test/fixtures/query-df73d00a2eb89bb804c7f517d74e7e53.json +++ b/test/fixtures/query-fbc4245ce4d13946fb0af0094ce6da5b.json @@ -1,6 +1,6 @@ { "body": { - "took": 20, + "took": 104, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json b/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json index 0637a088..a5ffa18c 100644 --- a/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json +++ b/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json @@ -1 +1,794 @@ -[] \ No newline at end of file +[ + { + "itemBarcode": "33433085022212", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085021792", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022204", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022196", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022188", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022170", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022162", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022154", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022147", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022139", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022121", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022113", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022105", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022097", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022089", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022071", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022063", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022055", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022048", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022030", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022022", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022014", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022501", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022493", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022485", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022477", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022469", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022451", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022444", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022436", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022428", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022410", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022402", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022394", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022386", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022378", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022360", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022352", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022345", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022337", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022329", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022311", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022303", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022295", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022287", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022279", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022261", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022758", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022741", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433085022733", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509257", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509240", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509232", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509224", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509216", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509208", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509190", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509182", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509174", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509166", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509158", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509141", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509133", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509125", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509117", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433079509109", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Private" + }, + { + "itemBarcode": "33433108528377", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433108528385", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433108528393", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433108528401", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762741", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762733", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762725", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762717", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762709", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433110762691", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433114101987", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433114102043", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433114102084", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433114102134", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119892333", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119892341", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119892317", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119855579", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433121911253", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433121911105", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433121911097", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433121911246", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119855561", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433119872103", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433128200965", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433128201302", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433128201161", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433128201310", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433128200973", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239833", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239841", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239866", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657966", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433079122770", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433079122762", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239874", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657990", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657982", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657875", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657883", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657867", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657891", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239692", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239908", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433079122754", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239817", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239809", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239825", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239858", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239718", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239700", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239775", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239767", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239791", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657974", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239783", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239734", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239726", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239759", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433084239742", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657909", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657917", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657958", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657941", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657933", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + }, + { + "itemBarcode": "33433078657925", + "itemAvailabilityStatus": "Available", + "errorMessage": null, + "collectionGroupDesignation": "Open" + } +] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json b/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json new file mode 100644 index 00000000..03776794 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-09821b7fea396dfd579d17fb2c358c42.json @@ -0,0 +1,287 @@ +[ + { + "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 new file mode 100644 index 00000000..9da52fc6 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-0a7edb8146ecacf9a00e14bbabafcef3.json @@ -0,0 +1,487 @@ +[ + { + "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-2855ee0e06ecb944eb27f0fb29abc49f.json b/test/fixtures/scsb-by-barcode-2855ee0e06ecb944eb27f0fb29abc49f.json deleted file mode 100644 index 69a14314..00000000 --- a/test/fixtures/scsb-by-barcode-2855ee0e06ecb944eb27f0fb29abc49f.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433006564110", - "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 new file mode 100644 index 00000000..97ce3b44 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-427c2ff19014ab013abd7224286a51f2.json @@ -0,0 +1,247 @@ +[ + { + "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-49ee27f2d9834e5cb92d4018a9468a64.json b/test/fixtures/scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json deleted file mode 100644 index dbd009b6..00000000 --- a/test/fixtures/scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "itemBarcode": "32101087644330", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "32101087644330", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-55f00e8cc159bdb82a9d767ee859bb27.json b/test/fixtures/scsb-by-barcode-55f00e8cc159bdb82a9d767ee859bb27.json deleted file mode 100644 index 843acad7..00000000 --- a/test/fixtures/scsb-by-barcode-55f00e8cc159bdb82a9d767ee859bb27.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "itemBarcode": "33433076530082", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076543143", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433116522354", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433115147914", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433105255586", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433074083142", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099607917", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099608063", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099608188", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-6b743acb1a46c74ff40f554604544e4d.json b/test/fixtures/scsb-by-barcode-6b743acb1a46c74ff40f554604544e4d.json new file mode 100644 index 00000000..063abee9 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-6b743acb1a46c74ff40f554604544e4d.json @@ -0,0 +1,87 @@ +[ + { + "itemBarcode": "32101087644330", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "32101087644330", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "AR03127400", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "AR02990466", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "AR02635038", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "CU28973550", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "CU28973313", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433047990399", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433066217906", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433105145878", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433031265576", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433119721987", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433086812371", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433047990381", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433066851043", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433071051589", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433066252044", + "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-6cd1e72f7137411d3c9935244720c3e2.json b/test/fixtures/scsb-by-barcode-6cd1e72f7137411d3c9935244720c3e2.json deleted file mode 100644 index ba2780ff..00000000 --- a/test/fixtures/scsb-by-barcode-6cd1e72f7137411d3c9935244720c3e2.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433006598316", - "itemAvailabilityStatus": "Not Available", - "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 new file mode 100644 index 00000000..f81bd7c2 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-80db0a1c485064e1900a4a94c98639bd.json @@ -0,0 +1,322 @@ +[ + { + "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-b7457851c10a37b8bef0f150e8ecc174.json b/test/fixtures/scsb-by-barcode-b7457851c10a37b8bef0f150e8ecc174.json new file mode 100644 index 00000000..6d1353f5 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-b7457851c10a37b8bef0f150e8ecc174.json @@ -0,0 +1,302 @@ +[ + { + "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/fixtures/scsb-by-barcode-d1f9efa0b6aaebdae438d70bf773ca7d.json b/test/fixtures/scsb-by-barcode-d1f9efa0b6aaebdae438d70bf773ca7d.json deleted file mode 100644 index 055a2a9b..00000000 --- a/test/fixtures/scsb-by-barcode-d1f9efa0b6aaebdae438d70bf773ca7d.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433099509238", - "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-f346dcac33ce6efa106fab3cc84a87b3.json b/test/fixtures/scsb-by-barcode-f346dcac33ce6efa106fab3cc84a87b3.json deleted file mode 100644 index 26132ad2..00000000 --- a/test/fixtures/scsb-by-barcode-f346dcac33ce6efa106fab3cc84a87b3.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433104031624", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file